Home
last modified time | relevance | path

Searched refs:seed3 (Results 1 – 6 of 6) sorted by relevance

/external/swiftshader/third_party/astc-encoder/Source/
Dastc_partition_tables.cpp141 uint8_t seed3 = (rnum >> 8) & 0xF; in select_partition() local
156 seed3 *= seed3; in select_partition()
182 seed3 >>= sh1; in select_partition()
195 int b = seed3 * x + seed4 * y + seed12 * z + (rnum >> 10); in select_partition()
/external/llvm-project/llvm/test/CodeGen/Hexagon/
Dcmp-extend.ll17 %seed3 = getelementptr inbounds %struct.RESULTS_S.A, %struct.RESULTS_S.A* %res, i32 0, i32 2
18 %0 = load i16, i16* %seed3, align 2
/external/llvm/test/CodeGen/Hexagon/
Dcmp-extend.ll17 %seed3 = getelementptr inbounds %struct.RESULTS_S.A, %struct.RESULTS_S.A* %res, i32 0, i32 2
18 %0 = load i16, i16* %seed3, align 2
/external/wpa_supplicant_8/src/eap_common/
Deap_sim_common.c233 const u8 *seed3, size_t seed3_len, in prf_prime() argument
256 addr[3] = seed3; in prf_prime()
328 u8 seed3[2 + EAP_SIM_NONCE_S_LEN]; in eap_aka_prime_derive_keys_reauth() local
338 WPA_PUT_BE16(seed3, counter); in eap_aka_prime_derive_keys_reauth()
339 os_memcpy(seed3 + 2, nonce_s, EAP_SIM_NONCE_S_LEN); in eap_aka_prime_derive_keys_reauth()
342 seed3, sizeof(seed3), in eap_aka_prime_derive_keys_reauth()
/external/mesa3d/src/mesa/main/
Dtexcompress_astc.cpp291 uint8_t seed3 = (rnum >> 8) & 0xF; in select_partition() local
304 seed3 *= seed3; in select_partition()
327 seed3 >>= sh1; in select_partition()
339 int b = seed3 * x + seed4 * y + seed12 * z + (rnum >> 10); in select_partition()
/external/deqp/framework/common/
DtcuAstcUtil.cpp1354 deUint8 seed3 = (deUint8)((rnum >> 8) & 0xf); in computeTexelPartition() local
1367 seed3 = (deUint8)(seed3 * seed3 ); in computeTexelPartition()
1386 seed3 = (deUint8)(seed3 >> sh1); in computeTexelPartition()
1398 const int b = 0x3f & (seed3*x + seed4*y + seed12*z + (rnum >> 10)); in computeTexelPartition()