Searched refs:seed12 (Results 1 – 3 of 3) sorted by relevance
150 uint8_t seed12 = ((rnum >> 30) | (rnum << 2)) & 0xF; in select_partition() local165 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()
300 uint8_t seed12 = ((rnum >> 30) | (rnum << 2)) & 0xF; in select_partition() local313 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()
1363 deUint8 seed12 = (deUint8)(((rnum >> 30) | (rnum << 2)) & 0xf); in computeTexelPartition() local1376 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()