Home
last modified time | relevance | path

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

1234

/freebsd-9-stable/sys/libkern/
Dquad.h66 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);
Dmoddi3.c45 quad_t
47 quad_t a, b; in __moddi3()
Ddivdi3.c43 quad_t
45 quad_t a, b; in __divdi3()
Dlshrdi3.c42 quad_t
44 quad_t a; in __lshrdi3()
Dashldi3.c43 quad_t
45 quad_t a; in __ashldi3()
/freebsd-9-stable/lib/libc/quad/
Dquad.h61 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);
Dfixdfdi.c46 quad_t
54 return ((quad_t)-(u_quad_t)-x);
59 return ((quad_t)(u_quad_t)x);
Dmuldi3.c99 static quad_t __lmulq(u_long, u_long);
101 quad_t
103 quad_t a, b; in __muldi3()
186 static quad_t
Dfixsfdi.c55 return ((quad_t)-(u_quad_t)-x); in __fixsfdi()
60 return ((quad_t)(u_quad_t)x); in __fixsfdi()
Dnotdi2.c46 quad_t
48 quad_t a; in __one_cmpldi2()
Diordi3.c45 quad_t
47 quad_t a, b; in __iordi3()
Dxordi3.c45 quad_t
47 quad_t a, b; in __xordi3()
Danddi3.c45 quad_t
47 quad_t a, b; in __anddi3()
Dnegdi2.c45 quad_t
47 quad_t a; in __negdi2()
Dmoddi3.c48 quad_t
50 quad_t a, b; in __moddi3()
Ddivdi3.c46 quad_t
48 quad_t a, b; in __divdi3()
Dadddi3.c47 quad_t
49 quad_t a, b; in __adddi3()
Dsubdi3.c46 quad_t
48 quad_t a, b; in __subdi3()
/freebsd-9-stable/lib/libstand/
Dquad.h62 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);
Dstand.h328 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/
Dfpu_arith.h62 #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/
Dg_part.h98 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/
Dmuldi3.c104 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/
Dlibkern.h62 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/
Dperfmon.h88 quad_t pmcd_value;
93 quad_t pmct_value;
112 int perfmon_read(int, quad_t *);

1234