Home
last modified time | relevance | path

Searched refs:twop52 (Results 1 – 9 of 9) sorted by relevance

/src/contrib/llvm-project/compiler-rt/lib/builtins/ppc/
H A Dfloatditf.c13 static const double twop52 = 0x1.0p52; in __floatditf() local
15 doublebits low = {.d = twop52}; in __floatditf()
18 const double high_addend = (double)((int32_t)(a >> 32)) * twop32 - twop52; in __floatditf()
H A Dfloatunditf.c14 static const double twop52 = 0x1.0p52; in __floatunditf() local
19 doublebits low = {.d = twop52}; in __floatunditf()
/src/contrib/llvm-project/compiler-rt/lib/builtins/
H A Dfloatdidf.c28 static const double twop52 = 4503599627370496.0; // 0x1.0p52 in __floatdidf() local
34 } low = {.d = twop52}; in __floatdidf()
39 const double result = (high - twop52) + low.d; in __floatdidf()
H A Dfloatundidf.c28 static const double twop52 = 4503599627370496.0; // 0x1.0p52 in __floatundidf() local
40 } low = {.d = twop52}; in __floatundidf()
/src/contrib/llvm-project/compiler-rt/lib/builtins/x86_64/
H A Dfloatundidf.S22 twop52: label
41 orpd REL_ADDR(twop52), %xmm0 // 0x1p52 + a_lo (no rounding occurs)
/src/contrib/llvm-project/compiler-rt/lib/builtins/i386/
H A Dfloatdidf.S14 twop52: label
31 movsd REL_ADDR(twop52), %xmm2 // 0x1.0p52
H A Dfloatundidf.S22 twop52: label
44 orpd REL_ADDR(twop52), %xmm0 // 0x1p52 + a_lo (no rounding occurs)
H A Dfloatundixf.S14 twop52: label
35 orpd REL_ADDR(twop52), %xmm1 // 2^52 + lo (as a double)
H A Dfloatundisf.S59 twop52: label
72 #define TWOp52 twop52-0b(%ecx)