/external/compiler-rt/test/builtins/Unit/ |
udivdi3_test.c | 19 COMPILER_RT_ABI 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 COMPILER_RT_ABI 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);
|
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 COMPILER_RT_ABI 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 COMPILER_RT_ABI 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 COMPILER_RT_ABI 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};
|
fixunstfdi_test.c | 24 // du_int is a 64 bit integral type 25 // value in long double is representable in du_int or is negative 28 COMPILER_RT_ABI du_int __fixunstfdi(long double a); 30 int test__fixunstfdi(long double a, du_int expected) 32 du_int x = __fixunstfdi(a); 39 char assumption_1[sizeof(du_int) == 2*sizeof(su_int)] = {0}; 40 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 COMPILER_RT_ABI 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};
|
ucmpdi2_test.c | 21 COMPILER_RT_ABI si_int __ucmpdi2(du_int a, du_int b); 23 int test__ucmpdi2(du_int a, du_int b, si_int expected)
|
/external/compiler-rt/lib/builtins/ |
int_types.h | 31 typedef unsigned long long du_int; typedef 50 du_int all; 78 du_int low; 82 du_int low; 93 du_int low; 94 du_int high; 96 du_int high; 97 du_int low; 109 static __inline tu_int make_tu(du_int h, du_int l) [all...] |
fixunsdfdi.c | 21 COMPILER_RT_ABI du_int 27 return ((du_int)high << 32) | low; 36 typedef du_int fixuint_t; 39 COMPILER_RT_ABI du_int
|
fixunssfdi.c | 21 COMPILER_RT_ABI du_int 28 return ((du_int)high << 32) | low; 37 typedef du_int fixuint_t; 40 COMPILER_RT_ABI du_int
|
umoddi3.c | 19 COMPILER_RT_ABI du_int 20 __umoddi3(du_int a, du_int b) 22 du_int r;
|
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 41 if ((unsigned)e > sizeof(du_int) * CHAR_BIT) 42 return ~(du_int)0;
|
udivdi3.c | 19 COMPILER_RT_ABI du_int 20 __udivdi3(du_int a, du_int b)
|
fixunstfdi.c | 15 typedef du_int fixuint_t; 18 COMPILER_RT_ABI du_int
|
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))
|
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;
|
README.txt | 29 typedef unsigned long long du_int; 72 du_int __udivdi3 (du_int a, du_int b); // a / b unsigned 78 du_int __umoddi3 (du_int a, du_int b); // a % b unsigned 80 du_int __udivmoddi4(du_int a, du_int b, du_int* rem); // a / b, *rem = a % b unsigne [all...] |
floatditf.c | 30 du_int aAbs = (du_int)a; 33 aAbs = ~(du_int)a + 1U;
|
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;
|
addvdi3.c | 24 di_int s = (du_int) a + (du_int) b;
|
fixdfdi.c | 20 COMPILER_RT_ABI du_int __fixunsdfdi(double a); 38 typedef du_int fixuint_t;
|
fixsfdi.c | 21 COMPILER_RT_ABI du_int __fixunssfdi(float a); 39 typedef du_int fixuint_t;
|
subvdi3.c | 24 di_int s = (du_int) a - (du_int) b;
|
/external/compiler-rt/lib/builtins/x86_64/ |
floatundisf.S | 6 // float __floatundisf(du_int a);
|