Searched refs:getBits128 (Results 1 – 1 of 1) sorted by relevance
/external/deqp/framework/common/ |
D | tcuCompressedTexture.cpp | 1355 inline deUint32 getBits128 (deUint64 low, deUint64 high, deUint32 first, deUint32 last) in getBits128() function 1832 const deUint32 d = mode < 10 ? getBits128(low, high, 77, 81) : 0; in decompressBc6H() 1843 g[2] |= getBits128(low, high, 2, 2) << 4; in decompressBc6H() 1844 b[2] |= getBits128(low, high, 3, 3) << 4; in decompressBc6H() 1845 b[3] |= getBits128(low, high, 4, 4) << 4; in decompressBc6H() 1846 r[0] |= getBits128(low, high, 5, 14); in decompressBc6H() 1847 g[0] |= getBits128(low, high, 15, 24); in decompressBc6H() 1848 b[0] |= getBits128(low, high, 25, 34); in decompressBc6H() 1849 r[1] |= getBits128(low, high, 35, 39); in decompressBc6H() 1850 g[3] |= getBits128(low, high, 40, 40) << 4; in decompressBc6H() [all …]
|