Home
last modified time | relevance | path

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

/external/swiftshader/third_party/astc-encoder/Source/
Dastc_partition_tables.cpp149 uint8_t seed11 = (rnum >> 26) & 0xF; in select_partition() local
164 seed11 *= seed11; in select_partition()
191 seed11 >>= sh3; in select_partition()
194 int a = seed1 * x + seed2 * y + seed11 * z + (rnum >> 14); in select_partition()
/external/mesa3d/src/mesa/main/
Dtexcompress_astc.cpp299 uint8_t seed11 = (rnum >> 26) & 0xF; in select_partition() local
312 seed11 *= seed11; in select_partition()
335 seed11 >>= sh3; in select_partition()
338 int a = seed1 * x + seed2 * y + seed11 * z + (rnum >> 14); in select_partition()
/external/deqp/framework/common/
DtcuAstcUtil.cpp1362 deUint8 seed11 = (deUint8)((rnum >> 26) & 0xf); in computeTexelPartition() local
1375 seed11 = (deUint8)(seed11 * seed11); in computeTexelPartition()
1394 seed11 = (deUint8)(seed11 >> sh3); in computeTexelPartition()
1397 const int a = 0x3f & (seed1*x + seed2*y + seed11*z + (rnum >> 14)); in computeTexelPartition()