/external/mesa3d/src/gallium/auxiliary/util/ |
u_math.h | 167 /* mpart = log2_table[mantissa*LOG2_TABLE_SCALE + 0.5] */
|
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/ |
builder_misc.cpp | 42 /// number of mantissa bits. 50 // Extract the sign, exponent, and mantissa 90 // convert exponent and mantissa to 16 bit format 132 if ((exp == 0) && (mant != 0)) // Adjust exponent and mantissa for denormals [all...] |
/external/protobuf/js/binary/ |
arith.js | 169 // precision, thus losing precision because of the 53-bit mantissa of
|
/external/protobuf/src/google/protobuf/stubs/ |
mathlimits.h | 100 // Number of decimal digits of mantissa precision.
|
/external/python/cpython2/Doc/library/ |
math.rst | 81 Return the mantissa and exponent of *x* as the pair ``(m, e)``. *m* is a float
|
/external/skia/src/core/ |
SkICC.cpp | 285 // The use of double is necessary to accomodate the full potential 32-bit mantissa of the 16.16
|
/external/skqp/src/core/ |
SkICC.cpp | 285 // The use of double is necessary to accomodate the full potential 32-bit mantissa of the 16.16
|
/external/tensorflow/tensorflow/compiler/xla/ |
xla.proto | 48 // Exponent and mantissa bit counts for the reduced precision.
|
/external/v8/src/ |
conversions.cc | 425 // fractional part. 1024 characters for the exponent and 52 for the mantissa
|
/external/valgrind/VEX/priv/ |
host_generic_maddf.c | 288 or equal to DBL_MIN / 2, then v.d * 0x1p-106 shifts mantissa
|
host_arm_defs.h | 309 (-1)^S * 2^exp * mantissa 310 where S = a, exp = UInt(B:c:d) - 3, mantissa = (16 + UInt(e:f:g:h)) / 16 [all...] |
/frameworks/av/media/libstagefright/codecs/amrwbenc/src/ |
dtx.c | 315 /* convert exponent and mantissa to Word16 Q7. Q7 is used to simplify averaging in dtx_enc */
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/lib/gcc/x86_64-w64-mingw32/4.8.3/plugin/include/ |
real.h | 178 composite, i.e. may contain non-consecutive mantissa bits, in which
|
/prebuilts/go/darwin-x86/src/math/big/ |
natconv_test.go | 115 // error: no mantissa
|
/prebuilts/go/darwin-x86/src/strconv/testdata/ |
testfp.txt | 121 # paper. Those entries originally read p-150 and had a mantissa
|
/prebuilts/go/linux-x86/src/math/big/ |
natconv_test.go | 115 // error: no mantissa
|
/prebuilts/go/linux-x86/src/strconv/testdata/ |
testfp.txt | 121 # paper. Those entries originally read p-150 and had a mantissa
|
/external/capstone/arch/ARM/ |
ARMAddressingModes.h | 653 uint8_t Mantissa = Imm & 0xf; 665 FPUnion.I |= Mantissa << 19;
|
/external/swiftshader/include/GLES/ |
glext.h | 390 typedef GLbitfield (GL_APIENTRYP PFNGLQUERYMATRIXXOESPROC) (GLfixed *mantissa, GLint *exponent); 392 GL_API GLbitfield GL_APIENTRY glQueryMatrixxOES (GLfixed *mantissa, GLint *exponent); [all...] |
/external/swiftshader/third_party/LLVM/lib/VMCore/ |
Type.cpp | 153 /// getFPMantissaWidth - Return the width of the mantissa of this type. This 155 /// have a stable mantissa (e.g. ppc long double), this method returns -1.
|
/frameworks/base/tools/aapt2/ |
ResourceValues.cpp | 425 const uint64_t mantissa = uint64_t{(complex_value >> Res_value::COMPLEX_MANTISSA_SHIFT) & local 428 const float value = mantissa * (1.0f / (1 << 23));
|
/frameworks/native/opengl/include/GLES/ |
glext.h | 386 typedef GLbitfield (GL_APIENTRYP PFNGLQUERYMATRIXXOESPROC) (GLfixed *mantissa, GLint *exponent); 388 GL_API GLbitfield GL_APIENTRY glQueryMatrixxOES (GLfixed *mantissa, GLint *exponent); [all...] |
/external/protobuf/src/google/protobuf/compiler/js/ |
js_generator.cc | 696 // ensure that the mantissa (portion prior to the "e") has at least one 701 string mantissa = result.substr(0, exp_pos); local 704 // Add ".0" to mantissa if no fractional part exists. 705 if (mantissa.find('.') == string::npos) { 706 mantissa += ".0"; 723 return mantissa + "E" + string(exp_neg ? "-" : "") + exponent; [all...] |
/external/python/cpython2/Doc/whatsnew/ |
2.4.rst | 490 * The mantissa, which is a single-digit binary number followed by a fractional 497 For example, the number 1.25 has positive sign, a mantissa value of 1.01 (in 499 The number 5 has the same sign and mantissa, but the exponent is 2 because the 500 mantissa is multiplied by 4 (2 to the power of the exponent 2); 1.25 \* 4 equals 505 64-bit IEEE 754 number, which uses 52 bits of space for the mantissa. This 555 You can also provide tuples containing the sign, the mantissa represented as a [all...] |
/external/python/cpython3/Doc/whatsnew/ |
2.4.rst | 490 * The mantissa, which is a single-digit binary number followed by a fractional 497 For example, the number 1.25 has positive sign, a mantissa value of 1.01 (in 499 The number 5 has the same sign and mantissa, but the exponent is 2 because the 500 mantissa is multiplied by 4 (2 to the power of the exponent 2); 1.25 \* 4 equals 505 64-bit IEEE 754 number, which uses 52 bits of space for the mantissa. This 555 You can also provide tuples containing the sign, the mantissa represented as a [all...] |