Home
last modified time | relevance | path

Searched refs:seed12 (Results 1 – 3 of 3) sorted by relevance

/external/swiftshader/third_party/astc-encoder/Source/
Dastc_partition_tables.cpp150 uint8_t seed12 = ((rnum >> 30) | (rnum << 2)) & 0xF; in select_partition() local
165 seed12 *= seed12; in select_partition()
192 seed12 >>= sh3; in select_partition()
195 int b = seed3 * x + seed4 * y + seed12 * z + (rnum >> 10); in select_partition()
/external/mesa3d/src/mesa/main/
Dtexcompress_astc.cpp300 uint8_t seed12 = ((rnum >> 30) | (rnum << 2)) & 0xF; in select_partition() local
313 seed12 *= seed12; in select_partition()
336 seed12 >>= sh3; in select_partition()
339 int b = seed3 * x + seed4 * y + seed12 * z + (rnum >> 10); in select_partition()
/external/deqp/framework/common/
DtcuAstcUtil.cpp1363 deUint8 seed12 = (deUint8)(((rnum >> 30) | (rnum << 2)) & 0xf); in computeTexelPartition() local
1376 seed12 = (deUint8)(seed12 * seed12); in computeTexelPartition()
1395 seed12 = (deUint8)(seed12 >> sh3); in computeTexelPartition()
1398 const int b = 0x3f & (seed3*x + seed4*y + seed12*z + (rnum >> 10)); in computeTexelPartition()