Home
last modified time | relevance | path

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

/PHP-5.5/ext/standard/
H A Dcrypt_sha256.c288 # define UNALIGNED_P(p) (((uintptr_t) p) % __alignof__ (uint32_t) != 0) in sha256_process_bytes() macro
290 # define UNALIGNED_P(p) (((uintptr_t) p) % sizeof (uint32_t) != 0) in sha256_process_bytes()
292 if (UNALIGNED_P (buffer)) in sha256_process_bytes()
H A Dcrypt_sha512.c318 # define UNALIGNED_P(p) (((uintptr_t) p) % __alignof__ (uint64_t) != 0) in sha512_process_bytes() macro
320 # define UNALIGNED_P(p) (((uintptr_t) p) % sizeof(uint64_t) != 0) in sha512_process_bytes()
322 if (UNALIGNED_P(buffer)) in sha512_process_bytes()

Completed in 11 milliseconds