Home
last modified time | relevance | path

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

/xnu-10063.101.15/osfmk/corecrypto/
H A Dccmode_gcm_gf_mult.c162 uint64_t z_hi_h, z_hi_l, z_lo_h, z_lo_l; in ccmode_gcm_gf_mult_32() local
221 z_lo_h = (((uint64_t)z0_a_h << 32) | z0_a_l) ^ (((uint64_t)z1_b_h << 32) | z1_b_l); in ccmode_gcm_gf_mult_32()
226 z_hi_l = (z_hi_l << 1) | (z_lo_h >> 63); in ccmode_gcm_gf_mult_32()
227 z_lo_h = (z_lo_h << 1) | (z_lo_l >> 63); in ccmode_gcm_gf_mult_32()
231 z_lo_h ^= (z_lo_l << 62) ^ (z_lo_l << 57); in ccmode_gcm_gf_mult_32()
232 z_hi_h ^= z_lo_h ^ (z_lo_h >> 1) ^ (z_lo_h >> 2) ^ (z_lo_h >> 7); in ccmode_gcm_gf_mult_32()
234 z_hi_l ^= (z_lo_h << 63) ^ (z_lo_h << 62) ^ (z_lo_h << 57); in ccmode_gcm_gf_mult_32()