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

<<11121314151617181920>>

  /external/deqp/modules/gles3/functional/
es3fShaderPackingFunctionTests.cpp 564 const deUint32 mantissa = rnd.getUint32() & ((1<<23)-1); local
566 v[c] = tcu::Float32::construct(s, exp ? exp : 1 /* avoid denormals */, (1u<<23) | mantissa).asFloat();
670 const deUint32 mantissa = rnd.getUint32() & ((1<<mantBits)-1); local
671 const deUint16 value = tcu::Float16::construct(s, exp ? exp : 1 /* avoid denorm */, (deUint16)((1u<<10) | mantissa)).bits();
  /external/eigen/Eigen/src/Core/
StableNorm.h 77 it = std::numeric_limits<RealScalar>::digits; // number of base-beta digits in mantissa
  /external/eigen/test/
stable_norm.cpp 35 it = std::numeric_limits<RealScalar>::digits; // number of base-beta digits in mantissa
  /external/skia/tests/
SkRasterPipelineTest.cpp 83 // Remember, a float is 1-8-23 (sign-exponent-mantissa) with 127 exponent bias.
  /external/skqp/tests/
SkRasterPipelineTest.cpp 83 // Remember, a float is 1-8-23 (sign-exponent-mantissa) with 127 exponent bias.
  /external/syslinux/gpxe/src/drivers/net/ath5k/
ath5k_reset.c 80 * mantissa and provide these values on hw.
88 /* Get exponent and mantissa and set it */
119 /* Get mantissa (significant digits)
125 * and mantissa (remove scaling) and set them on hw */
  /external/tensorflow/tensorflow/contrib/distributions/python/ops/
geometric.py 132 # is such that the mantissa has an implicit leading 1. Normal, positive
  /external/tensorflow/tensorflow/python/kernel_tests/
sparse_matmul_op_test.py 169 # Note: bfloat16 only has 7 mantissa bits, versus float32 with
  /external/webrtc/webrtc/modules/audio_processing/aec/
aec_core_sse2.c 254 // the mantissa, putting eight into the biased exponent (to shift/
257 // from the mantissa by substracting it out.
276 const __m128 mantissa = _mm_and_ps(a, *((__m128*)mantissa_mask)); local
278 _mm_or_ps(mantissa, *((__m128*)zero_biased_exponent_is_one));
  /frameworks/base/opengl/java/android/opengl/
GLErrorWrapper.java 946 public int glQueryMatrixxOES(int[] mantissa, int mantissaOffset,
949 int valid = mgl10Ext.glQueryMatrixxOES(mantissa, mantissaOffset,
955 public int glQueryMatrixxOES(IntBuffer mantissa, IntBuffer exponent) {
957 int valid = mgl10Ext.glQueryMatrixxOES(mantissa, exponent);
    [all...]
  /hardware/intel/img/psb_video/src/
psb_overlay.h 254 uint16_t mantissa; member in struct:__anon47912
  /packages/apps/Test/connectivity/sl4n/rapidjson/include/rapidjson/internal/
strtod.h 196 if (rounded.f & (DiyFp::kDpHiddenBit << 1)) { // rounding overflows mantissa (issue #340)
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
float.h 259 word to 0x37f (64 bit mantissa precison rather than 53 bit).
  /prebuilts/go/darwin-x86/src/math/big/
intconv.go 179 // determine mantissa
ratconv.go 80 // mantissa
  /prebuilts/go/darwin-x86/src/math/
log1p.go 167 if iu < 0x0006a09e667f3bcd { // mantissa of Sqrt(2)
  /prebuilts/go/linux-x86/src/math/big/
intconv.go 179 // determine mantissa
ratconv.go 80 // mantissa
  /prebuilts/go/linux-x86/src/math/
log1p.go 167 if iu < 0x0006a09e667f3bcd { // mantissa of Sqrt(2)
  /external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/
vktShaderCommonFunctionTests.cpp 111 return de::max(0, inExp-outExp); // Lost due to mantissa shift.
229 // remove unrepresentable mantissa bits
380 // Construct float that has exactly the mantissa, and exponent of -1.
381 *significand = tcu::Float32::construct(fpValue.sign(), -1, fpValue.mantissa()).asFloat();
401 return tcu::Float32::construct(mant.sign(), exponent+mant.exponent(), mant.mantissa()).asFloat();
1017 const deUint32 mantissa = !isInf ? ((1u<<22) | (rnd.getUint32() & mantissaMask)) : 0; local
1114 const deUint32 mantissa = !isInf ? ((1u<<22) | (rnd.getUint32() & mantissaMask)) : 0; local
2168 const deUint32 mantissa = (1u<<23) | (rnd.getUint32() & ((1u<<23)-1)); local
    [all...]
  /external/deqp/modules/gles31/functional/
es31fShaderCommonFunctionTests.cpp 107 return de::max(0, inExp-outExp); // Lost due to mantissa shift.
225 // remove unrepresentable mantissa bits
891 const deUint32 mantissa = !isInf ? ((1u<<22) | (rnd.getUint32() & mantissaMask)) : 0; local
894 const deUint32 value = (sign << 31) | (exp << 23) | mantissa;
974 const deUint32 mantissa = !isInf ? ((1u<<22) | (rnd.getUint32() & mantissaMask)) : 0; local
    [all...]
  /external/eigen/Eigen/src/Core/arch/CUDA/
Half.h 314 // use a magic value to align our 10 mantissa bits at the bottom of
322 unsigned int mant_odd = (f.u >> 13) & 1; // resulting mantissa is odd
350 o.u = (h.x & 0x7fff) << 13; // exponent/mantissa bits
  /external/libxaac/decoder/
ixheaacd_env_dec.c 321 WORD32 mantissa; local
332 mantissa = mant_arr[(exponent & amp_res_1)];
335 *ptr_env_sf++ = (WORD16)(mantissa | (exponent & MASK_FOR_EXP));
  /external/llvm/include/llvm/IR/
Type.h 61 FP128TyID, ///< 5: 128-bit floating point type (112-bit mantissa)
284 /// Return the width of the mantissa of this type. This is only valid on
285 /// floating-point types. If the FP type does not have a stable mantissa (e.g.
  /external/swiftshader/third_party/LLVM/include/llvm/
Type.h 53 FP128TyID, ///< 4: 128-bit floating point type (112-bit mantissa)
267 /// getFPMantissaWidth - Return the width of the mantissa of this type. This
269 /// have a stable mantissa (e.g. ppc long double), this method returns -1.

Completed in 2031 milliseconds

<<11121314151617181920>>