HomeSort by: relevance | last modified time | path
    Searched refs:du_int (Results 1 - 25 of 63) sorted by relevancy

1 2 3

  /src/sys/external/bsd/compiler_rt/dist/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;
fixunstfdi.c 15 typedef du_int fixuint_t;
18 COMPILER_RT_ABI du_int
fixunsdfdi.c 19 COMPILER_RT_ABI du_int
25 return ((du_int)high << 32) | low;
34 typedef du_int fixuint_t;
37 COMPILER_RT_ABI du_int
46 AEABI_RTABI du_int __aeabi_d2ulz(fp_t a) {
50 AEABI_RTABI du_int __aeabi_d2ulz(fp_t a) COMPILER_RT_ALIAS(__fixunsdfdi);
fixunssfdi.c 19 COMPILER_RT_ABI du_int
26 return ((du_int)high << 32) | low;
35 typedef du_int fixuint_t;
38 COMPILER_RT_ABI du_int
47 AEABI_RTABI du_int __aeabi_f2ulz(fp_t a) {
51 AEABI_RTABI du_int __aeabi_f2ulz(fp_t a) COMPILER_RT_ALIAS(__fixunssfdi);
floatundisf.c 18 * du_int is a 64 bit integral type
26 __floatundisf(du_int a)
30 const unsigned N = sizeof(du_int) * CHAR_BIT;
52 ((a & ((du_int)(-1) >> ((N + FLT_MANT_DIG+2) - sd))) != 0);
59 if (a & ((du_int)1 << FLT_MANT_DIG))
79 AEABI_RTABI float __aeabi_ul2f(du_int a) {
83 AEABI_RTABI float __aeabi_ul2f(du_int a) COMPILER_RT_ALIAS(__floatundisf);
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;
fixtfdi.c 16 typedef du_int fixuint_t;
addvdi3.c 24 di_int s = (du_int) a + (du_int) b;
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;
subvdi3.c 24 di_int s = (du_int) a - (du_int) b;
int_types.h 31 typedef unsigned long long du_int; typedef in typeref:typename:unsigned long long
50 du_int all;
80 du_int low;
84 du_int low;
95 du_int low;
96 du_int high;
98 du_int high;
99 du_int low;
111 static __inline tu_int make_tu(du_int h, du_int l)
    [all...]
floatundidf.c 18 * du_int is a 64 bit integral type
31 __floatundidf(du_int a)
53 __floatundidf(du_int a)
57 const unsigned N = sizeof(du_int) * CHAR_BIT;
79 ((a & ((du_int)(-1) >> ((N + DBL_MANT_DIG+2) - sd))) != 0);
86 if (a & ((du_int)1 << DBL_MANT_DIG))
108 AEABI_RTABI double __aeabi_ul2d(du_int a) {
112 AEABI_RTABI double __aeabi_ul2d(du_int a) COMPILER_RT_ALIAS(__floatundidf);
floatditf.c 30 du_int aAbs = (du_int)a;
33 aAbs = ~(du_int)a + 1U;
popcountdi2.c 22 du_int x2 = (du_int)a;
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;
  /src/sys/external/bsd/compiler_rt/dist/test/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};
  /src/sys/external/bsd/compiler_rt/dist/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);
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)
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};

Completed in 24 milliseconds

1 2 3