Home
last modified time | relevance | path

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

/PHP-8.3/ext/standard/
H A Dcrypt_sha256.c272 # define UNALIGNED_P(p) (((uintptr_t) p) % __alignof__ (uint32_t) != 0) in sha256_process_bytes() macro
274 # define UNALIGNED_P(p) (((uintptr_t) p) % sizeof (uint32_t) != 0) in sha256_process_bytes()
276 if (UNALIGNED_P (buffer)) in sha256_process_bytes()
H A Dcrypt_sha512.c302 # define UNALIGNED_P(p) (((uintptr_t) p) % __alignof__ (uint64_t) != 0) in sha512_process_bytes() macro
304 # define UNALIGNED_P(p) (((uintptr_t) p) % sizeof(uint64_t) != 0) in sha512_process_bytes()
306 if (UNALIGNED_P(buffer)) in sha512_process_bytes()

Completed in 8 milliseconds