Home | History | Annotate | Download | only in quad

Lines Matching refs:quad_t

43  *  - The type long long (aka quad_t) exists.
68 * Depending on the desired operation, we view a `long long' (aka quad_t) in
72 quad_t q; /* as a (signed) quad */
79 * Define high and low parts of a quad_t.
85 * Total number of bits in a quad_t and in the pieces that make it up.
89 #define QUAD_BITS (sizeof(quad_t) * CHAR_BIT)
96 * ((quad_t)(x) << (number_of_bits_in_int/2)). (`x' must actually be u_int.)
99 * and lower halves, and to reassemble a product as a quad_t, shifted left
119 quad_t __adddi3(quad_t, quad_t);
120 quad_t __anddi3(quad_t, quad_t);
121 quad_t __ashldi3(quad_t, qshift_t);
122 quad_t __ashrdi3(quad_t, qshift_t);
123 int __cmpdi2(quad_t, quad_t);
124 quad_t __divdi3(quad_t, quad_t);
125 quad_t __fixtfdi(long double);
126 quad_t __fixdfdi(double);
127 quad_t __fixsfdi(float);
131 long double __floatditf(quad_t);
132 double __floatdidf(quad_t);
133 float __floatdisf(quad_t);
137 quad_t __iordi3(quad_t, quad_t);
138 quad_t __lshldi3(quad_t, qshift_t);
139 quad_t __lshrdi3(quad_t, qshift_t);
140 quad_t __moddi3(quad_t, quad_t);
141 quad_t __muldi3(quad_t, quad_t);
142 quad_t __negdi2(quad_t);
143 quad_t __one_cmpldi2(quad_t);
145 quad_t __subdi3(quad_t, quad_t);
149 quad_t __xordi3(quad_t, quad_t);