Home
last modified time | relevance | path

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

/external/elfutils/lib/
Dmd5.c235 # define UNALIGNED_P(p) (((md5_uintptr) p) % __alignof__ (md5_uint32) != 0) in md5_process_bytes() macro
237 # define UNALIGNED_P(p) (((md5_uintptr) p) % sizeof (md5_uint32) != 0) in md5_process_bytes()
239 if (UNALIGNED_P (buffer)) in md5_process_bytes()
Dsha1.c154 # define UNALIGNED_P(p) (((sha1_uintptr) p) % __alignof__ (sha1_uint32) != 0) in sha1_process_bytes() macro
156 # define UNALIGNED_P(p) (((sha1_uintptr) p) % sizeof (sha1_uint32) != 0) in sha1_process_bytes()
158 if (UNALIGNED_P (buffer)) in sha1_process_bytes()
/external/libvncserver/common/
Dmd5.c246 # define UNALIGNED_P(p) (((md5_uintptr) p) % __alignof__ (md5_uint32) != 0) macro
248 # define UNALIGNED_P(p) (((md5_uintptr) p) % sizeof (md5_uint32) != 0)
250 if (UNALIGNED_P (buffer))
/external/syslinux/com32/libutil/
Dsha256crypt.c240 # define UNALIGNED_P(p) (((uintptr_t) p) % __alignof__ (uint32_t) != 0) in sha256_process_bytes() macro
242 # define UNALIGNED_P(p) (((uintptr_t) p) % sizeof (uint32_t) != 0) in sha256_process_bytes()
244 if (UNALIGNED_P(buffer)) in sha256_process_bytes()
Dsha512crypt.c272 # define UNALIGNED_P(p) (((uintptr_t) p) % __alignof__ (uint64_t) != 0) in sha512_process_bytes() macro
274 # define UNALIGNED_P(p) (((uintptr_t) p) % sizeof (uint64_t) != 0) in sha512_process_bytes()
276 if (UNALIGNED_P(buffer)) in sha512_process_bytes()