Home | History | Annotate | Download | only in common

Lines Matching refs:V3

1855 static void decodeHDREndpointMode7 (UVec4& e0, UVec4& e1, deUint32 v0, deUint32 v1, deUint32 v2, deUint32 v3)
1869 deInt32 scale = (deInt32)getBits(v3, 0, 4);
1873 #define ASSIGN_X_BITS(V0,S0, V1,S1, V2,S2, V3,S3, V4,S4, V5,S5, V6,S6) do { SHOR(V0,S0,x0); SHOR(V1,S1,x1); SHOR(V2,S2,x2); SHOR(V3,S3,x3); SHOR(V4,S4,x4); SHOR(V5,S5,x5); SHOR(V6,S6,x6); } while (false)
1879 const deUint32 x4 = getBit(v3, 7);
1880 const deUint32 x5 = getBit(v3, 6);
1881 const deUint32 x6 = getBit(v3, 5);
1934 static void decodeHDREndpointMode11 (UVec4& e0, UVec4& e1, deUint32 v0, deUint32 v1, deUint32 v2, deUint32 v3, deUint32 v4, deUint32 v5)
1941 e1 = UVec4(v1<<4, v3<<4, getBits(v5,0,6)<<5, 0x780);
1945 const deUint32 mode = (getBit(v3, 7) << 2) | (getBit(v2, 7) << 1) | getBit(v1, 7);
1950 deInt32 b1 = (deInt32)(getBits(v3, 0, 5));
1956 #define ASSIGN_X_BITS(V0,S0, V1,S1, V2,S2, V3,S3, V4,S4, V5,S5) do { SHOR(V0,S0,x0); SHOR(V1,S1,x1); SHOR(V2,S2,x2); SHOR(V3,S3,x3); SHOR(V4,S4,x4); SHOR(V5,S5,x5); } while (false)
1959 const deUint32 x1 = getBit(v3, 6);
2020 static void decodeHDREndpointMode15(UVec4& e0, UVec4& e1, deUint32 v0, deUint32 v1, deUint32 v2, deUint32 v3, deUint32 v4, deUint32 v5, deUint32 v6In, deUint32 v7In)
2022 decodeHDREndpointMode11(e0, e1, v0, v1, v2, v3, v4, v5);
2113 deInt32 v3 = (deInt32)v[3];
2115 bitTransferSigned(v3, v2);
2118 e1 = clampedRGBA(tcu::IVec4(v0+v1, v0+v1, v0+v1, v2+v3));
2149 deInt32 v3 = (deInt32)v[3];
2153 bitTransferSigned(v3, v2);
2156 if (v1+v3+v5 >= 0)
2159 e1 = clampedRGBA(tcu::IVec4(v0+v1, v2+v3, v4+v5, 0xff));
2163 e0 = clampedRGBA(blueContract(v0+v1, v2+v3, v4+v5, 0xff));
2196 deInt32 v3 = (deInt32)v[3];
2202 bitTransferSigned(v3, v2);
2206 if (v1+v3+v5 >= 0)
2209 e1 = clampedRGBA(tcu::IVec4(v0+v1, v2+v3, v4+v5, v6+v7));
2213 e0 = clampedRGBA(blueContract(v0+v1, v2+v3, v4+v5, v6+v7));