/src/sys/external/bsd/compiler_rt/dist/lib/builtins/ |
fixunsdfdi.c | 24 su_int low = a - (double)high * 4294967296.f; /* high * 0x1p32f; */ local in function:__fixunsdfdi 25 return ((du_int)high << 32) | low;
|
fixunssfdi.c | 25 su_int low = da - (double)high * 4294967296.f; /* high * 0x1p32f; */ local in function:__fixunssfdi 26 return ((du_int)high << 32) | low;
|
fixunsdfdi.c | 24 su_int low = a - (double)high * 4294967296.f; /* high * 0x1p32f; */ local in function:__fixunsdfdi 25 return ((du_int)high << 32) | low;
|
fixunssfdi.c | 25 su_int low = da - (double)high * 4294967296.f; /* high * 0x1p32f; */ local in function:__fixunssfdi 26 return ((du_int)high << 32) | low;
|
floatdidf.c | 36 union { int64_t x; double d; } low = { .d = twop52 }; local in function:__floatdidf 39 low.x |= a & INT64_C(0x00000000ffffffff); 41 const double result = (high - twop52) + low.d; 102 fb.u.s.low = (su_int)a; /* mantissa-low */
|
floatundidf.c | 38 union { uint64_t x; double d; } low = { .d = twop52 }; local in function:__floatundidf 41 low.x |= a & UINT64_C(0x00000000ffffffff); 43 const double result = (high.d - twop84_plus_twop52) + low.d; 101 fb.u.s.low = (su_int)a; /* mantissa-low */
|
floatdidf.c | 36 union { int64_t x; double d; } low = { .d = twop52 }; local in function:__floatdidf 39 low.x |= a & INT64_C(0x00000000ffffffff); 41 const double result = (high - twop52) + low.d; 102 fb.u.s.low = (su_int)a; /* mantissa-low */
|
floatundidf.c | 38 union { uint64_t x; double d; } low = { .d = twop52 }; local in function:__floatundidf 41 low.x |= a & UINT64_C(0x00000000ffffffff); 43 const double result = (high.d - twop84_plus_twop52) + low.d; 101 fb.u.s.low = (su_int)a; /* mantissa-low */
|
/src/sys/external/bsd/compiler_rt/dist/lib/builtins/ppc/ |
floatditf.c | 15 doublebits low = { .d = twop52 }; local in function:__floatditf 16 low.x |= a & UINT64_C(0x00000000ffffffff); /* 0x1.0p52 + low 32 bits of a. */ 21 * high_addend and low.d, and we wish to return their sum 31 result.s.hi = high_addend + low.d; 32 result.s.lo = (high_addend - result.s.hi) + low.d;
|
floatditf.c | 15 doublebits low = { .d = twop52 }; local in function:__floatditf 16 low.x |= a & UINT64_C(0x00000000ffffffff); /* 0x1.0p52 + low 32 bits of a. */ 21 * high_addend and low.d, and we wish to return their sum 31 result.s.hi = high_addend + low.d; 32 result.s.lo = (high_addend - result.s.hi) + low.d;
|
floatunditf.c | 19 doublebits low = { .d = twop52 }; local in function:__floatunditf 22 low.x |= a & UINT64_C(0x00000000ffffffff); /* 0x1.0p52 + low 32 bits of a */ 27 * high_addend and low.d, and we wish to return their sum 36 result.s.hi = high_addend + low.d; 37 result.s.lo = (high_addend - result.s.hi) + low.d;
|
floatunditf.c | 19 doublebits low = { .d = twop52 }; local in function:__floatunditf 22 low.x |= a & UINT64_C(0x00000000ffffffff); /* 0x1.0p52 + low 32 bits of a */ 27 * high_addend and low.d, and we wish to return their sum 36 result.s.hi = high_addend + low.d; 37 result.s.lo = (high_addend - result.s.hi) + low.d;
|
/src/lib/libm/src/ |
e_hypot.c | 70 u_int32_t low; local in function:__ieee754_hypot 72 GET_LOW_WORD(low,a); 73 if(((ha&0xfffff)|low)==0) w = a; 74 GET_LOW_WORD(low,b); 75 if(((hb^0x7ff00000)|low)==0) w = b; 85 u_int32_t low; local in function:__ieee754_hypot 86 GET_LOW_WORD(low,b); 87 if((hb|low)==0) return a;
|
k_tan.c | 88 u_int32_t low; local in function:__kernel_tan 89 GET_LOW_WORD(low, x); 90 if(((ix | low) | (iy + 1)) == 0)
|
s_cbrt.c | 47 u_int32_t high,low; local in function:cbrt 53 GET_LOW_WORD(low,x); 54 if((hx|low)==0)
|
s_atan.c | 93 u_int32_t low; local in function:atan 94 GET_LOW_WORD(low,x); 96 (ix==0x7ff00000&&(low!=0)))
|
e_hypot.c | 70 u_int32_t low; local in function:__ieee754_hypot 72 GET_LOW_WORD(low,a); 73 if(((ha&0xfffff)|low)==0) w = a; 74 GET_LOW_WORD(low,b); 75 if(((hb^0x7ff00000)|low)==0) w = b; 85 u_int32_t low; local in function:__ieee754_hypot 86 GET_LOW_WORD(low,b); 87 if((hb|low)==0) return a;
|
k_tan.c | 88 u_int32_t low; local in function:__kernel_tan 89 GET_LOW_WORD(low, x); 90 if(((ix | low) | (iy + 1)) == 0)
|
s_cbrt.c | 47 u_int32_t high,low; local in function:cbrt 53 GET_LOW_WORD(low,x); 54 if((hx|low)==0)
|
s_atan.c | 93 u_int32_t low; local in function:atan 94 GET_LOW_WORD(low,x); 96 (ix==0x7ff00000&&(low!=0)))
|
/src/common/lib/libc/quad/ |
muldi3.c | 78 * (2^n + 1) (u0 v0) [u0v0 = low] 96 * (2^n)(high) + (2^n)(mid) + (2^n + 1)(low) 100 * (2^n)(high + mid + low) + low 103 * of 2^n in either one will also vanish. Only `low' need be computed 111 union uu u, v, low, prod; local in function:__muldi3 147 low.q = __lmulq(u0, v0); 164 prod.ul[H] = high + (negmid ? -mid : mid) + low.ul[L] + 165 low.ul[H]; 166 prod.ul[L] = low.ul[L] 195 u_int u1, u0, v1, v0, udiff, vdiff, high, mid, low; local in function:__lmulq [all...] |
muldi3.c | 78 * (2^n + 1) (u0 v0) [u0v0 = low] 96 * (2^n)(high) + (2^n)(mid) + (2^n + 1)(low) 100 * (2^n)(high + mid + low) + low 103 * of 2^n in either one will also vanish. Only `low' need be computed 111 union uu u, v, low, prod; local in function:__muldi3 147 low.q = __lmulq(u0, v0); 164 prod.ul[H] = high + (negmid ? -mid : mid) + low.ul[L] + 165 low.ul[H]; 166 prod.ul[L] = low.ul[L] 195 u_int u1, u0, v1, v0, udiff, vdiff, high, mid, low; local in function:__lmulq [all...] |
/src/lib/libc/arch/aarch64/softfloat/ |
softfloat.h | 62 unsigned long long low; member in struct:__anon99773caa0108 68 unsigned long long high, low; member in struct:__anon99773caa0208 70 unsigned long long low, high;
|
/src/lib/libc/arch/arm/softfloat/ |
softfloat.h | 60 unsigned long long low; member in struct:__anon890ec0810108 65 unsigned long long high, low; member in struct:__anon890ec0810208
|
/src/lib/libc/arch/mips/softfloat/ |
softfloat.h | 61 unsigned long long low; member in struct:__anon0cd2257a0108 66 unsigned long long high, low; member in struct:__anon0cd2257a0208
|