Home
last modified time | relevance | path

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

/libcrypt/
A Dsha256.c259 # define UNALIGNED_P(p) (((uintptr_t) p) % __alignof__ (uint32_t) != 0) in __sha256_process_bytes() macro
261 # define UNALIGNED_P(p) (((uintptr_t) p) % sizeof (uint32_t) != 0) in __sha256_process_bytes()
263 if (UNALIGNED_P (buffer)) in __sha256_process_bytes()
A Dsha512.c290 # define UNALIGNED_P(p) (((uintptr_t) p) % __alignof__ (uint64_t) != 0) in __sha512_process_bytes() macro
292 # define UNALIGNED_P(p) (((uintptr_t) p) % sizeof (uint64_t) != 0) in __sha512_process_bytes()
294 if (UNALIGNED_P (buffer)) in __sha512_process_bytes()

Completed in 5 milliseconds