Searched refs:quad_t (Results 1 – 25 of 92) sorted by relevance
1234
| /freebsd-9-stable/sys/libkern/ |
| D | quad.h | 66 quad_t q; /* as a (signed) quad */ 67 quad_t uq; /* as an unsigned quad */ 83 #define QUAD_BITS (sizeof(quad_t) * CHAR_BIT) 102 quad_t __ashldi3(quad_t, qshift_t); 103 quad_t __ashrdi3(quad_t, qshift_t); 104 int __cmpdi2(quad_t a, quad_t b); 105 quad_t __divdi3(quad_t a, quad_t b); 106 quad_t __lshrdi3(quad_t, qshift_t); 107 quad_t __moddi3(quad_t a, quad_t b);
|
| D | moddi3.c | 45 quad_t 47 quad_t a, b; in __moddi3()
|
| D | divdi3.c | 43 quad_t 45 quad_t a, b; in __divdi3()
|
| D | lshrdi3.c | 42 quad_t 44 quad_t a; in __lshrdi3()
|
| D | ashldi3.c | 43 quad_t 45 quad_t a; in __ashldi3()
|
| /freebsd-9-stable/lib/libc/quad/ |
| D | quad.h | 61 quad_t q; /* as a (signed) quad */ 62 quad_t uq; /* as an unsigned quad */ 78 #define QUAD_BITS (sizeof(quad_t) * CHAR_BIT) 95 int __cmpdi2(quad_t a, quad_t b); 96 quad_t __divdi3(quad_t a, quad_t b); 97 quad_t __moddi3(quad_t a, quad_t b);
|
| D | fixdfdi.c | 46 quad_t 54 return ((quad_t)-(u_quad_t)-x); 59 return ((quad_t)(u_quad_t)x);
|
| D | muldi3.c | 99 static quad_t __lmulq(u_long, u_long); 101 quad_t 103 quad_t a, b; in __muldi3() 186 static quad_t
|
| D | fixsfdi.c | 55 return ((quad_t)-(u_quad_t)-x); in __fixsfdi() 60 return ((quad_t)(u_quad_t)x); in __fixsfdi()
|
| D | notdi2.c | 46 quad_t 48 quad_t a; in __one_cmpldi2()
|
| D | iordi3.c | 45 quad_t 47 quad_t a, b; in __iordi3()
|
| D | xordi3.c | 45 quad_t 47 quad_t a, b; in __xordi3()
|
| D | anddi3.c | 45 quad_t 47 quad_t a, b; in __anddi3()
|
| D | negdi2.c | 45 quad_t 47 quad_t a; in __negdi2()
|
| D | moddi3.c | 48 quad_t 50 quad_t a, b; in __moddi3()
|
| D | divdi3.c | 46 quad_t 48 quad_t a, b; in __divdi3()
|
| D | adddi3.c | 47 quad_t 49 quad_t a, b; in __adddi3()
|
| D | subdi3.c | 46 quad_t 48 quad_t a, b; in __subdi3()
|
| /freebsd-9-stable/lib/libstand/ |
| D | quad.h | 62 quad_t q; /* as a (signed) quad */ 63 quad_t uq; /* as an unsigned quad */ 79 #define QUAD_BITS (sizeof(quad_t) * CHAR_BIT) 96 quad_t __divdi3(quad_t a, quad_t b); 97 quad_t __moddi3(quad_t a, quad_t b);
|
| D | stand.h | 328 static __inline quad_t qmax(quad_t a, quad_t b) { return (a > b ? a : b); } in qmax() 329 static __inline quad_t qmin(quad_t a, quad_t b) { return (a < b ? a : b); } in qmin()
|
| /freebsd-9-stable/sys/powerpc/fpu/ |
| D | fpu_arith.h | 62 #define FPU_DECL_CARRY quad_t fpu_carry, fpu_tmp; 84 fpu_tmp = (quad_t)(x) + (quad_t)(y); \ 90 fpu_tmp = (quad_t)(x) + (quad_t)(y) + (!!fpu_carry); \ 98 fpu_tmp = (quad_t)(x) - (quad_t)(y); \ 104 fpu_tmp = (quad_t)(x) - (quad_t)(y) - (!!fpu_carry); \
|
| /freebsd-9-stable/sys/geom/part/ |
| D | g_part.h | 98 quad_t gpe_start; /* First LBA of partition. */ 99 quad_t gpe_end; /* Last LBA of partition. */ 113 quad_t gpt_first; /* First allocatable LBA */ 114 quad_t gpt_last; /* Last allocatable LBA */ 147 struct g_part_entry *g_part_new_entry(struct g_part_table *, int, quad_t, 148 quad_t); 193 quad_t gpp_size; 194 quad_t gpp_start;
|
| /freebsd-9-stable/sys/libkern/arm/ |
| D | muldi3.c | 104 static quad_t __lmulq(u_int, u_int); 106 quad_t __muldi3(quad_t, quad_t); 107 quad_t 108 __muldi3(quad_t a, quad_t b) in __muldi3() 191 static quad_t
|
| /freebsd-9-stable/sys/sys/ |
| D | libkern.h | 62 static __inline quad_t qmax(quad_t a, quad_t b) { return (a > b ? a : b); } in qmax() 63 static __inline quad_t qmin(quad_t a, quad_t b) { return (a < b ? a : b); } in qmin() 71 static __inline quad_t qabs(quad_t a) { return (a < 0 ? -a : a); } in qabs()
|
| /freebsd-9-stable/sys/i386/include/ |
| D | perfmon.h | 88 quad_t pmcd_value; 93 quad_t pmct_value; 112 int perfmon_read(int, quad_t *);
|
1234