Home
last modified time | relevance | path

Searched refs:quad_t (Results 1 – 25 of 81) sorted by relevance

1234

/freebsd/sys/libkern/
H A Dquad.h64 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 Ddivmoddi4.c41 quad_t
42 __divmoddi4(quad_t a, quad_t b, quad_t *rem) in __divmoddi4()
H A Dmoddi3.c42 quad_t
43 __moddi3(quad_t a, quad_t b) in __moddi3()
H A Ddivdi3.c42 quad_t
43 __divdi3(quad_t a, quad_t b) in __divdi3()
H A Dcmpdi2.c45 __cmpdi2(quad_t a, quad_t b) in __cmpdi2()
H A Dlshrdi3.c42 quad_t
43 __lshrdi3(quad_t a, qshift_t shift) in __lshrdi3()
/freebsd/lib/libc/quad/
H A Dquad.h60 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 Dfixdfdi.c42 quad_t
49 return ((quad_t)-(u_quad_t)-x); in __fixdfdi()
54 return ((quad_t)(u_quad_t)x); in __fixdfdi()
H A Diordi3.c41 quad_t
42 __iordi3(quad_t a, quad_t b) in __iordi3()
H A Danddi3.c41 quad_t
42 __anddi3(quad_t a, quad_t b) in __anddi3()
H A Dxordi3.c41 quad_t
42 __xordi3(quad_t a, quad_t b) in __xordi3()
H A Dmoddi3.c44 quad_t
45 __moddi3(quad_t a, quad_t b) in __moddi3()
H A Ddivdi3.c42 quad_t
43 __divdi3(quad_t a, quad_t b) in __divdi3()
H A Dadddi3.c43 quad_t
44 __adddi3(quad_t a, quad_t b) in __adddi3()
H A Dsubdi3.c42 quad_t
43 __subdi3(quad_t a, quad_t b) in __subdi3()
H A Dmuldi3.c95 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 Dfixsfdi.c51 return ((quad_t)-(u_quad_t)-x); in __fixsfdi()
56 return ((quad_t)(u_quad_t)x); in __fixsfdi()
H A Dnotdi2.c42 quad_t
43 __one_cmpldi2(quad_t a) in __one_cmpldi2()
H A Dnegdi2.c41 quad_t
42 __negdi2(quad_t a) in __negdi2()
H A Dcmpdi2.c44 __cmpdi2(quad_t a, quad_t b) in __cmpdi2()
H A Dlshrdi3.c41 quad_t
42 __lshrdi3(quad_t a, qshift_t shift) in __lshrdi3()
/freebsd/sys/powerpc/fpu/
H A Dfpu_arith.h60 #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/geom/part/
H A Dg_part.h130 quad_t gpe_start; /* First LBA of partition. */
131 quad_t gpe_end; /* Last LBA of partition. */
145 quad_t gpt_first; /* First allocatable LBA */
146 quad_t gpt_last; /* Last allocatable LBA */
179 struct g_part_entry *g_part_new_entry(struct g_part_table *, int, quad_t,
180 quad_t);
226 quad_t gpp_size;
227 quad_t gpp_start;
/freebsd/sys/libkern/arm/
H A Dmuldi3.c97 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/sys/
H A Dlibkern.h94 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()

1234