/src/lib/libm/src/ |
s_fabs.c | 32 u_int32_t high; local in function:__strong_alias 33 GET_HIGH_WORD(high,x); 34 SET_HIGH_WORD(x,high&0x7fffffff);
|
s_fabs.c | 32 u_int32_t high; local in function:__strong_alias 33 GET_HIGH_WORD(high,x); 34 SET_HIGH_WORD(x,high&0x7fffffff);
|
s_modf.c | 45 if(jj0<20) { /* integer part in high x */ 52 u_int32_t high; local in function:__strong_alias 54 GET_HIGH_WORD(high,x); 55 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 */ 63 u_int32_t high; local in function:__strong_alias 67 GET_HIGH_WORD(high,x); 68 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 */ 73 u_int32_t high; local in function:__strong_alias 75 GET_HIGH_WORD(high,x); 76 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 * [all...] |
s_modf.c | 45 if(jj0<20) { /* integer part in high x */ 52 u_int32_t high; local in function:__strong_alias 54 GET_HIGH_WORD(high,x); 55 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 */ 63 u_int32_t high; local in function:__strong_alias 67 GET_HIGH_WORD(high,x); 68 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 */ 73 u_int32_t high; local in function:__strong_alias 75 GET_HIGH_WORD(high,x); 76 INSERT_WORDS(x,high&0x80000000,0); /* return +-0 * [all...] |
e_hypot.c | 119 u_int32_t high; local in function:__ieee754_hypot 121 GET_HIGH_WORD(high,t1); 122 SET_HIGH_WORD(t1,high+(k<<20));
|
s_cbrt.c | 47 u_int32_t high,low; local in function:cbrt 61 t*=x; GET_HIGH_WORD(high,t); SET_HIGH_WORD(t,high/3+B2); 73 GET_HIGH_WORD(high,t); 74 INSERT_WORDS(t,high+0x00000001,0); 85 GET_HIGH_WORD(high,t); 86 SET_HIGH_WORD(t,high|sign);
|
s_cbrtf.c | 44 u_int32_t high; local in function:cbrtf 57 t*=x; GET_FLOAT_WORD(high,t); SET_FLOAT_WORD(t,high/3+B2); 69 GET_FLOAT_WORD(high,t); 70 SET_FLOAT_WORD(t,high|sign);
|
e_hypot.c | 119 u_int32_t high; local in function:__ieee754_hypot 121 GET_HIGH_WORD(high,t1); 122 SET_HIGH_WORD(t1,high+(k<<20));
|
s_cbrt.c | 47 u_int32_t high,low; local in function:cbrt 61 t*=x; GET_HIGH_WORD(high,t); SET_HIGH_WORD(t,high/3+B2); 73 GET_HIGH_WORD(high,t); 74 INSERT_WORDS(t,high+0x00000001,0); 85 GET_HIGH_WORD(high,t); 86 SET_HIGH_WORD(t,high|sign);
|
s_cbrtf.c | 44 u_int32_t high; local in function:cbrtf 57 t*=x; GET_FLOAT_WORD(high,t); SET_FLOAT_WORD(t,high/3+B2); 69 GET_FLOAT_WORD(high,t); 70 SET_FLOAT_WORD(t,high|sign);
|
/src/sys/external/bsd/compiler_rt/dist/lib/builtins/ |
fixunsdfdi.c | 23 su_int high = a / 4294967296.f; /* a / 0x1p32f; */ local in function:__fixunsdfdi 24 su_int low = a - (double)high * 4294967296.f; /* high * 0x1p32f; */ 25 return ((du_int)high << 32) | low;
|
fixunssfdi.c | 24 su_int high = da / 4294967296.f; /* da / 0x1p32f; */ local in function:__fixunssfdi 25 su_int low = da - (double)high * 4294967296.f; /* high * 0x1p32f; */ 26 return ((du_int)high << 32) | low;
|
fixunsdfdi.c | 23 su_int high = a / 4294967296.f; /* a / 0x1p32f; */ local in function:__fixunsdfdi 24 su_int low = a - (double)high * 4294967296.f; /* high * 0x1p32f; */ 25 return ((du_int)high << 32) | low;
|
fixunssfdi.c | 24 su_int high = da / 4294967296.f; /* da / 0x1p32f; */ local in function:__fixunssfdi 25 su_int low = da - (double)high * 4294967296.f; /* high * 0x1p32f; */ 26 return ((du_int)high << 32) | low;
|
floatdidf.c | 38 const double high = (int32_t)(a >> 32) * twop32; local in function:__floatdidf 41 const double result = (high - twop52) + low.d; 99 fb.u.s.high = ((su_int)s & 0x80000000) | /* sign */ 101 ((su_int)(a >> 32) & 0x000FFFFF); /* mantissa-high */
|
floatundidf.c | 37 union { uint64_t x; double d; } high = { .d = twop84 }; local in function:__floatundidf 40 high.x |= a >> 32; 43 const double result = (high.d - twop84_plus_twop52) + low.d; 99 fb.u.s.high = ((e + 1023) << 20) | /* exponent */ 100 ((su_int)(a >> 32) & 0x000FFFFF); /* mantissa-high */
|
floatdidf.c | 38 const double high = (int32_t)(a >> 32) * twop32; local in function:__floatdidf 41 const double result = (high - twop52) + low.d; 99 fb.u.s.high = ((su_int)s & 0x80000000) | /* sign */ 101 ((su_int)(a >> 32) & 0x000FFFFF); /* mantissa-high */
|
floatundidf.c | 37 union { uint64_t x; double d; } high = { .d = twop84 }; local in function:__floatundidf 40 high.x |= a >> 32; 43 const double result = (high.d - twop84_plus_twop52) + low.d; 99 fb.u.s.high = ((e + 1023) << 20) | /* exponent */ 100 ((su_int)(a >> 32) & 0x000FFFFF); /* mantissa-high */
|
/src/sys/external/bsd/compiler_rt/dist/lib/builtins/ppc/ |
floatunditf.c | 18 doublebits high = { .d = twop84 }; local in function:__floatunditf 21 high.x |= a >> 32; /* 0x1.0p84 + high 32 bits of a */ 24 const double high_addend = high.d - twop84_plus_twop52;
|
floatunditf.c | 18 doublebits high = { .d = twop84 }; local in function:__floatunditf 21 high.x |= a >> 32; /* 0x1.0p84 + high 32 bits of a */ 24 const double high_addend = high.d - twop84_plus_twop52;
|
/src/common/lib/libc/quad/ |
muldi3.c | 76 * uv = (2^2n + 2^n) (u1 v1) + [u1v1 = high] 96 * (2^n)(high) + (2^n)(mid) + (2^n + 1)(low) 100 * (2^n)(high + mid + low) + low 102 * Furthermore, `high' and `mid' can be computed mod 2^n, as any factor 112 u_int high, mid, udiff, vdiff; local in function:__muldi3 144 * any upper bits in high and mid, so we can use native 159 high = u1 * v1; 164 prod.ul[H] = high + (negmid ? -mid : mid) + low.ul[L] + 190 * splits into high and low ints as HHALF(l) and LHUP(l) respectively. 195 u_int u1, u0, v1, v0, udiff, vdiff, high, mid, low local in function:__lmulq [all...] |
muldi3.c | 76 * uv = (2^2n + 2^n) (u1 v1) + [u1v1 = high] 96 * (2^n)(high) + (2^n)(mid) + (2^n + 1)(low) 100 * (2^n)(high + mid + low) + low 102 * Furthermore, `high' and `mid' can be computed mod 2^n, as any factor 112 u_int high, mid, udiff, vdiff; local in function:__muldi3 144 * any upper bits in high and mid, so we can use native 159 high = u1 * v1; 164 prod.ul[H] = high + (negmid ? -mid : mid) + low.ul[L] + 190 * splits into high and low ints as HHALF(l) and LHUP(l) respectively. 195 u_int u1, u0, v1, v0, udiff, vdiff, high, mid, low local in function:__lmulq [all...] |
/src/sys/arch/hpcmips/vr/ |
vrdcu.c | 221 paddr_t high; local in function:_vrdcu_dmamem_alloc 225 high = (pmap_limits.avail_end < VRDMAAU_BOUNCE_THRESHOLD ? 232 pmap_limits.avail_start, high);
|
/src/sys/arch/mips/mips/ |
in_cksum.c | 79 unsigned long hilo = 0, high = 0; local in function:fastsum 124 high += w0 >> 16; 128 high += w1 >> 16; 132 high += w0 >> 16; 136 high += w1 >> 16; 140 high += w0 >> 16; 144 high += w1 >> 16; 148 high += w0 >> 16; 152 high += w1 >> 16; 157 high += w0 >> 16 [all...] |
/src/sys/dev/raidframe/ |
rf_geniq.c | 51 unsigned high = (val >> 4) & 1; local in function:lsfr_shift 54 new = (poly & 1) ? high : 0; 59 new = new | ((bit ^ high) << i);
|