Home
last modified time | relevance | path

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

/PHP-7.0/ext/standard/
H A Dcrypt_sha256.c282 # define UNALIGNED_P(p) (((uintptr_t) p) % __alignof__ (uint32_t) != 0) in sha256_process_bytes() macro
284 # define UNALIGNED_P(p) (((uintptr_t) p) % sizeof (uint32_t) != 0) in sha256_process_bytes()
286 if (UNALIGNED_P (buffer)) in sha256_process_bytes()
H A Dcrypt_sha512.c312 # define UNALIGNED_P(p) (((uintptr_t) p) % __alignof__ (uint64_t) != 0) in sha512_process_bytes() macro
314 # define UNALIGNED_P(p) (((uintptr_t) p) % sizeof(uint64_t) != 0) in sha512_process_bytes()
316 if (UNALIGNED_P(buffer)) in sha512_process_bytes()

Completed in 13 milliseconds