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

<<11121314151617181920>>

  /external/v8/src/
conversions-inl.h 62 // Copy least significant 32 bits of mantissa.
202 // because a double might not have enough mantissa bits for it.
  /external/deqp/modules/gles3/functional/
es3fShaderCommonFunctionTests.cpp 103 return de::max(0, inExp-outExp); // Lost due to mantissa shift.
813 const deUint32 mantissa = !isInf ? ((1u<<22) | (rnd.getUint32() & mantissaMask)) : 0; local
816 const deUint32 value = (sign << 31) | (exp << 23) | mantissa;
894 const deUint32 mantissa = !isInf ? ((1u<<22) | (rnd.getUint32() & mantissaMask)) : 0; local
897 const deUint32 value = (sign << 31) | (exp << 23) | mantissa;
    [all...]
es3fShaderDerivateTests.cpp 292 return tcu::Float32::construct(+1, inputFloat.exponent(), inputFloat.mantissa() & ~truncMask).asFloat();
297 if (inputFloat.mantissa() & truncMask)
300 return tcu::Float32::construct(-1, inputFloat.exponent(), inputFloat.mantissa() & ~truncMask).asFloat() - getSingleULPForExponent(inputFloat.exponent(), numAccurateBits);
323 INTERPOLATION_LOST_BITS = 3, // number mantissa of bits allowed to be lost in varying interpolation
    [all...]
  /frameworks/base/libs/androidfw/include/androidfw/
ResourceTypes.h 354 // appears in the mantissa. This give us 4 possible fixed point
359 // The mantissa is an integral number -- i.e., 0xnnnnnn.0
361 // The mantissa magnitude is 16 bits -- i.e, 0xnnnn.nn
363 // The mantissa magnitude is 8 bits -- i.e, 0xnn.nnnn
365 // The mantissa magnitude is 0 bits -- i.e, 0x0.nnnnnn
    [all...]
  /external/v8/src/mips/
simulator-mips.cc 2874 uint64_t mantissa = classed & 0x000fffffffffffff; local
3189 uint32_t mantissa = classed & 0x007fffff; local
    [all...]
code-stubs-mips.cc 145 // Express exponent as delta to (number of mantissa bits + 31).
174 // Set the implicit 1 before the mantissa part in input_high.
178 // Shift the mantissa bits to the correct position.
179 // We don't need to clear non-mantissa bits as they will be shifted away.
185 // Replace the shifted bits with bits from the lower mantissa word.
285 // and not all mantissa bits (0..51) clear.
293 // Shift out flag and all exponent bits, retaining only mantissa.
295 // Or with all low-bits of mantissa.
299 // if all bits in mantissa are zero (it's an Infinity) and non-zero if
    [all...]
  /frameworks/base/core/jni/
com_google_android_gles_jni_GLImpl.cpp 4175 GLfixed *mantissa = (GLfixed *) 0; local
4259 GLfixed *mantissa = (GLfixed *) 0; local
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/util/
MathUtils.java     [all...]
  /external/v8/src/mips64/
code-stubs-mips64.cc 143 // Express exponent as delta to (number of mantissa bits + 31).
172 // Set the implicit 1 before the mantissa part in input_high.
176 // Shift the mantissa bits to the correct position.
177 // We don't need to clear non-mantissa bits as they will be shifted away.
183 // Replace the shifted bits with bits from the lower mantissa word.
282 // and not all mantissa bits (0..51) clear.
290 // Shift out flag and all exponent bits, retaining only mantissa.
292 // Or with all low-bits of mantissa.
296 // if all bits in mantissa are zero (it's an Infinity) and non-zero if
    [all...]
  /device/generic/goldfish-opengl/system/GLESv1_enc/
gl_entry.cpp 246 GLbitfield glQueryMatrixxOES(GLfixed* mantissa, GLint* exponent);
    [all...]
  /external/aac/libSBRdec/src/
HFgen_preFlat.cpp 564 * \param[out] x output polynomial coefficients (mantissa)
722 * \param[in] y input vector (mantissa)
724 * \param[out] p output polynomial coefficients (mantissa)
    [all...]
  /hardware/invensense/6515/libsensors_iio/software/core/mllite/
ml_math_func.c 726 /** Calculates 1/square-root of a fixed-point number (30 bit mantissa, positive): Q1.30
806 /** Calculates square-root of a fixed-point number (30 bit mantissa, positive)
870 /** Calculates 1/x of a fixed-point number (30 bit mantissa)
  /hardware/invensense/65xx/libsensors_iio/software/core/mllite/
ml_math_func.c 726 /** Calculates 1/square-root of a fixed-point number (30 bit mantissa, positive): Q1.30
806 /** Calculates square-root of a fixed-point number (30 bit mantissa, positive)
870 /** Calculates 1/x of a fixed-point number (30 bit mantissa)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/share/info/
libquadmath.info 77 'FLT128_MANT_DIG': number of digits in the mantissa (bit precision)
80 'FLT128_DIG': number of decimal digits in the mantissa
133 'frexpq': extract mantissa and exponent
    [all...]
  /external/apache-commons-math/src/main/java/org/apache/commons/math/ode/
ContinuousOutputModel.java 248 * allowed (it was not allowed up to version 5.9 of Mantissa), but
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderPackingFunctionTests.cpp 636 const deUint32 mantissa = rnd.getUint32() & ((1<<23)-1); local
638 v[c] = tcu::Float32::construct(s, exp ? exp : 1 /* avoid denormals */, (1u<<23) | mantissa).asFloat();
757 const deUint32 mantissa = rnd.getUint32() & ((1<<mantBits)-1); local
758 const deUint16 value = tcu::Float16::construct(s, exp ? exp : 1 /* avoid denorm */, (deUint16)((1u<<10) | mantissa)).bits();
    [all...]
  /external/deqp/external/vulkancts/modules/vulkan/shaderrender/
vktShaderRenderDerivateTests.cpp 261 return tcu::Float32::construct(+1, inputFloat.exponent(), inputFloat.mantissa() & ~truncMask).asFloat();
266 if (inputFloat.mantissa() & truncMask)
269 return tcu::Float32::construct(-1, inputFloat.exponent(), inputFloat.mantissa() & ~truncMask).asFloat() - getSingleULPForExponent(inputFloat.exponent(), numAccurateBits);
292 INTERPOLATION_LOST_BITS = 3, // number mantissa of bits allowed to be lost in varying interpolation
    [all...]
  /external/deqp/modules/gles2/accuracy/
es2aVaryingInterpolationTests.cpp 291 // Exp = Emax-3, Mantissa = 0
  /external/deqp/modules/gles3/accuracy/
es3aVaryingInterpolationTests.cpp 297 // Exp = Emax-3, Mantissa = 0
  /external/icu/android_icu4j/src/main/java/android/icu/number/
NumberPropertyMapper.java 259 // Patterns like "#.##E0" (no zeros in the mantissa), which mean round to maxFrac+1
  /external/icu/icu4c/source/i18n/unicode/
utmscale.h 178 * <code>long double</code> (80 bits -- 64 bit mantissa), but that is not supported on most systems.
  /external/icu/icu4c/source/test/intltest/
callimts.cpp 130 // This is 2^52 - 1, the largest allowable mantissa with a 0
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/
DecimalFormat.java 183 * <td>Separates mantissa and exponent in scientific notation.
378 * <p>Numbers in scientific notation are expressed as the product of a mantissa and a
380 * mantissa is typically in the half-open interval [1.0, 10.0) or sometimes [0.0, 1.0),
409 * number of integer and fraction digits that will be shown in the mantissa; it does not
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/number/
NumberPropertyMapper.java 258 // Patterns like "#.##E0" (no zeros in the mantissa), which mean round to maxFrac+1
  /external/mesa3d/src/gallium/auxiliary/gallivm/
lp_bld_format_srgb.c 150 * - use table (based on exponent/highest order mantissa bits) and do

Completed in 6834 milliseconds

<<11121314151617181920>>