/src/lib/libm/complex/ |
csqrt.c | 39 double x, y, r, t, scale; local in function:csqrt 76 scale = 2.0; 81 scale = 7.450580596923828125e-9; /* 2^-27 */ 85 scale = 0.5; 92 r = scale * fabs((0.5 * y) / t ); 93 t *= scale; 96 t = scale * fabs((0.5 * y) / r); 97 r *= scale;
|
csqrtf.c | 39 float x, y, r, t, scale; local in function:csqrtf 75 scale = 2.0f; 80 scale = 1.220703125e-4f; /* 2^-13 */ 84 scale = 0.5f; 91 r = scale * fabsf((0.5f * y) / t); 92 t *= scale; 95 t = scale * fabsf((0.5f * y) / r); 96 r *= scale;
|
csqrt.c | 39 double x, y, r, t, scale; local in function:csqrt 76 scale = 2.0; 81 scale = 7.450580596923828125e-9; /* 2^-27 */ 85 scale = 0.5; 92 r = scale * fabs((0.5 * y) / t ); 93 t *= scale; 96 t = scale * fabs((0.5 * y) / r); 97 r *= scale;
|
csqrtf.c | 39 float x, y, r, t, scale; local in function:csqrtf 75 scale = 2.0f; 80 scale = 1.220703125e-4f; /* 2^-13 */ 84 scale = 0.5f; 91 r = scale * fabsf((0.5f * y) / t); 92 t *= scale; 95 t = scale * fabsf((0.5f * y) / r); 96 r *= scale;
|
csqrtl.c | 60 bool scale; local in function:csqrtl 91 /* Scale to avoid overflow. */ 95 scale = true; 97 scale = false; 110 if (scale)
|
csqrtl.c | 60 bool scale; local in function:csqrtl 91 /* Scale to avoid overflow. */ 95 scale = true; 97 scale = false; 110 if (scale)
|
/src/usr.bin/systat/ |
ifcmds.c | 56 int scale; local in function:ifcmd 58 if (prefix(cmd, "scale")) { 59 if ((scale = get_scale(args)) != -1) 60 curscale = scale; 64 addstr("what scale? ");
|
ifcmds.c | 56 int scale; local in function:ifcmd 58 if (prefix(cmd, "scale")) { 59 if ((scale = get_scale(args)) != -1) 60 curscale = scale; 64 addstr("what scale? ");
|
convtbl.h | 42 enum scale { enum
|
convtbl.h | 42 enum scale { enum
|
convtbl.c | 61 uintmax_t scale; member in struct:convtbl 67 /* mul, scale, str, name */ 85 get_tbl_ptr(const uintmax_t size, const int scale) 91 idx = scale < SC_AUTO ? scale : SC_AUTO; 108 convert(const uintmax_t size, const int scale) 112 tp = get_tbl_ptr(size, scale); 113 return ((double)size * tp->mul / tp->scale); 118 get_string(const uintmax_t size, const int scale) 122 tp = get_tbl_ptr(size, scale); [all...] |
convtbl.c | 61 uintmax_t scale; member in struct:convtbl 67 /* mul, scale, str, name */ 85 get_tbl_ptr(const uintmax_t size, const int scale) 91 idx = scale < SC_AUTO ? scale : SC_AUTO; 108 convert(const uintmax_t size, const int scale) 112 tp = get_tbl_ptr(size, scale); 113 return ((double)size * tp->mul / tp->scale); 118 get_string(const uintmax_t size, const int scale) 122 tp = get_tbl_ptr(size, scale); [all...] |
/src/sys/external/bsd/compiler_rt/dist/lib/builtins/ |
divsf3.c | 31 int scale = 0; local in function:__divsf3 64 // normal number. Renormalize one or both of a and b, and set scale to 66 if (aAbs < implicitBit) scale += normalize(&aSignificand); 67 if (bAbs < implicitBit) scale -= normalize(&bSignificand); 75 int quotientExponent = aExponent - bExponent + scale;
|
divsf3.c | 31 int scale = 0; local in function:__divsf3 64 // normal number. Renormalize one or both of a and b, and set scale to 66 if (aAbs < implicitBit) scale += normalize(&aSignificand); 67 if (bAbs < implicitBit) scale -= normalize(&bSignificand); 75 int quotientExponent = aExponent - bExponent + scale;
|
divdf3.c | 31 int scale = 0; local in function:__divdf3 64 // normal number. Renormalize one or both of a and b, and set scale to 66 if (aAbs < implicitBit) scale += normalize(&aSignificand); 67 if (bAbs < implicitBit) scale -= normalize(&bSignificand); 75 int quotientExponent = aExponent - bExponent + scale;
|
divdf3.c | 31 int scale = 0; local in function:__divdf3 64 // normal number. Renormalize one or both of a and b, and set scale to 66 if (aAbs < implicitBit) scale += normalize(&aSignificand); 67 if (bAbs < implicitBit) scale -= normalize(&bSignificand); 75 int quotientExponent = aExponent - bExponent + scale;
|
divtf3.c | 31 int scale = 0; local in function:__divtf3 64 // normal number. Renormalize one or both of a and b, and set scale to 66 if (aAbs < implicitBit) scale += normalize(&aSignificand); 67 if (bAbs < implicitBit) scale -= normalize(&bSignificand); 75 int quotientExponent = aExponent - bExponent + scale;
|
/src/sys/external/bsd/drm2/dist/drm/ |
drm_rect.c | 142 int scale = 0; local in function:drm_calc_scale 153 scale = src / dst; 155 return scale; 168 * If the scale is below 1 << 16, round down. If the scale is above 169 * 1 << 16, round up. This will calculate the scale with the most 203 * If the scale is below 1 << 16, round down. If the scale is above 204 * 1 << 16, round up. This will calculate the scale with the most
|
drm_rect.c | 142 int scale = 0; local in function:drm_calc_scale 153 scale = src / dst; 155 return scale; 168 * If the scale is below 1 << 16, round down. If the scale is above 169 * 1 << 16, round up. This will calculate the scale with the most 203 * If the scale is below 1 << 16, round down. If the scale is above 204 * 1 << 16, round up. This will calculate the scale with the most
|
/src/usr.bin/vmstat/ |
drvstats.h | 48 int *scale; /* Sticky scale for bytes */ member in struct:_drive
|
drvstats.h | 48 int *scale; /* Sticky scale for bytes */ member in struct:_drive
|
/src/sys/arch/m68k/fpe/ |
fpu_fscale.c | 58 int scale, sign, exp; local in function:fpu_emul_fscale 66 scale = sig = 0; 94 scale = buf[0]; 176 scale = buf[0]; 179 scale = buf[0] & 0xffff; 180 if (scale & 0x8000) { 181 scale |= 0xffff0000; 185 scale = buf[0] & 0xff; 186 if (scale & 0x80) { 187 scale |= 0xffffff00 [all...] |
fpu_fscale.c | 58 int scale, sign, exp; local in function:fpu_emul_fscale 66 scale = sig = 0; 94 scale = buf[0]; 176 scale = buf[0]; 179 scale = buf[0] & 0xffff; 180 if (scale & 0x8000) { 181 scale |= 0xffff0000; 185 scale = buf[0] & 0xff; 186 if (scale & 0x80) { 187 scale |= 0xffffff00 [all...] |
/src/sys/external/bsd/drm2/dist/drm/i915/gt/ |
intel_llc.c | 104 const int scale = 180; local in function:calc_ia_freq 117 ia_freq = consts->max_ia_freq - diff * scale / 2;
|
intel_llc.c | 104 const int scale = 180; local in function:calc_ia_freq 117 ia_freq = consts->max_ia_freq - diff * scale / 2;
|