/external/llvm/lib/Support/ |
APInt.cpp | 851 // Extract the mantissa by clearing the top 12 bits (sign + exponent). 852 uint64_t mantissa = (T.I & (~0ULL >> 12)) | 1ULL << 52; 854 // If the exponent doesn't shift all bits out of the mantissa 856 return isNeg ? -APInt(width, mantissa >> (52 - exp)) : 857 APInt(width, mantissa >> (52 - exp)); 859 // If the client didn't provide enough bits for us to shift the mantissa into 864 // Otherwise, we have to shift the mantissa bits up to the right location 865 APInt Tmp(width, mantissa); 912 // Number of bits in mantissa is 52. To obtain the mantissa value, we mus 914 uint64_t mantissa; local [all...] |
/external/llvm/test/Transforms/LoopStrengthReduce/X86/ |
2008-08-14-ShadowIV.ll | 29 ; Unable to eliminate cast because the mantissa bits for double are not enough
|
/external/protobuf/src/google/protobuf/stubs/ |
mathlimits.cc | 112 /* 32 is 5 bits of mantissa error; should be adequate for common errors */ \
|
/external/python/cpython2/Lib/test/ |
test_pow.py | 119 # mantissa bits, though, and thereafer fiveto will be even.
|
/external/python/cpython3/Lib/test/ |
test_pow.py | 116 # mantissa bits, though, and thereafer fiveto will be even.
|
/external/swiftshader/third_party/LLVM/lib/Support/ |
APInt.cpp | 927 // Extract the mantissa by clearing the top 12 bits (sign + exponent). 928 uint64_t mantissa = (T.I & (~0ULL >> 12)) | 1ULL << 52; 930 // If the exponent doesn't shift all bits out of the mantissa 932 return isNeg ? -APInt(width, mantissa >> (52 - exp)) : 933 APInt(width, mantissa >> (52 - exp)); 935 // If the client didn't provide enough bits for us to shift the mantissa into 940 // Otherwise, we have to shift the mantissa bits up to the right location 941 APInt Tmp(width, mantissa); 988 // Number of bits in mantissa is 52. To obtain the mantissa value, we mus [all...] |
/external/swiftshader/third_party/LLVM/test/Transforms/LoopStrengthReduce/ |
2008-08-14-ShadowIV.ll | 25 ; Unable to eliminate cast because the mantissa bits for double are not enough
|
/external/swiftshader/third_party/llvm-subzero/lib/Support/ |
APInt.cpp | 829 // Extract the mantissa by clearing the top 12 bits (sign + exponent). 830 uint64_t mantissa = (T.I & (~0ULL >> 12)) | 1ULL << 52; 832 // If the exponent doesn't shift all bits out of the mantissa 834 return isNeg ? -APInt(width, mantissa >> (52 - exp)) : 835 APInt(width, mantissa >> (52 - exp)); 837 // If the client didn't provide enough bits for us to shift the mantissa into 842 // Otherwise, we have to shift the mantissa bits up to the right location 843 APInt Tmp(width, mantissa); 890 // Number of bits in mantissa is 52. To obtain the mantissa value, we mus 892 uint64_t mantissa; local [all...] |
/external/tensorflow/tensorflow/compiler/xla/ |
primitive_util.h | 32 // The number of mantissa bits in a BF16 value. There is an implicit leading
|
/external/tensorflow/tensorflow/core/framework/ |
bfloat16_test.cc | 103 // has 7 bits mantissa.
|
/external/tensorflow/tensorflow/python/ops/distributions/ |
exponential.py | 125 # is such that the mantissa has an implicit leading 1. Normal, positive
|
/external/valgrind/VEX/pub/ |
libvex_emnote.h | 67 /* change of x87 FP precision away from 64-bit (mantissa) */
|
/external/webrtc/webrtc/modules/audio_processing/aec/ |
aec_core_neon.c | 288 // the mantissa, putting eight into the biased exponent (to shift/ 291 // from the mantissa by substracting it out. 305 const uint32x4_t mantissa = vandq_u32(vreinterpretq_u32_f32(a), local 308 vreinterpretq_f32_u32(vorrq_u32(mantissa,
|
/frameworks/layoutlib/bridge/src/com/android/layoutlib/bridge/impl/ |
ResourceHelper.java | 628 int mantissa = (int)( 631 mantissa = (-mantissa) & TypedValue.COMPLEX_MANTISSA_MASK; 635 | (mantissa<<TypedValue.COMPLEX_MANTISSA_SHIFT);
|
/frameworks/rs/script_api/ |
rs_math.spec | 1113 summary: Binary mantissa and exponent 1115 Returns the binary mantissa and exponent of v, i.e. <code>v == mantissa * 2 ^ exponent</code>. 1117 The mantissa is always between 0.5 (inclusive) and 1.0 (exclusive). 1214 Returns the base two exponent of a value, where the mantissa is between 1219 Because of the difference in mantissa, this number is one less than is returned by @frexp(). 1240 arg: float#1 mantissa, "Mantissa." 1242 summary: Creates a floating point from mantissa and exponent 1244 Returns the floating point created from the mantissa and exponent [all...] |
/hardware/intel/img/hwcomposer/merrifield/ips/anniedale/ |
AnnOverlayPlane.cpp | 481 xcoeffY[pos].mantissa); 490 xcoeffUV[pos].mantissa); 500 ycoeffY[pos].mantissa); 509 ycoeffUV[pos].mantissa);
|
/hardware/intel/img/hwcomposer/moorefield_hdmi/ips/anniedale/ |
AnnOverlayPlane.cpp | 549 xcoeffY[pos].mantissa); 558 xcoeffUV[pos].mantissa); 568 ycoeffY[pos].mantissa); 577 ycoeffUV[pos].mantissa);
|
/prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
test_pow.py | 119 # mantissa bits, though, and thereafer fiveto will be even.
|
/prebuilts/gdb/linux-x86/lib/python2.7/test/ |
test_pow.py | 119 # mantissa bits, though, and thereafer fiveto will be even.
|
/prebuilts/go/darwin-x86/src/math/big/ |
example_test.go | 100 // We'll do computations with 200 bits of precision in the mantissa.
|
floatexample_test.go | 125 // sample operands above require 2 bits to represent mantissa
|
rat_test.go | 373 // Generate a distribution of (sign, mantissa, exp) values 409 t.Errorf("(input was mantissa %#x, exp %d; f = %g (%b); f ~ %g; r = %v)", 421 // Generate a distribution of (sign, mantissa, exp) values 457 t.Errorf("(input was mantissa %#x, exp %d; f = %g (%b); f ~ %g; r = %v)",
|
sqrt_test.go | 14 // TestFloatSqrt64 tests that Float.Sqrt of numbers with 53bit mantissa
|
/prebuilts/go/darwin-x86/src/runtime/ |
softfloat64_test.go | 39 1.9999999999999998, // all 1s mantissa
|
/prebuilts/go/linux-x86/src/math/big/ |
example_test.go | 100 // We'll do computations with 200 bits of precision in the mantissa.
|