Home
last modified time | relevance | path

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

/freebsd/sys/contrib/openzfs/module/icp/algs/aes/
H A Daes_modes.c34 if (IS_P2ALIGNED2(in, out, sizeof (uint32_t))) { in aes_copy_block()
53 if (IS_P2ALIGNED2(dst, data, sizeof (uint32_t))) { in aes_xor_block()
H A Daes_impl.c120 if (IS_P2ALIGNED2(pt, ct, sizeof (uint32_t)) && !ops->needs_byteswap) { in aes_encrypt_block()
167 if (IS_P2ALIGNED2(ct, pt, sizeof (uint32_t)) && !ops->needs_byteswap) { in aes_decrypt_block()
/freebsd/sys/contrib/openzfs/module/icp/include/aes/
H A Daes_impl.h42 #define IS_P2ALIGNED2(v, w, a) \ macro