Home | History | Annotate | Download | only in functional

Lines Matching refs:ref3

818 				const deUint16	ref3	= (deUint8)de::clamp(deRoundFloatToInt32(de::clamp(inputs[valNdx].w(), -1.0f, 1.0f) * 127.0f), -(1<<7), (1<<7)-1);
819 const deUint32 ref = (deUint32(ref3) << 24) | (deUint32(ref2) << 16) | (deUint32(ref1) << 8) | deUint32(ref0);
828 const int diff3 = de::abs((int)ref3 - (int)res3);
916 const float ref3 = de::clamp(float(in3) / 127.f, -1.0f, 1.0f);
925 const deUint32 diff3 = getUlpDiff(ref3, res3);
933 << "vec4(" << HexFloat(ref0) << ", " << HexFloat(ref1) << ", " << HexFloat(ref2) << ", " << HexFloat(ref3) << ")"
1027 const deUint16 ref3 = (deUint8)de::clamp(deRoundFloatToInt32(de::clamp(inputs[valNdx].w(), 0.0f, 1.0f) * 255.0f), 0, (1<<8)-1);
1028 const deUint32 ref = (deUint32(ref3) << 24) | (deUint32(ref2) << 16) | (deUint32(ref1) << 8) | deUint32(ref0);
1037 const int diff3 = de::abs((int)ref3 - (int)res3);
1125 const float ref3 = de::clamp(float(in3) / 255.f, 0.0f, 1.0f);
1134 const deUint32 diff3 = getUlpDiff(ref3, res3);
1142 << "vec4(" << HexFloat(ref0) << ", " << HexFloat(ref1) << ", " << HexFloat(ref2) << ", " << HexFloat(ref3) << ")"