/src/sys/arch/m68k/fpsp/ |
l_fpsp.h | 163 FPTEMP_EX equ FPTEMP ;fptemp sign and exponent (2 bytes) variable in typeref:typename:fptemp sign and 170 ETEMP_EX equ ETEMP ;etemp sign and exponent (2 bytes) variable in typeref:typename:etemp sign and
|
fpsp.h | 157 WBTEMP_EX equ WBTEMP ;wbtemp sign and exponent (2 bytes) variable in typeref:typename:wbtemp sign and 190 etemp15_bit equ 4 ;etemp exponent bit #15 210 fptemp15_bit equ 4 ;fptemp exponent bit #15 213 wbtemp15_bit equ 4 ;wbtemp exponent bit #15 226 FPTEMP_EX equ FPTEMP ;fptemp sign and exponent (2 bytes) variable in typeref:typename:fptemp sign and 233 ETEMP_EX equ ETEMP ;etemp sign and exponent (2 bytes) variable in typeref:typename:etemp sign and
|
/src/lib/libc/gen/ |
floatunditf_ieee754.c | 49 int exponent, zeros; local in function:__floatunditf 58 exponent = 64 - zeros; 61 exponent = 63 - zeros; 65 ux.extu_exp = EXT_EXP_BIAS + exponent;
|
/src/sys/external/bsd/compiler_rt/dist/lib/builtins/ |
floatunditf.c | 27 // Exponent of (fp_t)a is the width of abs(a). 28 const int exponent = (aWidth - 1) - __builtin_clzll(a); local in function:__floatunditf 32 const int shift = significandBits - exponent; 35 // Insert the exponent 36 result += (rep_t)(exponent + exponentBias) << significandBits;
|
floatunsidf.c | 29 // Exponent of (fp_t)a is the width of abs(a). 30 const int exponent = (aWidth - 1) - __builtin_clz(a); local in function:__floatunsidf 34 const int shift = significandBits - exponent; 37 // Insert the exponent 38 result += (rep_t)(exponent + exponentBias) << significandBits;
|
floatunsitf.c | 27 // Exponent of (fp_t)a is the width of abs(a). 28 const int exponent = (aWidth - 1) - __builtin_clz(a); local in function:__floatunsitf 32 const int shift = significandBits - exponent; 35 // Insert the exponent 36 result += (rep_t)(exponent + exponentBias) << significandBits;
|
floatditf.c | 36 // Exponent of (fp_t)a is the width of abs(a). 37 const int exponent = (aWidth - 1) - __builtin_clzll(aAbs); local in function:__floatditf 41 const int shift = significandBits - exponent; 44 // Insert the exponent 45 result += (rep_t)(exponent + exponentBias) << significandBits;
|
floatsidf.c | 37 // Exponent of (fp_t)a is the width of abs(a). 38 const int exponent = (aWidth - 1) - __builtin_clz(a); local in function:__floatsidf 44 const int shift = significandBits - exponent; 47 // Insert the exponent 48 result += (rep_t)(exponent + exponentBias) << significandBits;
|
floatsisf.c | 37 // Exponent of (fp_t)a is the width of abs(a). 38 const int exponent = (aWidth - 1) - __builtin_clz(a); local in function:__floatsisf 42 if (exponent <= significandBits) { 43 const int shift = significandBits - exponent; 46 const int shift = exponent - significandBits; 53 // Insert the exponent 54 result += (rep_t)(exponent + exponentBias) << significandBits;
|
floatsitf.c | 36 // Exponent of (fp_t)a is the width of abs(a). 37 const int exponent = (aWidth - 1) - __builtin_clz(aAbs); local in function:__floatsitf 41 const int shift = significandBits - exponent; 44 // Insert the exponent 45 result += (rep_t)(exponent + exponentBias) << significandBits;
|
floatunsisf.c | 29 // Exponent of (fp_t)a is the width of abs(a). 30 const int exponent = (aWidth - 1) - __builtin_clz(a); local in function:__floatunsisf 34 if (exponent <= significandBits) { 35 const int shift = significandBits - exponent; 38 const int shift = exponent - significandBits; 45 // Insert the exponent 46 result += (rep_t)(exponent + exponentBias) << significandBits;
|
/src/sys/external/bsd/compiler_rt/dist/test/Unit/ppc/ |
qadd_test.c | 266 // Some test cases that cover the whole exponent range: 1831 int exponent = ilogb(r.hi); local in function:testAccuracy 1832 exponent = (exponent < -1022 ? -1022 : exponent); 1833 double ulpError = scalbn(error, 106 - exponent);
|
qdiv_test.c | 754 int exponent = ilogb(r.hi); local in function:testAccuracy 755 exponent = (exponent < -1022 ? -1022 : exponent); 756 double ulpError = scalbn(error, 106 - exponent);
|
qmul_test.c | 752 int exponent = ilogb(r.hi); local in function:testAccuracy 753 exponent = (exponent < -1022 ? -1022 : exponent); 754 double ulpError = scalbn(error, 106 - exponent);
|
qsub_test.c | 268 // Some test cases that cover the whole exponent range: 1833 int exponent = ilogb(r.hi); local in function:testAccuracy 1834 exponent = (exponent < -1022 ? -1022 : exponent); 1835 double ulpError = scalbn(error, 106 - exponent);
|
/src/sys/external/bsd/compiler_rt/dist/test/builtins/Unit/ppc/ |
qadd_test.c | 266 // Some test cases that cover the whole exponent range: 1831 int exponent = ilogb(r.hi); local in function:testAccuracy 1832 exponent = (exponent < -1022 ? -1022 : exponent); 1833 double ulpError = scalbn(error, 106 - exponent);
|
qdiv_test.c | 754 int exponent = ilogb(r.hi); local in function:testAccuracy 755 exponent = (exponent < -1022 ? -1022 : exponent); 756 double ulpError = scalbn(error, 106 - exponent);
|
qmul_test.c | 752 int exponent = ilogb(r.hi); local in function:testAccuracy 753 exponent = (exponent < -1022 ? -1022 : exponent); 754 double ulpError = scalbn(error, 106 - exponent);
|
qsub_test.c | 268 // Some test cases that cover the whole exponent range: 1833 int exponent = ilogb(r.hi); local in function:testAccuracy 1834 exponent = (exponent < -1022 ? -1022 : exponent); 1835 double ulpError = scalbn(error, 106 - exponent);
|
/src/usr.bin/sort/ |
fields.c | 226 * Numbers are converted to a floating point format (exponent & mantissa) 231 * The first byte contain the overall sign, exponent sign and some of the 232 * exponent. These have to be ordered (-ve value, decreasing exponent), 233 * zero, (+ve value, increasing exponent). 235 * The first byte is 0x80 for zero, 0xc0 for +ve with exponent 0. 239 * The largest 4 exponent values are used to hold a byte count of the 240 * number of following bytes that contain 8 exponent bits per byte, 254 int exponent = -1; local in function:number 270 /* Ensure we have enough space for the exponent */ [all...] |
/src/sys/compat/linux/arch/i386/ |
linux_machdep.h | 105 unsigned short exponent; member in struct:linux_libc_fpreg
|
/src/sys/compat/linux32/arch/amd64/ |
linux32_signal.h | 129 unsigned short exponent; member in struct:linux32_libc_fpreg
|
/src/sys/external/bsd/drm/dist/shared-core/ |
r600_blit.c | 1648 u32 result, i, exponent, fraction; local in function:i2f 1653 exponent = 140; /* exponent biased by 127; */ 1662 exponent = exponent -1; 1665 result = exponent << 23 | (fraction & 0x7fffff); /* mask
|
/src/lib/libc/resolv/ |
res_debug.c | 777 int mantissa, exponent; local in function:precsize_ntoa 780 exponent = (int)((prec >> 0) & 0x0f) % 10; 782 val = mantissa * poweroften[exponent]; 794 int exponent; local in function:precsize_aton 813 for (exponent = 0; exponent < 9; exponent++) 814 if (cmval < poweroften[exponent+1]) 817 mantissa = cmval / poweroften[exponent]; 821 retval = (mantissa << 4) | exponent; [all...] |
/src/lib/libc/stdio/ |
vfwprintf.c | 583 static int exponent(CHAR_T *, int, int); 645 * D: expchar holds this character; '\0' if no exponent, e.g. %f 658 int expt; /* integer value of exponent */ 659 char expchar; /* exponent character: [eEpP\0] */ 663 CHAR_T expstr[MAXEXPDIG+2]; /* buffer for exponent string: e+ZZZ */ 1194 expsize = exponent(expstr, expt - 1, expchar); 1948 exponent(CHAR_T *p0, int expo, int fmtch) function in typeref:typename:int
|