Searched refs:set1_128 (Results 1 – 2 of 2) sorted by relevance
/openbsd/gnu/llvm/llvm/lib/Support/BLAKE3/ |
H A D | blake3_neon.c | 33 INLINE uint32x4_t set1_128(uint32_t x) { return vld1q_dup_u32(&x); } in set1_128() function 239 set1_128(key[0]), set1_128(key[1]), set1_128(key[2]), set1_128(key[3]), in blake3_hash4_neon() 240 set1_128(key[4]), set1_128(key[5]), set1_128(key[6]), set1_128(key[7]), in blake3_hash4_neon() 251 uint32x4_t block_len_vec = set1_128(BLAKE3_BLOCK_LEN); in blake3_hash4_neon() 252 uint32x4_t block_flags_vec = set1_128(block_flags); in blake3_hash4_neon() 259 set1_128(IV[0]), set1_128(IV[1]), set1_128(IV[2]), set1_128(IV[3]), in blake3_hash4_neon()
|
H A D | blake3_avx512.c | 41 INLINE __m128i set1_128(uint32_t x) { return _mm_set1_epi32((int32_t)x); } in set1_128() function 497 set1_128(key[0]), set1_128(key[1]), set1_128(key[2]), set1_128(key[3]), in blake3_hash4_avx512() 498 set1_128(key[4]), set1_128(key[5]), set1_128(key[6]), set1_128(key[7]), in blake3_hash4_avx512() 509 __m128i block_len_vec = set1_128(BLAKE3_BLOCK_LEN); in blake3_hash4_avx512() 510 __m128i block_flags_vec = set1_128(block_flags); in blake3_hash4_avx512() 517 set1_128(IV[0]), set1_128(IV[1]), set1_128(IV[2]), set1_128(IV[3]), in blake3_hash4_avx512()
|