Searched refs:du_int (Results 1 - 25 of 31) sorted by relevance

12

/freebsd-11.0-release/contrib/compiler-rt/lib/builtins/
H A Dudivdi3.c19 COMPILER_RT_ABI du_int
20 __udivdi3(du_int a, du_int b)
H A Dumoddi3.c19 COMPILER_RT_ABI du_int
20 __umoddi3(du_int a, du_int b)
22 du_int r;
H A Dfixunstfdi.c15 typedef du_int fixuint_t;
18 COMPILER_RT_ABI du_int
H A Dfixunsdfdi.c21 COMPILER_RT_ABI du_int
27 return ((du_int)high << 32) | low;
36 typedef du_int fixuint_t;
39 COMPILER_RT_ABI du_int
H A Dfixunssfdi.c21 COMPILER_RT_ABI du_int
28 return ((du_int)high << 32) | low;
37 typedef du_int fixuint_t;
40 COMPILER_RT_ABI du_int
H A Dfixunsxfdi.c24 * 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;
H A Dfixtfdi.c16 typedef du_int fixuint_t;
H A Dfloatundisf.c18 * 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))
H A Daddvdi3.c24 di_int s = (du_int) a + (du_int) b;
H A Dfixdfdi.c20 COMPILER_RT_ABI du_int __fixunsdfdi(double a);
38 typedef du_int fixuint_t;
H A Dfixsfdi.c21 COMPILER_RT_ABI du_int __fixunssfdi(float a);
39 typedef du_int fixuint_t;
H A Dfloatundixf.c22 * du_int is a 64 bit integral type
29 __floatundixf(du_int a)
33 const unsigned N = sizeof(du_int) * CHAR_BIT;
H A Dsubvdi3.c24 di_int s = (du_int) a - (du_int) b;
H A Dint_types.h31 typedef unsigned long long du_int; typedef
50 du_int all;
79 du_int low;
83 du_int low;
94 du_int low;
95 du_int high;
97 du_int high;
98 du_int low;
110 static __inline tu_int make_tu(du_int h, du_int
[all...]
H A Dfloatditf.c30 du_int aAbs = (du_int)a;
33 aAbs = ~(du_int)a + 1U;
H A Dpopcountdi2.c22 du_int x2 = (du_int)a;
H A Dfloatundidf.c18 * 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))
H A Dmulti3.c23 __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;
H A Dfloatdisf.c55 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))
H A Dfixxfdi.c33 const di_int di_max = (di_int)((~(du_int)0) / 2);
44 r = (du_int)r >> (63 - e);
H A Dpopcountti2.c34 du_int x2 = (du_int)(x3 + (x3 >> 64));
H A Ducmpdi2.c23 __ucmpdi2(du_int a, du_int b)
H A Ddivdi3.c28 return (__udivmoddi4(a, b, (du_int*)0) ^ s_a) - s_a; /* negate if s_a == -1 */
H A Dfloatunditf.c10 // This file implements du_int to quad-precision conversion for the
20 COMPILER_RT_ABI fp_t __floatunditf(du_int a) {
H A Dmoddi3.c27 du_int r;

Completed in 120 milliseconds

12