HomeSort by relevance Sort by last modified time
    Searched refs:du_int (Results 1 - 25 of 40) sorted by null

1 2

  /external/compiler-rt/lib/builtins/
udivdi3.c 19 COMPILER_RT_ABI du_int
20 __udivdi3(du_int a, du_int b)
umoddi3.c 19 COMPILER_RT_ABI du_int
20 __umoddi3(du_int a, du_int b)
22 du_int r;
int_types.h 27 typedef unsigned long long du_int; typedef
46 du_int all;
73 du_int low;
77 du_int low;
88 du_int low;
89 du_int high;
91 du_int high;
92 du_int low;
104 static inline tu_int make_tu(du_int h, du_int l)
    [all...]
floatundisf.c 18 * du_int is a 64 bit integral type
28 __floatundisf(du_int a)
32 const unsigned N = sizeof(du_int) * CHAR_BIT;
54 ((a & ((du_int)(-1) >> ((N + FLT_MANT_DIG+2) - sd))) != 0);
61 if (a & ((du_int)1 << FLT_MANT_DIG))
fixunssfdi.c 21 * du_int is a 64 bit integral type
22 * value in float is representable in du_int or is negative
30 COMPILER_RT_ABI du_int
38 du_int r = (fb.u & 0x007FFFFF) | 0x00800000;
floatundixf.c 22 * du_int is a 64 bit integral type
29 __floatundixf(du_int a)
33 const unsigned N = sizeof(du_int) * CHAR_BIT;
popcountdi2.c 22 du_int x2 = (du_int)a;
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))
multi3.c 23 __mulddi3(du_int a, du_int b)
27 const du_int lower_mask = (du_int)~0 >> bits_in_dword_2;
29 du_int t = r.s.low >> bits_in_dword_2;
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))
popcountti2.c 34 du_int x2 = (du_int)(x3 + (x3 >> 64));
ucmpdi2.c 23 __ucmpdi2(du_int a, du_int b)
fixunsxfdi.c 24 * du_int is a 64 bit integral type
25 * value in long double is representable in du_int or is negative
33 COMPILER_RT_ABI du_int
int_lib.h 70 COMPILER_RT_ABI du_int __udivmoddi4(du_int a, du_int b, du_int* rem);
divdi3.c 28 return (__udivmoddi4(a, b, (du_int*)0) ^ s_a) - s_a; /* negate if s_a == -1 */
fixxfdi.c 40 r = (du_int)r >> (63 - e);
moddi3.c 27 du_int r;
  /external/compiler-rt/test/builtins/Unit/
udivdi3_test.c 19 du_int __udivdi3(du_int a, du_int b);
21 int test__udivdi3(du_int a, du_int b, du_int expected_q)
23 du_int q = __udivdi3(a, b);
umoddi3_test.c 19 du_int __umoddi3(du_int a, du_int b);
21 int test__umoddi3(du_int a, du_int b, du_int expected_r)
23 du_int r = __umoddi3(a, b);
ucmpdi2_test.c 21 si_int __ucmpdi2(du_int a, du_int b);
23 int test__ucmpdi2(du_int a, du_int b, si_int expected)
fixunstfdi_test.c 23 // du_int is a 64 bit integral type
24 // value in long double is representable in du_int or is negative
27 du_int __fixunstfdi(long double a);
29 int test__fixunstfdi(long double a, du_int expected)
31 du_int x = __fixunstfdi(a);
38 char assumption_1[sizeof(du_int) == 2*sizeof(su_int)] = {0};
39 char assumption_2[sizeof(du_int)*CHAR_BIT == 64] = {0};
fixunsxfdi_test.c 24 // du_int is a 64 bit integral type
25 // value in long double is representable in du_int or is negative
31 du_int __fixunsxfdi(long double a);
33 int test__fixunsxfdi(long double a, du_int expected)
35 du_int x = __fixunsxfdi(a);
42 char assumption_1[sizeof(du_int) == 2*sizeof(su_int)] = {0};
43 char assumption_2[sizeof(du_int)*CHAR_BIT == 64] = {0};
fixunsdfdi_test.c 21 // du_int is a 64 bit integral type
22 // value in double is representable in du_int or is negative
27 du_int __fixunsdfdi(double a);
29 int test__fixunsdfdi(double a, du_int expected)
31 du_int x = __fixunsdfdi(a);
37 char assumption_1[sizeof(du_int) == 2*sizeof(su_int)] = {0};
fixunssfdi_test.c 21 // du_int is a 64 bit integral type
22 // value in float is representable in du_int or is negative
27 du_int __fixunssfdi(float a);
29 int test__fixunssfdi(float a, du_int expected)
31 du_int x = __fixunssfdi(a);
38 char assumption_1[sizeof(du_int) == 2*sizeof(si_int)] = {0};
floatundisf_test.c 21 // du_int is a 64 bit integral type
25 float __floatundisf(du_int a);
27 int test__floatundisf(du_int a, float expected)
36 char assumption_1[sizeof(du_int) == 2*sizeof(si_int)] = {0};
37 char assumption_2[sizeof(du_int)*CHAR_BIT == 64] = {0};

Completed in 375 milliseconds

1 2