Searched refs:helper_SIMON_LIKE_32_64 (Results 1 – 1 of 1) sorted by relevance
/openbmc/qemu/target/ppc/ |
H A D | excp_helper.c | 2833 static uint32_t helper_SIMON_LIKE_32_64(uint32_t x, uint64_t key, uint32_t lane) in helper_SIMON_LIKE_32_64() function 2884 stage1_h = (uint64_t)helper_SIMON_LIKE_32_64(stage0_h >> 32, key, 0) << 32; in hash_digest() 2885 stage1_h |= helper_SIMON_LIKE_32_64(stage0_h, key, 1); in hash_digest() 2886 stage1_l = (uint64_t)helper_SIMON_LIKE_32_64(stage0_l >> 32, key, 2) << 32; in hash_digest() 2887 stage1_l |= helper_SIMON_LIKE_32_64(stage0_l, key, 3); in hash_digest()
|