HomeSort by relevance Sort by last modified time
    Searched refs:denormal (Results 1 - 25 of 26) sorted by null

1 2

  /prebuilts/go/darwin-x86/test/fixedbugs/
issue14553.go 8 // arithmetic correctly rounds denormal float32 values.
issue14651.go 9 // that become the smallest denormal value.
  /prebuilts/go/linux-x86/test/fixedbugs/
issue14553.go 8 // arithmetic correctly rounds denormal float32 values.
issue14651.go 9 // that become the smallest denormal value.
  /prebuilts/go/darwin-x86/src/math/
ldexp.go 38 if exp < -1022 { // denormal
all_test.go     [all...]
  /prebuilts/go/linux-x86/src/math/
ldexp.go 38 if exp < -1022 { // denormal
  /prebuilts/ndk/r11/sources/android/support/src/wcstox/
floatscan.c 99 int denormal = 0; local
283 /* Limit precision for denormal results */
287 denormal = 1;
320 if (denormal && bits==LDBL_MANT_DIG+e2-emin)
321 denormal = 0;
325 if (e2+LDBL_MANT_DIG>emax || (denormal && frac))
  /prebuilts/ndk/r13/sources/android/support/src/wcstox/
floatscan.c 99 int denormal = 0; local
283 /* Limit precision for denormal results */
287 denormal = 1;
320 if (denormal && bits==LDBL_MANT_DIG+e2-emin)
321 denormal = 0;
325 if (e2+LDBL_MANT_DIG>emax || (denormal && frac))
  /prebuilts/go/darwin-x86/src/math/big/
float_test.go 525 // float64 to a float32 (excluding denormal numbers).
839 {"1.401298464e-45", math.SmallestNonzeroFloat32, Above}, // rounded up to smallest denormal
840 {"0x.ffffff8p-149", math.SmallestNonzeroFloat32, Above}, // rounded up to smallest denormal
841 {"0x.0000018p-126", math.SmallestNonzeroFloat32, Above}, // rounded up to smallest denormal
845 {"0x.fffffep-126", math.Float32frombits(0x7fffff), Exact}, // largest denormal
847 // special denormal cases (see issues 14553, 14651)
851 {"0x0.0000011p-126", math.Float32frombits(0x00000001), Above}, // rounded up to smallest denormal
852 {"0x0.0000018p-126", math.Float32frombits(0x00000001), Above}, // rounded up to smallest denormal
854 {"0x1.0000000p-149", math.Float32frombits(0x00000001), Exact}, // smallest denormal
855 {"0x0.0000020p-126", math.Float32frombits(0x00000001), Exact}, // smallest denormal
    [all...]
ratconv_test.go 283 // smallest denormal
325 // Smallest denormal, 2^(-1022-52)
327 // Half of smallest denormal, 2^(-1022-53)
329 // A little more than the exact half of smallest denormal
332 // The exact halfway between smallest normal and largest denormal:
float.go 51 // that correspond to normal (i.e., not denormal) float32 or float64 numbers.
836 dmin = 1 - bias - mbits // -149 smallest unbiased exponent (denormal)
845 // If the exponent is too small, we have a denormal number before
854 // mantissa space. In other words, if the smallest denormal is
856 // If m > 0.5, it is rounded up to 1.0; i.e., the smallest denormal.
903 // Rounding may have caused a denormal number to
906 // denormal number: recompute precision
956 dmin = 1 - bias - mbits // -1074 smallest unbiased exponent (denormal)
965 // If the exponent is too small, we have a denormal number before
974 // mantissa space. In other words, if the smallest denormal i
    [all...]
rat.go 38 case 0: // denormal
134 // Denormal case; lose 'shift' bits of precision.
232 // Denormal case; lose 'shift' bits of precision.
  /prebuilts/go/linux-x86/src/math/big/
float_test.go 525 // float64 to a float32 (excluding denormal numbers).
839 {"1.401298464e-45", math.SmallestNonzeroFloat32, Above}, // rounded up to smallest denormal
840 {"0x.ffffff8p-149", math.SmallestNonzeroFloat32, Above}, // rounded up to smallest denormal
841 {"0x.0000018p-126", math.SmallestNonzeroFloat32, Above}, // rounded up to smallest denormal
845 {"0x.fffffep-126", math.Float32frombits(0x7fffff), Exact}, // largest denormal
847 // special denormal cases (see issues 14553, 14651)
851 {"0x0.0000011p-126", math.Float32frombits(0x00000001), Above}, // rounded up to smallest denormal
852 {"0x0.0000018p-126", math.Float32frombits(0x00000001), Above}, // rounded up to smallest denormal
854 {"0x1.0000000p-149", math.Float32frombits(0x00000001), Exact}, // smallest denormal
855 {"0x0.0000020p-126", math.Float32frombits(0x00000001), Exact}, // smallest denormal
    [all...]
ratconv_test.go 283 // smallest denormal
325 // Smallest denormal, 2^(-1022-52)
327 // Half of smallest denormal, 2^(-1022-53)
329 // A little more than the exact half of smallest denormal
332 // The exact halfway between smallest normal and largest denormal:
float.go 51 // that correspond to normal (i.e., not denormal) float32 or float64 numbers.
836 dmin = 1 - bias - mbits // -149 smallest unbiased exponent (denormal)
845 // If the exponent is too small, we have a denormal number before
854 // mantissa space. In other words, if the smallest denormal is
856 // If m > 0.5, it is rounded up to 1.0; i.e., the smallest denormal.
903 // Rounding may have caused a denormal number to
906 // denormal number: recompute precision
956 dmin = 1 - bias - mbits // -1074 smallest unbiased exponent (denormal)
965 // If the exponent is too small, we have a denormal number before
974 // mantissa space. In other words, if the smallest denormal i
    [all...]
rat.go 38 case 0: // denormal
134 // Denormal case; lose 'shift' bits of precision.
232 // Denormal case; lose 'shift' bits of precision.
  /external/protobuf/js/binary/
constants.js 266 * The smallest denormal float32 value.
287 * The smallest denormal float64 value.
utils.js 194 // Number is a denormal.
249 // Number is a denormal.
372 // Denormal.
402 // Denormal.
  /prebuilts/go/darwin-x86/src/strconv/
atof_test.go 117 // smallest denormal
197 // Smallest denormal
ftoa.go 241 // Suppose d is not denormal, so that 2^exp <= d < 10^dp.
  /prebuilts/go/linux-x86/src/strconv/
atof_test.go 117 // smallest denormal
197 // Smallest denormal
ftoa.go 241 // Suppose d is not denormal, so that 2^exp <= d < 10^dp.
  /prebuilts/go/darwin-x86/src/runtime/
softfloat64.go 125 // repeat expecting denormal
176 // repeat expecting denormal
  /prebuilts/go/linux-x86/src/runtime/
softfloat64.go 125 // repeat expecting denormal
176 // repeat expecting denormal

Completed in 6676 milliseconds

1 2