HomeSort by: relevance | last modified time | path
    Searched defs:exponent (Results 1 - 25 of 52) sorted by relevancy

1 2 3

  /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
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
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;
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;
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;
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);

Completed in 36 milliseconds

1 2 3