Home
last modified time | relevance | path

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

/freebsd/sys/crypto/aesni/
H A Daesni_ccm.c97 uint8_t *byte_ptr; in cbc_mac_start() local
107 byte_ptr = (uint8_t*)&cbc_block; in cbc_mac_start()
108 byte_ptr[0] = ((auth_len > 0) ? 1 : 0) * 64 | in cbc_mac_start()
111 bcopy(nonce, byte_ptr + 1, nonce_len); in cbc_mac_start()
162 byte_ptr = (uint8_t*)&staging_block; in cbc_mac_start()
163 bcopy(auth_ptr, &byte_ptr[auth_amt], copy_amt); in cbc_mac_start()
198 uint8_t *byte_ptr; in AES_CCM_encrypt() local
223 byte_ptr = (uint8_t*)&s0; in AES_CCM_encrypt()
224 byte_ptr[0] = L - 1; /* but the flags byte only has L' */ in AES_CCM_encrypt()
225 bcopy(nonce, &byte_ptr[1], nlen); in AES_CCM_encrypt()
[all …]
/freebsd/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors_mac.cpp139 volatile char *byte_ptr = ((volatile char *)ptr) + (n >> 3); \
142 char orig_byte = op((volatile a8 *)byte_ptr, mask, mo); \