/external/clang/test/SemaCXX/ |
D | neon-vector-types.cpp | 5 typedef float Float32; typedef 14 int foo (const Float32 *realBufPtr) { in foo() 19 MP4Err autoCorrelation2nd_Neon(Float32 *alphar, Float32 *alphai, in autoCorrelation2nd_Neon() 20 const Float32 *realBufPtr, in autoCorrelation2nd_Neon() 21 const Float32 *imagBufPtr, in autoCorrelation2nd_Neon()
|
/external/deqp/modules/gles31/functional/ |
D | es31fShaderCommonFunctionTests.cpp | 104 const int inExp = tcu::Float32(input).exponent(); in numBitsLostInOp() 105 const int outExp = tcu::Float32(output).exponent(); in numBitsLostInOp() 112 const deUint32 aBits = tcu::Float32(a).bits(); in getUlpDiff() 113 const deUint32 bBits = tcu::Float32(b).bits(); in getUlpDiff() 119 if (tcu::Float32(a).isZero()) in getUlpDiffIgnoreZeroSign() 120 return getUlpDiff(tcu::Float32::construct(tcu::Float32(b).sign(), 0, 0).asFloat(), b); in getUlpDiffIgnoreZeroSign() 121 else if (tcu::Float32(b).isZero()) in getUlpDiffIgnoreZeroSign() 122 return getUlpDiff(a, tcu::Float32::construct(tcu::Float32(a).sign(), 0, 0).asFloat()); in getUlpDiffIgnoreZeroSign() 136 const int exp = tcu::Float32(value).exponent(); in getEpsFromMaxUlpDiff() 137 …return tcu::Float32::construct(+1, exp, (1u<<23) | ulpDiff).asFloat() - tcu::Float32::construct(+1… in getEpsFromMaxUlpDiff() [all …]
|
D | es31fShaderPackingFunctionTests.cpp | 49 const deUint32 aBits = tcu::Float32(a).bits(); in getUlpDiff() 50 const deUint32 bBits = tcu::Float32(b).bits(); in getUlpDiff() 62 return str << v.value << " / " << tcu::toHex(tcu::Float32(v.value).bits()); in operator <<() 570 …v[c] = tcu::Float32::construct(s, exp ? exp : 1 /* avoid denormals */, (1u<<23) | mantissa).asFloa… in iterate() 710 const deUint32 refBits0 = tcu::Float32(ref0).bits(); in iterate() 711 const deUint32 refBits1 = tcu::Float32(ref1).bits(); in iterate() 712 const deUint32 resBits0 = tcu::Float32(res0).bits(); in iterate() 713 const deUint32 resBits1 = tcu::Float32(res1).bits(); in iterate()
|
D | es31fShaderIntegerFunctionTests.cpp | 66 return str << v.value << " / " << tcu::toHex(tcu::Float32(v.value).bits()); in operator <<()
|
D | es31fShaderImageLoadStoreTests.cpp | 1387 …replaceBadFloatReinterpretValues<TextureFormat::FLOAT, tcu::Float32, deUint32>(reference, m_imageF… in iterate()
|
/external/deqp/modules/gles3/functional/ |
D | es3fShaderCommonFunctionTests.cpp | 100 const int inExp = tcu::Float32(input).exponent(); in numBitsLostInOp() 101 const int outExp = tcu::Float32(output).exponent(); in numBitsLostInOp() 108 const deUint32 aBits = tcu::Float32(a).bits(); in getUlpDiff() 109 const deUint32 bBits = tcu::Float32(b).bits(); in getUlpDiff() 115 if (tcu::Float32(a).isZero()) in getUlpDiffIgnoreZeroSign() 116 return getUlpDiff(tcu::Float32::construct(tcu::Float32(b).sign(), 0, 0).asFloat(), b); in getUlpDiffIgnoreZeroSign() 117 else if (tcu::Float32(b).isZero()) in getUlpDiffIgnoreZeroSign() 118 return getUlpDiff(a, tcu::Float32::construct(tcu::Float32(a).sign(), 0, 0).asFloat()); in getUlpDiffIgnoreZeroSign() 132 const int exp = tcu::Float32(value).exponent(); in getEpsFromMaxUlpDiff() 133 …return tcu::Float32::construct(+1, exp, (1u<<23) | ulpDiff).asFloat() - tcu::Float32::construct(+1… in getEpsFromMaxUlpDiff() [all …]
|
D | es3fShaderDerivateTests.cpp | 207 return tcu::UVec4(tcu::Float32(v[0]).exponentBits(), in getCompExpBits() 208 tcu::Float32(v[1]).exponentBits(), in getCompExpBits() 209 tcu::Float32(v[2]).exponentBits(), in getCompExpBits() 210 tcu::Float32(v[3]).exponentBits()); in getCompExpBits() 217 const int exp = tcu::Float32(value).exponent(); in computeFloatingPointError() 219 …return tcu::Float32::construct(+1, exp, (1u<<23) | mask).asFloat() - tcu::Float32::construct(+1, e… in computeFloatingPointError() 255 …return tcu::Float32::construct(+1, exp, (1<<23) | (1 << ulpBitNdx)).asFloat() - tcu::Float32::cons… in getSingleULPForExponent() 260 return tcu::Float32::construct(+1, exp, (1<<23)).asFloat(); in getSingleULPForExponent() 266 const int exp = tcu::Float32(value).exponent(); in getSingleULPForValue() 278 const tcu::Float32 inputFloat = tcu::Float32(value); in convertFloatFlushToZeroRtn() [all …]
|
D | es3fShaderPrecisionTests.cpp | 320 const int in0Exp = tcu::Float32(in0).exponent(); in compare() 321 const int in1Exp = tcu::Float32(in1).exponent(); in compare() 322 const int resExp = tcu::Float32(result).exponent(); in compare() 392 << "in0 = " << in0 << " / " << tcu::toHex(tcu::Float32(in0).bits()) in iterate() 393 << ", in1 = " << in1 << " / " << tcu::toHex(tcu::Float32(in1).bits()) in iterate() 395 …<< TestLog::Message << " reference = " << refF << " / " << tcu::toHex(tcu::Float32(refF).bits()) … in iterate() 405 …log << TestLog::Message << " result = " << pixels[0] << " / " << tcu::toHex(tcu::Float32(pixels[0… in iterate() 414 const deUint32 firstPixelBits = tcu::Float32(pixels[0]).bits(); in iterate() 421 const deUint32 pixelBits = tcu::Float32(pixels[(y*FRAMEBUFFER_WIDTH + x)*4]).bits(); in iterate() 864 float minF32 = tcu::Float32((1u<<31) | (0xfdu<<23) | 0x0u).asFloat(); in init() [all …]
|
D | es3fShaderPackingFunctionTests.cpp | 49 const deUint32 aBits = tcu::Float32(a).bits(); in getUlpDiff() 50 const deUint32 bBits = tcu::Float32(b).bits(); in getUlpDiff() 62 return str << v.value << " / " << tcu::toHex(tcu::Float32(v.value).bits()); in operator <<() 566 …v[c] = tcu::Float32::construct(s, exp ? exp : 1 /* avoid denormals */, (1u<<23) | mantissa).asFloa… in iterate() 706 const deUint32 refBits0 = tcu::Float32(ref0).bits(); in iterate() 707 const deUint32 refBits1 = tcu::Float32(ref1).bits(); in iterate() 708 const deUint32 resBits0 = tcu::Float32(res0).bits(); in iterate() 709 const deUint32 resBits1 = tcu::Float32(res1).bits(); in iterate()
|
/external/deqp/framework/common/ |
D | tcuTexVerifierUtil.cpp | 36 const int exp = tcu::Float32(value).exponent(); in computeFloatingPointError() 38 …return Float32::construct(+1, exp, (1u<<23) | mask).asFloat() - Float32::construct(+1, exp, 1u<<23… in computeFloatingPointError()
|
D | tcuFloat.hpp | 132 typedef Float<deUint32, 8, 23, 127, FLOAT_HAS_SIGN|FLOAT_SUPPORT_DENORM> Float32; //!< IEEE 754 3… typedef 153 *this = convert(Float32(u32)); in Float() 169 deUint32 u32 = Float32::convert(*this).bits(); in asFloat()
|
D | tcuImageCompare.cpp | 416 const tcu::Float32 f(x); in getPositionOfIEEEFloatWithoutDenormals()
|
/external/deqp/modules/gles2/accuracy/ |
D | es2aVaryingInterpolationTests.cpp | 134 tcu::Float32 fp32(val); in isValidFloat() 291 float minF32 = tcu::Float32((0u<<31) | (0xfcu<<23) | 0x0u).asFloat(); in init() 292 float maxF32 = tcu::Float32((1u<<31) | (0xfcu<<23) | 0x0u).asFloat(); in init()
|
/external/deqp/modules/gles3/accuracy/ |
D | es3aVaryingInterpolationTests.cpp | 137 tcu::Float32 fp32(val); in isValidFloat() 298 float minF32 = tcu::Float32((0u<<31) | (0xfcu<<23) | 0x0u).asFloat(); in init() 299 float maxF32 = tcu::Float32((1u<<31) | (0xfcu<<23) | 0x0u).asFloat(); in init()
|
/external/clang/include/clang/Basic/ |
D | TargetBuiltins.h | 117 Float32, enumerator
|
/external/deqp/modules/internal/ |
D | ditFrameworkTests.cpp | 558 const deUint32 ab = tcu::Float32(a).bits(); in ulpDiff() 559 const deUint32 bb = tcu::Float32(b).bits(); in ulpDiff() 646 v = tcu::Float32(rnd.getUint32()).asFloat(); in ConstantInterpolationTest()
|
/external/v8/src/ |
D | typedarray.js | 391 FUNCTION(Float32)
|
/external/v8/test/webkit/ |
D | jit-float32-array-nan-expected.txt | 24 Tests what happens in the Baseline JIT if we load from a Float32 array that contains a weirdly form…
|
D | dfg-float32-array-nan-expected.txt | 24 Tests what happens in the DFG JIT if we load from a Float32 array that contains a weirdly formatted…
|
/external/deqp/modules/glshared/ |
D | glsRasterizationTestUtil.cpp | 214 …return tcu::Float32::construct(+1, valueExponent, (1u<<23) + (ulp << (23 - 10))).asFloat() - tcu::… in getExponentEpsilonFromULP() 221 const int exponent = tcu::Float32(value).exponent(); in getValueEpsilonFromULP() 245 if (value > 0.0f && value < tcu::Float32::construct(+1, -14, 1u<<23).asFloat()) in getMinFlushToZero() 254 if (value < 0.0f && value > tcu::Float32::construct(-1, -14, 1u<<23).asFloat()) in getMaxFlushToZero()
|
/external/clang/lib/CodeGen/ |
D | CGBuiltin.cpp | 1897 case NeonTypeFlags::Float32: in GetNeonType() 2803 Ty = GetNeonType(this, NeonTypeFlags(NeonTypeFlags::Float32, false, Quad)); in EmitCommonNeonBuiltinExpr() 2814 : NeonTypeFlags::Float32, in EmitCommonNeonBuiltinExpr() 2833 : NeonTypeFlags::Float32, in EmitCommonNeonBuiltinExpr() 2851 : NeonTypeFlags::Float32, in EmitCommonNeonBuiltinExpr() 2894 : NeonTypeFlags::Float32, false, Quad)); in EmitCommonNeonBuiltinExpr() 5006 NeonTypeFlags SrcFlag = NeonTypeFlags(NeonTypeFlags::Float32, false, false); in EmitAArch64BuiltinExpr() 5012 assert(Type.getEltType() == NeonTypeFlags::Float32 && in EmitAArch64BuiltinExpr() 5032 : NeonTypeFlags::Float32, false, quad)); in EmitAArch64BuiltinExpr() 5052 : NeonTypeFlags::Float32, false, quad)); in EmitAArch64BuiltinExpr() [all …]
|
/external/deqp/framework/referencerenderer/ |
D | rrRenderer.cpp | 978 const int maxExponent = tcu::Float32(maxZValue).exponent(); in getFloatingPointMinimumResolvableDifference() 979 return tcu::Float32::construct(+1, maxExponent - 23, 1 << 23).asFloat(); in getFloatingPointMinimumResolvableDifference() 989 return tcu::Float32::construct(+1, -numBits, 1 << 23).asFloat(); in getFixedPointMinimumResolvableDifference()
|
/external/pdfium/core/src/fpdfapi/fpdf_edit/ |
D | fpdf_edit_doc.cpp | 647 Float32 weight = 0; in AddMacFont()
|
/external/clang/utils/TableGen/ |
D | NeonEmitter.cpp | 88 Float32, enumerator
|
/external/clang/lib/Sema/ |
D | SemaChecking.cpp | 593 case NeonTypeFlags::Float32: in RFT() 631 case NeonTypeFlags::Float32: in getNeonEltType()
|