Searched refs:deLdExp (Results 1 – 4 of 4) sorted by relevance
/external/deqp/framework/common/ |
D | tcuFloatFormat.cpp | 53 return (deLdExp(1.0, maxExp) + in computeMaxValue() 54 deLdExp(double((1ull << fractionBits) - 1), maxExp - fractionBits)); in computeMaxValue() 106 return deLdExp(1.0, m_maxExp - m_fractionBits); in ulp() 120 const double oneULP = deLdExp(1.0, exp - m_fractionBits); in ulp() 146 const double shiftFrac = deLdExp(frac, shift); in round() 149 return deLdExp(roundFrac, exp - shift); in round() 239 const deUint64 bits = deUint64(deLdExp(frac, shift)); in floatToHex() 311 double p (int e) const { return deLdExp(1.0, e); } in p()
|
/external/deqp/modules/glshared/ |
D | glsBuiltinPrecisionTests.cpp | 2058 deLdExp(1.0, fmt.getMinExp()), in precision() 2059 deLdExp(1.0, fmt.getMaxExp() - 1))) in precision() 2134 return (0.5 <= x && x <= 2.0) ? deLdExp(1.0, -21) : ctx.format.ulp(ret, 3.0); in precision() 2136 return (0.5 <= x && x <= 2.0) ? deLdExp(1.0, -7) : ctx.format.ulp(ret, 2.0); in precision() 2297 return deLdExp(1.0, -11); in precision() 2303 return deLdExp(deAbs(arg), -12); in precision() 2316 return deLdExp(deAbs(arg), -10); in precision() 2372 return deLdExp(1.0, -11); in precision() 2377 return deLdExp(1.0, -8); in precision() 3360 exponent = Interval(-deLdExp(1.0, 31), deLdExp(1.0, 31)-1); in doApply()
|
/external/deqp/external/vulkancts/modules/vulkan/shaderexecutor/ |
D | vktShaderBuiltinPrecisionTests.cpp | 2037 deLdExp(1.0, fmt.getMinExp()), in precision() 2038 deLdExp(1.0, fmt.getMaxExp() - 1))) in precision() 2113 return (0.5 <= x && x <= 2.0) ? deLdExp(1.0, -21) : ctx.format.ulp(ret, 3.0); in precision() 2115 return (0.5 <= x && x <= 2.0) ? deLdExp(1.0, -7) : ctx.format.ulp(ret, 2.0); in precision() 2276 return deLdExp(1.0, -11); in precision() 2282 return deLdExp(deAbs(arg), -12); in precision() 2295 return deLdExp(deAbs(arg), -10); in precision() 2351 return deLdExp(1.0, -11); in precision() 2356 return deLdExp(1.0, -8); in precision() 3309 exponent = Interval(-deLdExp(1.0, 31), deLdExp(1.0, 31)-1); in doApply()
|
/external/deqp/framework/delibs/debase/ |
D | deMath.h | 109 DE_INLINE double deLdExp (double a, int exponent) { return ldexp(a, exponent); } in deLdExp() function
|