Home | History | Annotate | Download | only in functional

Lines Matching refs:ref0

209 				const deUint16	ref0	= (deUint16)de::clamp(deRoundFloatToInt32(de::clamp(inputs[valNdx].x(), -1.0f, 1.0f) * 32767.0f), -(1<<15), (1<<15)-1);
211 const deUint32 ref = (ref1 << 16) | ref0;
215 const int diff0 = de::abs((int)ref0 - (int)res0);
299 const float ref0 = de::clamp(float(in0) / 32767.f, -1.0f, 1.0f);
304 const deUint32 diff0 = getUlpDiff(ref0, res0);
313 << "vec2(" << HexFloat(ref0) << ", " << HexFloat(ref1) << ")"
400 const deUint16 ref0 = (deUint16)de::clamp(deRoundFloatToInt32(de::clamp(inputs[valNdx].x(), 0.0f, 1.0f) * 65535.0f), 0, (1<<16)-1);
402 const deUint32 ref = (ref1 << 16) | ref0;
406 const int diff0 = de::abs((int)ref0 - (int)res0);
490 const float ref0 = float(in0) / 65535.0f;
495 const deUint32 diff0 = getUlpDiff(ref0, res0);
504 << "vec2(" << HexFloat(ref0) << ", " << HexFloat(ref1) << ")"
596 const deUint16 ref0 = (deUint16)tcu::Float16(inputs[valNdx].x()).bits();
598 const deUint32 ref = (ref1 << 16) | ref0;
602 const int diff0 = de::abs((int)ref0 - (int)res0);
701 const float ref0 = tcu::Float16(in0).asFloat();
706 const deUint32 refBits0 = tcu::Float32(ref0).bits();
720 << "vec2(" << ref0 << " / " << tcu::toHex(refBits0) << ", " << ref1 << " / " << tcu::toHex(refBits1) << ")"