Home
last modified time | relevance | path

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

/external/swiftshader/third_party/astc-encoder/Source/
Dastc_partition_tables.cpp142 uint8_t seed4 = (rnum >> 12) & 0xF; in select_partition() local
157 seed4 *= seed4; in select_partition()
183 seed4 >>= sh2; in select_partition()
195 int b = seed3 * x + seed4 * y + seed12 * z + (rnum >> 10); in select_partition()
/external/mesa3d/src/mesa/main/
Dtexcompress_astc.cpp292 uint8_t seed4 = (rnum >> 12) & 0xF; in select_partition() local
305 seed4 *= seed4; in select_partition()
328 seed4 >>= sh2; in select_partition()
339 int b = seed3 * x + seed4 * y + seed12 * z + (rnum >> 10); in select_partition()
/external/deqp/framework/common/
DtcuAstcUtil.cpp1355 deUint8 seed4 = (deUint8)((rnum >> 12) & 0xf); in computeTexelPartition() local
1368 seed4 = (deUint8)(seed4 * seed4 ); in computeTexelPartition()
1387 seed4 = (deUint8)(seed4 >> sh2); in computeTexelPartition()
1398 const int b = 0x3f & (seed3*x + seed4*y + seed12*z + (rnum >> 10)); in computeTexelPartition()