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

1234

/freebsd-10.0-release/lib/libc/quad/
H A Dquad.h42 * - The type long long (aka quad_t) exists.
57 * Depending on the desired operation, we view a `long long' (aka quad_t) in
61 quad_t q; /* as a (signed) quad */
62 quad_t uq; /* as an unsigned quad */
74 * Total number of bits in a quad_t and in the pieces that make it up.
78 #define QUAD_BITS (sizeof(quad_t) * CHAR_BIT)
85 * ((quad_t)(x) << (number_of_bits_in_long/2)). (`x' must actually be u_long.)
88 * and lower halves, and to reassemble a product as a quad_t, shifted left
95 int __cmpdi2(quad_t a, quad_t
[all...]
H A Dfixdfdi.c46 quad_t
54 return ((quad_t)-(u_quad_t)-x);
59 return ((quad_t)(u_quad_t)x);
H A Dfixsfdi.c55 return ((quad_t)-(u_quad_t)-x);
60 return ((quad_t)(u_quad_t)x);
H A Dnotdi2.c46 quad_t
48 quad_t a;
H A Danddi3.c45 quad_t
47 quad_t a, b;
H A Diordi3.c45 quad_t
47 quad_t a, b;
H A Dmoddi3.c48 quad_t
50 quad_t a, b;
H A Dnegdi2.c45 quad_t
47 quad_t a;
H A Dxordi3.c45 quad_t
47 quad_t a, b;
H A Dadddi3.c47 quad_t
49 quad_t a, b;
H A Dashldi3.c46 quad_t
48 quad_t a;
H A Ddivdi3.c46 quad_t
48 quad_t a, b;
H A Dlshldi3.c46 quad_t
48 quad_t a;
H A Dlshrdi3.c45 quad_t
47 quad_t a;
H A Dsubdi3.c46 quad_t
48 quad_t a, b;
H A Dashrdi3.c45 quad_t
47 quad_t a;
/freebsd-10.0-release/sys/libkern/
H A Dquad.h45 * - The type long long (aka quad_t) exists.
62 * Depending on the desired operation, we view a `long long' (aka quad_t) in
66 quad_t q; /* as a (signed) quad */
67 quad_t uq; /* as an unsigned quad */
79 * Total number of bits in a quad_t and in the pieces that make it up.
83 #define QUAD_BITS (sizeof(quad_t) * CHAR_BIT)
90 * ((quad_t)(x) << (number_of_bits_in_long/2)). (`x' must actually be u_long.)
93 * and lower halves, and to reassemble a product as a quad_t, shifted left
102 quad_t __ashldi3(quad_t, qshift_
[all...]
H A Dmoddi3.c45 quad_t
47 quad_t a, b;
H A Ddivdi3.c43 quad_t
45 quad_t a, b;
H A Dlshrdi3.c42 quad_t
44 quad_t a;
/freebsd-10.0-release/lib/libstand/
H A Dquad.h42 * - The type long long (aka quad_t) exists.
58 * Depending on the desired operation, we view a `long long' (aka quad_t) in
62 quad_t q; /* as a (signed) quad */
63 quad_t uq; /* as an unsigned quad */
75 * Total number of bits in a quad_t and in the pieces that make it up.
79 #define QUAD_BITS (sizeof(quad_t) * CHAR_BIT)
86 * ((quad_t)(x) << (number_of_bits_in_long/2)). (`x' must actually be u_long.)
89 * and lower halves, and to reassemble a product as a quad_t, shifted left
96 quad_t __divdi3(quad_t
[all...]
/freebsd-10.0-release/sys/powerpc/fpu/
H A 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-10.0-release/sys/geom/part/
H A Dg_part.h97 quad_t gpe_start; /* First LBA of partition. */
98 quad_t gpe_end; /* Last LBA of partition. */
112 quad_t gpt_first; /* First allocatable LBA */
113 quad_t gpt_last; /* Last allocatable LBA */
146 struct g_part_entry *g_part_new_entry(struct g_part_table *, int, quad_t,
147 quad_t);
192 quad_t gpp_size;
193 quad_t gpp_start;
/freebsd-10.0-release/contrib/sendmail/include/sm/
H A Dtypes.h57 typedef quad_t LONGLONG_T;
/freebsd-10.0-release/lib/libc/stdlib/
H A Dstrtoq.c43 quad_t

Completed in 188 milliseconds

1234