Home
last modified time | relevance | path

Searched refs:seed12 (Results 1 - 4 of 4) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/astc-encoder/Source/
H A 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()
/third_party/astc-encoder/Source/
H A Dastcenc_partition_tables.cpp173 uint8_t seed12 = ((rnum >> 30) | (rnum << 2)) & 0xF; in select_partition() local
187 seed12 *= seed12; in select_partition()
215 seed12 >>= sh3; in select_partition()
218 int b = seed3 * x + seed4 * y + seed12 * z + (rnum >> 10); in select_partition()
/third_party/mesa3d/src/mesa/main/
H A Dtexcompress_astc.cpp294 uint8_t seed12 = ((rnum >> 30) | (rnum << 2)) & 0xF; in select_partition() local
307 seed12 *= seed12; in select_partition()
330 seed12 >>= sh3; in select_partition()
333 int b = seed3 * x + seed4 * y + seed12 * z + (rnum >> 10); in select_partition()
/third_party/vk-gl-cts/framework/common/
H A DtcuAstcUtil.cpp1363 deUint8 seed12 = (deUint8)(((rnum >> 30) | (rnum << 2)) & 0xf);
1376 seed12 = (deUint8)(seed12 * seed12);
1395 seed12 = (deUint8)(seed12 >> sh3);
1398 const int b = 0x3f & (seed3*x + seed4*y + seed12*z + (rnum >> 10));

Completed in 7 milliseconds