HomeSort by relevance Sort by last modified time
    Searched full:du_int (Results 26 - 50 of 63) sorted by null

12 3

  /external/compiler-rt/lib/builtins/
floatundidf.c 18 * du_int is a 64 bit integral type
33 __floatundidf(du_int a)
55 __floatundidf(du_int a)
59 const unsigned N = sizeof(du_int) * CHAR_BIT;
81 ((a & ((du_int)(-1) >> ((N + DBL_MANT_DIG+2) - sd))) != 0);
88 if (a & ((du_int)1 << DBL_MANT_DIG))
floatdisf.c 55 a = ((du_int)a >> (sd - (FLT_MANT_DIG+2))) |
56 ((a & ((du_int)(-1) >> ((N + FLT_MANT_DIG+2) - sd))) != 0);
63 if (a & ((du_int)1 << FLT_MANT_DIG))
fixxfdi.c 33 const di_int di_max = (di_int)((~(du_int)0) / 2);
44 r = (du_int)r >> (63 - e);
floatunditf.c 10 // This file implements du_int to quad-precision conversion for the
20 COMPILER_RT_ABI fp_t __floatunditf(du_int a) {
popcountdi2.c 22 du_int x2 = (du_int)a;
popcountti2.c 34 du_int x2 = (du_int)(x3 + (x3 >> 64));
ucmpdi2.c 23 __ucmpdi2(du_int a, du_int b)
fixtfdi.c 16 typedef du_int fixuint_t;
int_lib.h 87 COMPILER_RT_ABI du_int __udivmoddi4(du_int a, du_int b, du_int* rem);
floatdidf.c 80 a = ((du_int)a >> (sd - (DBL_MANT_DIG+2))) |
81 ((a & ((du_int)(-1) >> ((N + DBL_MANT_DIG+2) - sd))) != 0);
88 if (a & ((du_int)1 << DBL_MANT_DIG))
udivmoddi4.c 23 COMPILER_RT_ABI du_int
24 __udivmoddi4(du_int a, du_int b, du_int* rem)
27 const unsigned n_udword_bits = sizeof(du_int) * CHAR_BIT;
divdi3.c 28 return (__udivmoddi4(a, b, (du_int*)0) ^ s_a) - s_a; /* negate if s_a == -1 */
moddi3.c 27 du_int r;
floattixf.c 80 fb.u.low.all = (du_int)a; /* mantissa */
floatuntixf.c 77 fb.u.low.all = (du_int)a; /* mantissa */
  /external/compiler-rt/test/builtins/Unit/
floatundixf_test.c 22 // du_int is a 64 bit integral type
27 COMPILER_RT_ABI long double __floatundixf(du_int a);
29 int test__floatundixf(du_int a, long double expected)
38 char assumption_1[sizeof(du_int) == 2*sizeof(si_int)] = {0};
39 char assumption_2[sizeof(du_int)*CHAR_BIT == 64] = {0};
popcountdi2_test.c 25 for (; a; a = (du_int)a >> 1)
floatundidf_test.c 21 // du_int is a 64 bit integral type
25 COMPILER_RT_ABI double __floatundidf(du_int a);
  /external/compiler-rt/lib/builtins/i386/
floatdidf.S 6 // double __floatundidf(du_int a);
floatundixf.S 6 // long double __floatundixf(du_int a);16
udivdi3.S 6 // du_int __udivdi3(du_int a, du_int b);
umoddi3.S 6 // du_int __umoddi3(du_int a, du_int b);
floatundidf.S 16 // double __floatundidf(du_int a);
  /external/compiler-rt/lib/builtins/x86_64/
floatundixf.S 6 // long double __floatundixf(du_int a);
floatundidf.S 16 // double __floatundidf(du_int a);

Completed in 148 milliseconds

12 3