/freebsd/sys/libkern/ |
H A D | quad.h | 64 quad_t q; /* as a (signed) quad */ 65 quad_t uq; /* as an unsigned quad */ 81 #define QUAD_BITS (sizeof(quad_t) * CHAR_BIT) 100 quad_t __ashldi3(quad_t, qshift_t); 101 quad_t __ashrdi3(quad_t, qshift_t); 102 int __cmpdi2(quad_t a, quad_t b); 103 quad_t __divdi3(quad_t a, quad_t b); 104 quad_t __divmoddi4(quad_t a, quad_t b, quad_t *rem); 105 quad_t __lshrdi3(quad_t, qshift_t); 106 quad_t __moddi3(quad_t a, quad_t b);
|
H A D | divmoddi4.c | 41 quad_t 42 __divmoddi4(quad_t a, quad_t b, quad_t *rem) in __divmoddi4()
|
H A D | moddi3.c | 42 quad_t 43 __moddi3(quad_t a, quad_t b) in __moddi3()
|
H A D | divdi3.c | 42 quad_t 43 __divdi3(quad_t a, quad_t b) in __divdi3()
|
H A D | cmpdi2.c | 45 __cmpdi2(quad_t a, quad_t b) in __cmpdi2()
|
/freebsd/lib/libc/quad/ |
H A D | quad.h | 60 quad_t q; /* as a (signed) quad */ 61 quad_t uq; /* as an unsigned quad */ 77 #define QUAD_BITS (sizeof(quad_t) * CHAR_BIT) 94 int __cmpdi2(quad_t a, quad_t b); 95 quad_t __divdi3(quad_t a, quad_t b); 96 quad_t __moddi3(quad_t a, quad_t b);
|
H A D | fixdfdi.c | 42 quad_t 49 return ((quad_t)-(u_quad_t)-x); in __fixdfdi() 54 return ((quad_t)(u_quad_t)x); in __fixdfdi()
|
H A D | anddi3.c | 41 quad_t 42 __anddi3(quad_t a, quad_t b) in __anddi3()
|
H A D | xordi3.c | 41 quad_t 42 __xordi3(quad_t a, quad_t b) in __xordi3()
|
H A D | iordi3.c | 41 quad_t 42 __iordi3(quad_t a, quad_t b) in __iordi3()
|
H A D | moddi3.c | 44 quad_t 45 __moddi3(quad_t a, quad_t b) in __moddi3()
|
H A D | muldi3.c | 95 static quad_t __lmulq(u_long, u_long); 97 quad_t 98 __muldi3(quad_t a, quad_t b) in __muldi3() 181 static quad_t
|
H A D | divdi3.c | 42 quad_t 43 __divdi3(quad_t a, quad_t b) in __divdi3()
|
H A D | adddi3.c | 43 quad_t 44 __adddi3(quad_t a, quad_t b) in __adddi3()
|
H A D | subdi3.c | 42 quad_t 43 __subdi3(quad_t a, quad_t b) in __subdi3()
|
H A D | fixsfdi.c | 51 return ((quad_t)-(u_quad_t)-x); in __fixsfdi() 56 return ((quad_t)(u_quad_t)x); in __fixsfdi()
|
H A D | notdi2.c | 42 quad_t 43 __one_cmpldi2(quad_t a) in __one_cmpldi2()
|
H A D | negdi2.c | 41 quad_t 42 __negdi2(quad_t a) in __negdi2()
|
H A D | cmpdi2.c | 44 __cmpdi2(quad_t a, quad_t b) in __cmpdi2()
|
H A D | ashldi3.c | 42 quad_t 43 __ashldi3(quad_t a, qshift_t shift) in __ashldi3()
|
/freebsd/sys/powerpc/fpu/ |
H A D | fpu_arith.h | 60 #define FPU_DECL_CARRY quad_t fpu_carry, fpu_tmp; 82 fpu_tmp = (quad_t)(x) + (quad_t)(y); \ 88 fpu_tmp = (quad_t)(x) + (quad_t)(y) + (!!fpu_carry); \ 96 fpu_tmp = (quad_t)(x) - (quad_t)(y); \ 102 fpu_tmp = (quad_t)(x) - (quad_t)(y) - (!!fpu_carry); \
|
/freebsd/sys/libkern/arm/ |
H A D | muldi3.c | 97 static quad_t __lmulq(u_int, u_int); 99 quad_t __muldi3(quad_t, quad_t); 100 quad_t 101 __muldi3(quad_t a, quad_t b) in __muldi3() 184 static quad_t
|
/freebsd/sys/geom/part/ |
H A D | g_part.h | 132 quad_t gpe_start; /* First LBA of partition. */ 133 quad_t gpe_end; /* Last LBA of partition. */ 147 quad_t gpt_first; /* First allocatable LBA */ 148 quad_t gpt_last; /* Last allocatable LBA */ 181 struct g_part_entry *g_part_new_entry(struct g_part_table *, int, quad_t, 182 quad_t); 228 quad_t gpp_size; 229 quad_t gpp_start;
|
/freebsd/sys/sys/ |
H A D | libkern.h | 94 static __inline quad_t qmax(quad_t a, quad_t b) { return (a > b ? a : b); } in qmax() 95 static __inline quad_t qmin(quad_t a, quad_t b) { return (a < b ? a : b); } in qmin() 115 static __inline quad_t qabs(quad_t a) { return (a < 0 ? -a : a); } in qabs()
|
/freebsd/sys/i386/include/ |
H A D | perfmon.h | 86 quad_t pmcd_value; 91 quad_t pmct_value; 110 int perfmon_read(int, quad_t *);
|