HomeSort by relevance Sort by last modified time
    Searched full:mantissa (Results 301 - 325 of 670) sorted by null

<<11121314151617181920>>

  /external/deqp/modules/gles3/functional/
es3fShaderPrecisionTests.cpp 302 const int numLostBits = de::max(de::max(in0Exp-resExp, in1Exp-resExp), 0); // Lost due to mantissa shift.
307 m_testCtx.getLog() << TestLog::Message << "Assuming " << mantissaBits << " mantissa bits, " << numLostBits << " bits lost in operation, and " << roundingUlpError << " ULP rounding error."
837 // Exp = Emax-2, Mantissa = 0
    [all...]
  /external/aac/libAACdec/src/
block.cpp 290 /* Add enough mantissa head room such that the spectrum is still
574 mantissa : Sign(x_quant)*( 2^(lsb/4)*abs(s_quant)^(4/3))
852 FIXP_DBL mantissa = MantissaTable[lsb][0]; local
862 scaleValue(fMultDiv2(noiseVal_pos, mantissa), scale1);
    [all...]
block.h 244 * \return the exponent of the result (mantissa) stored into *pValue.
usacdec_lpc.h 178 * \param gain (o) pointer were the gain mantissa is stored into.
  /external/aac/libFDK/include/
FDK_lpc.h 211 * \param pPredictionGain_m prediction gain mantissa
  /external/deqp/modules/gles31/functional/
es31fShaderPackingFunctionTests.cpp 568 const deUint32 mantissa = rnd.getUint32() & ((1<<23)-1); local
570 v[c] = tcu::Float32::construct(s, exp ? exp : 1 /* avoid denormals */, (1u<<23) | mantissa).asFloat();
674 const deUint32 mantissa = rnd.getUint32() & ((1<<mantBits)-1); local
675 const deUint16 value = tcu::Float16::construct(s, exp ? exp : 1 /* avoid denorm */, (deUint16)((1u<<10) | mantissa)).bits();
    [all...]
  /external/ltp/testcases/misc/math/float/
thread_code.c 222 /* frexp case: compares mantissa and exponent to expected datas */
  /external/sonivox/arm-wt-22k/lib_src/
eas_math.c 137 /* extract mantissa and restore implied 1 bit */
  /external/swiftshader/third_party/LLVM/include/llvm/Bitcode/
LLVMBitCodes.h 107 TYPE_CODE_FP128 = 14, // LONG DOUBLE (112 bit mantissa)
  /external/tensorflow/tensorflow/contrib/distributions/python/ops/
gumbel.py 177 # is such that the mantissa has an implicit leading 1. Normal, positive
logistic.py 172 # is such that the mantissa has an implicit leading 1. Normal, positive
  /frameworks/av/media/libstagefright/codecs/amrwbenc/src/
levinson.c 79 * Alpha Normalized -> mantissa in Q31 plus exponent *
  /frameworks/base/opengl/java/com/google/android/gles_jni/
GLImpl.java 1150 // C function GLbitfield glQueryMatrixxOES ( GLfixed *mantissa, GLint *exponent )
1153 int[] mantissa,
1159 // C function GLbitfield glQueryMatrixxOES ( GLfixed *mantissa, GLint *exponent )
1162 java.nio.IntBuffer mantissa,
    [all...]
  /frameworks/rs/tests/java_api/RSUnitTests/src/com/android/rs/unittest/
math_fp16.rs 358 // No. of possible values for mantissa = 2 ^ 10 = 1024
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
msasn1.h 342 ASN1intx_t mantissa; member in struct:tagASN1real_t
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib-dynload/
math.so 
  /external/deqp/external/openglcts/modules/gles31/
es31cVertexAttribBindingTests.cpp 248 unsigned int mantissa; local
252 /* get mantissa */
253 mantissa = x & ((1 << 23) - 1);
259 if (mantissa && (exp == FLOAT_MAX_BIASED_EXP))
262 mantissa = (1 << 23) - 1;
267 mantissa = 0;
269 hf = (GLhalf)((((GLhalf)sign) << 15) | (GLhalf)(HALF_FLOAT_MAX_BIASED_EXP) | (GLhalf)(mantissa >> 13));
276 mantissa |= (1 << 23);
277 mantissa >>= (14 + exp);
278 hf = (GLhalf)((((GLhalf)sign) << 15) | (GLhalf)(mantissa));
    [all...]
  /external/v8/src/arm64/
code-stubs-arm64.cc 103 // the mantissa gets shifted completely out of the int32_t result.
118 // Isolate the mantissa bits, and set the implicit '1'.
119 Register mantissa = scratch2; local
120 __ Ubfx(mantissa, result, 0, HeapNumber::kMantissaBits);
121 __ Orr(mantissa, mantissa, 1UL << HeapNumber::kMantissaBits);
123 // Negate the mantissa if necessary.
125 __ Cneg(mantissa, mantissa, ne);
127 // Shift the mantissa bits in the correct place. We know that we have to shif
    [all...]
  /device/generic/goldfish-opengl/tests/gles_android_wrapper/
gles.cpp 1151 GLbitfield glQueryMatrixxOES(GLfixed mantissa[16], GLint exponent[16])
1153 return getDispatch()->glQueryMatrixxOES(mantissa, exponent);
    [all...]
  /external/icu/icu4c/source/i18n/
decimalformatpattern.cpp 300 // 1. Require at least one mantissa pattern digit
301 // 2. Disallow "#+ @" in mantissa
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/
DecimalFormatSymbols.java 494 // * {@icu} Returns the string used to separate the mantissa from the exponent.
506 // * {@icu} Sets the string used to separate the mantissa from the exponent.
  /external/llvm/lib/Transforms/Scalar/
Float2Int.cpp 403 // Do we need more bits than are in the mantissa of the type we converted
404 // to? semanticsPrecision returns the number of mantissa bits plus one