Home
last modified time | relevance | path

Searched refs:seed6 (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.cpp144 uint8_t seed6 = (rnum >> 20) & 0xF; in select_partition() local
159 seed6 *= seed6; in select_partition()
185 seed6 >>= sh2; in select_partition()
196 int c = seed5 * x + seed6 * y + seed9 * z + (rnum >> 6); in select_partition()
/third_party/astc-encoder/Source/
H A Dastcenc_partition_tables.cpp167 uint8_t seed6 = (rnum >> 20) & 0xF; in select_partition() local
181 seed6 *= seed6; in select_partition()
208 seed6 >>= sh2; in select_partition()
219 int c = seed5 * x + seed6 * y + seed9 * z + (rnum >> 6); in select_partition()
/third_party/mesa3d/src/mesa/main/
H A Dtexcompress_astc.cpp288 uint8_t seed6 = (rnum >> 20) & 0xF; in select_partition() local
301 seed6 *= seed6; in select_partition()
324 seed6 >>= sh2; in select_partition()
334 int c = seed5 * x + seed6 * y + seed9 * z + (rnum >> 6); in select_partition()
/third_party/vk-gl-cts/framework/common/
H A DtcuAstcUtil.cpp1357 deUint8 seed6 = (deUint8)((rnum >> 20) & 0xf);
1370 seed6 = (deUint8)(seed6 * seed6 );
1389 seed6 = (deUint8)(seed6 >> sh2);
1399 const int c = numPartitions >= 3 ? 0x3f & (seed5*x + seed6*y + seed9*z + (rnum >> 6)) : 0;

Completed in 13 milliseconds