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

1 2

  /prebuilts/go/darwin-x86/src/math/
ldexp.go 38 if exp < -1022 { // denormal
  /prebuilts/go/linux-x86/src/math/
ldexp.go 38 if exp < -1022 { // denormal
  /ndk/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/pkg/bootstrap/src/bootstrap/compile/internal/big/
ratconv_test.go 278 // smallest denormal
320 // Smallest denormal, 2^(-1022-52)
322 // Half of smallest denormal, 2^(-1022-53)
324 // A little more than the exact half of smallest denormal
327 // The exact halfway between smallest normal and largest denormal:
float_test.go 527 // float64 to a float32 (excluding denormal numbers).
841 {"1.401298464e-45", math.SmallestNonzeroFloat32, Above}, // rounded up to smallest denormal
842 {"0x.ffffff8p-149", math.SmallestNonzeroFloat32, Above}, // rounded up to smallest denormal
843 {"0x.0000018p-126", math.SmallestNonzeroFloat32, Above}, // rounded up to smallest denormal
847 {"0x.fffffep-126", math.Float32frombits(0x7fffff), Exact}, // largest denormal
915 {"0x0.0000000000000cp-1022", math.SmallestNonzeroFloat64, Above}, // rounded up to smallest denormal
916 {"0x0.0000000000001p-1022", math.SmallestNonzeroFloat64, Exact}, // smallest denormal
919 {"0x.fffffffffffffp-1022", math.Float64frombits(0x000fffffffffffff), Exact}, // largest denormal
1195 // (excluding denormal numbers).
    [all...]
float.go 54 // that correspond to normal (i.e., not denormal) float32 or float64 numbers.
875 dmin = 1 - bias - mbits // -149 smallest unbiased exponent (denormal)
884 // If the exponent is too small, we may have a denormal number
890 // lose numbers rounded up to the smallest denormal.
924 // Rounding may have caused a denormal number to
927 // denormal number
982 dmin = 1 - bias - mbits // -1074 smallest unbiased exponent (denormal)
991 // If the exponent is too small, we may have a denormal number
997 // lose numbers rounded up to the smallest denormal.
1031 // Rounding may have caused a denormal number t
    [all...]
  /prebuilts/go/darwin-x86/src/cmd/compile/internal/big/
ratconv_test.go 275 // smallest denormal
317 // Smallest denormal, 2^(-1022-52)
319 // Half of smallest denormal, 2^(-1022-53)
321 // A little more than the exact half of smallest denormal
324 // The exact halfway between smallest normal and largest denormal:
float_test.go 524 // float64 to a float32 (excluding denormal numbers).
838 {"1.401298464e-45", math.SmallestNonzeroFloat32, Above}, // rounded up to smallest denormal
839 {"0x.ffffff8p-149", math.SmallestNonzeroFloat32, Above}, // rounded up to smallest denormal
840 {"0x.0000018p-126", math.SmallestNonzeroFloat32, Above}, // rounded up to smallest denormal
844 {"0x.fffffep-126", math.Float32frombits(0x7fffff), Exact}, // largest denormal
912 {"0x0.0000000000000cp-1022", math.SmallestNonzeroFloat64, Above}, // rounded up to smallest denormal
913 {"0x0.0000000000001p-1022", math.SmallestNonzeroFloat64, Exact}, // smallest denormal
916 {"0x.fffffffffffffp-1022", math.Float64frombits(0x000fffffffffffff), Exact}, // largest denormal
1192 // (excluding denormal numbers).
    [all...]
float.go 51 // that correspond to normal (i.e., not denormal) float32 or float64 numbers.
872 dmin = 1 - bias - mbits // -149 smallest unbiased exponent (denormal)
881 // If the exponent is too small, we may have a denormal number
887 // lose numbers rounded up to the smallest denormal.
921 // Rounding may have caused a denormal number to
924 // denormal number
979 dmin = 1 - bias - mbits // -1074 smallest unbiased exponent (denormal)
988 // If the exponent is too small, we may have a denormal number
994 // lose numbers rounded up to the smallest denormal.
1028 // Rounding may have caused a denormal number t
    [all...]
  /prebuilts/go/darwin-x86/src/math/big/
ratconv_test.go 277 // smallest denormal
319 // Smallest denormal, 2^(-1022-52)
321 // Half of smallest denormal, 2^(-1022-53)
323 // A little more than the exact half of smallest denormal
326 // The exact halfway between smallest normal and largest denormal:
float_test.go 524 // float64 to a float32 (excluding denormal numbers).
838 {"1.401298464e-45", math.SmallestNonzeroFloat32, Above}, // rounded up to smallest denormal
839 {"0x.ffffff8p-149", math.SmallestNonzeroFloat32, Above}, // rounded up to smallest denormal
840 {"0x.0000018p-126", math.SmallestNonzeroFloat32, Above}, // rounded up to smallest denormal
844 {"0x.fffffep-126", math.Float32frombits(0x7fffff), Exact}, // largest denormal
912 {"0x0.0000000000000cp-1022", math.SmallestNonzeroFloat64, Above}, // rounded up to smallest denormal
913 {"0x0.0000000000001p-1022", math.SmallestNonzeroFloat64, Exact}, // smallest denormal
916 {"0x.fffffffffffffp-1022", math.Float64frombits(0x000fffffffffffff), Exact}, // largest denormal
1192 // (excluding denormal numbers).
    [all...]
float.go 51 // that correspond to normal (i.e., not denormal) float32 or float64 numbers.
872 dmin = 1 - bias - mbits // -149 smallest unbiased exponent (denormal)
881 // If the exponent is too small, we may have a denormal number
887 // lose numbers rounded up to the smallest denormal.
921 // Rounding may have caused a denormal number to
924 // denormal number
979 dmin = 1 - bias - mbits // -1074 smallest unbiased exponent (denormal)
988 // If the exponent is too small, we may have a denormal number
994 // lose numbers rounded up to the smallest denormal.
1028 // Rounding may have caused a denormal number t
    [all...]
  /prebuilts/go/linux-x86/pkg/bootstrap/src/bootstrap/compile/internal/big/
ratconv_test.go 278 // smallest denormal
320 // Smallest denormal, 2^(-1022-52)
322 // Half of smallest denormal, 2^(-1022-53)
324 // A little more than the exact half of smallest denormal
327 // The exact halfway between smallest normal and largest denormal:
float_test.go 527 // float64 to a float32 (excluding denormal numbers).
841 {"1.401298464e-45", math.SmallestNonzeroFloat32, Above}, // rounded up to smallest denormal
842 {"0x.ffffff8p-149", math.SmallestNonzeroFloat32, Above}, // rounded up to smallest denormal
843 {"0x.0000018p-126", math.SmallestNonzeroFloat32, Above}, // rounded up to smallest denormal
847 {"0x.fffffep-126", math.Float32frombits(0x7fffff), Exact}, // largest denormal
915 {"0x0.0000000000000cp-1022", math.SmallestNonzeroFloat64, Above}, // rounded up to smallest denormal
916 {"0x0.0000000000001p-1022", math.SmallestNonzeroFloat64, Exact}, // smallest denormal
919 {"0x.fffffffffffffp-1022", math.Float64frombits(0x000fffffffffffff), Exact}, // largest denormal
1195 // (excluding denormal numbers).
    [all...]
float.go 54 // that correspond to normal (i.e., not denormal) float32 or float64 numbers.
875 dmin = 1 - bias - mbits // -149 smallest unbiased exponent (denormal)
884 // If the exponent is too small, we may have a denormal number
890 // lose numbers rounded up to the smallest denormal.
924 // Rounding may have caused a denormal number to
927 // denormal number
982 dmin = 1 - bias - mbits // -1074 smallest unbiased exponent (denormal)
991 // If the exponent is too small, we may have a denormal number
997 // lose numbers rounded up to the smallest denormal.
1031 // Rounding may have caused a denormal number t
    [all...]
  /prebuilts/go/linux-x86/src/cmd/compile/internal/big/
ratconv_test.go 275 // smallest denormal
317 // Smallest denormal, 2^(-1022-52)
319 // Half of smallest denormal, 2^(-1022-53)
321 // A little more than the exact half of smallest denormal
324 // The exact halfway between smallest normal and largest denormal:
float_test.go 524 // float64 to a float32 (excluding denormal numbers).
838 {"1.401298464e-45", math.SmallestNonzeroFloat32, Above}, // rounded up to smallest denormal
839 {"0x.ffffff8p-149", math.SmallestNonzeroFloat32, Above}, // rounded up to smallest denormal
840 {"0x.0000018p-126", math.SmallestNonzeroFloat32, Above}, // rounded up to smallest denormal
844 {"0x.fffffep-126", math.Float32frombits(0x7fffff), Exact}, // largest denormal
912 {"0x0.0000000000000cp-1022", math.SmallestNonzeroFloat64, Above}, // rounded up to smallest denormal
913 {"0x0.0000000000001p-1022", math.SmallestNonzeroFloat64, Exact}, // smallest denormal
916 {"0x.fffffffffffffp-1022", math.Float64frombits(0x000fffffffffffff), Exact}, // largest denormal
1192 // (excluding denormal numbers).
    [all...]
float.go 51 // that correspond to normal (i.e., not denormal) float32 or float64 numbers.
872 dmin = 1 - bias - mbits // -149 smallest unbiased exponent (denormal)
881 // If the exponent is too small, we may have a denormal number
887 // lose numbers rounded up to the smallest denormal.
921 // Rounding may have caused a denormal number to
924 // denormal number
979 dmin = 1 - bias - mbits // -1074 smallest unbiased exponent (denormal)
988 // If the exponent is too small, we may have a denormal number
994 // lose numbers rounded up to the smallest denormal.
1028 // Rounding may have caused a denormal number t
    [all...]
  /prebuilts/go/linux-x86/src/math/big/
ratconv_test.go 277 // smallest denormal
319 // Smallest denormal, 2^(-1022-52)
321 // Half of smallest denormal, 2^(-1022-53)
323 // A little more than the exact half of smallest denormal
326 // The exact halfway between smallest normal and largest denormal:
float_test.go 524 // float64 to a float32 (excluding denormal numbers).
838 {"1.401298464e-45", math.SmallestNonzeroFloat32, Above}, // rounded up to smallest denormal
839 {"0x.ffffff8p-149", math.SmallestNonzeroFloat32, Above}, // rounded up to smallest denormal
840 {"0x.0000018p-126", math.SmallestNonzeroFloat32, Above}, // rounded up to smallest denormal
844 {"0x.fffffep-126", math.Float32frombits(0x7fffff), Exact}, // largest denormal
912 {"0x0.0000000000000cp-1022", math.SmallestNonzeroFloat64, Above}, // rounded up to smallest denormal
913 {"0x0.0000000000001p-1022", math.SmallestNonzeroFloat64, Exact}, // smallest denormal
916 {"0x.fffffffffffffp-1022", math.Float64frombits(0x000fffffffffffff), Exact}, // largest denormal
1192 // (excluding denormal numbers).
    [all...]
float.go 51 // that correspond to normal (i.e., not denormal) float32 or float64 numbers.
872 dmin = 1 - bias - mbits // -149 smallest unbiased exponent (denormal)
881 // If the exponent is too small, we may have a denormal number
887 // lose numbers rounded up to the smallest denormal.
921 // Rounding may have caused a denormal number to
924 // denormal number
979 dmin = 1 - bias - mbits // -1074 smallest unbiased exponent (denormal)
988 // If the exponent is too small, we may have a denormal number
994 // lose numbers rounded up to the smallest denormal.
1028 // Rounding may have caused a denormal number t
    [all...]
  /prebuilts/go/darwin-x86/src/strconv/
atof_test.go 93 // smallest denormal
173 // Smallest denormal
  /prebuilts/go/linux-x86/src/strconv/
atof_test.go 93 // smallest denormal
173 // Smallest denormal
  /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 1084 milliseconds

1 2