Lines Matching refs:halfToFloatBits
1939 c.x.x = Extract(As<Float4>(halfToFloatBits(t0)), 0); in sampleTexel()
1940 c.x.y = Extract(As<Float4>(halfToFloatBits(t1)), 0); in sampleTexel()
1941 c.x.z = Extract(As<Float4>(halfToFloatBits(t2)), 0); in sampleTexel()
1942 c.x.w = Extract(As<Float4>(halfToFloatBits(t3)), 0); in sampleTexel()
1951 c.x = As<Float4>(halfToFloatBits(t0)); in sampleTexel()
1952 c.y = As<Float4>(halfToFloatBits(t1)); in sampleTexel()
1953 c.z = As<Float4>(halfToFloatBits(t2)); in sampleTexel()
1954 c.w = As<Float4>(halfToFloatBits(t3)); in sampleTexel()
1963 c.x = As<Float4>(halfToFloatBits(t0)); in sampleTexel()
1964 c.y = As<Float4>(halfToFloatBits(t1)); in sampleTexel()
1965 c.z = As<Float4>(halfToFloatBits(t2)); in sampleTexel()
1966 c.w = As<Float4>(halfToFloatBits(t3)); in sampleTexel()
2022 c.x = As<Float4>(halfToFloatBits((t0 << 4) & UInt4(0x7FF0))); in sampleTexel()
2023 c.y = As<Float4>(halfToFloatBits((t0 >> 7) & UInt4(0x7FF0))); in sampleTexel()
2024 c.z = As<Float4>(halfToFloatBits((t0 >> 17) & UInt4(0x7FE0))); in sampleTexel()