Lines Matching refs:__alignof__
11 # define __alignof__ __alignof macro
16 # define __alignof__(type) offsetof (struct { char c; type member;}, member) macro
312 # define UNALIGNED_P(p) (((uintptr_t) p) % __alignof__ (uint64_t) != 0) in sha512_process_bytes()
381 unsigned char alt_result[64] ALIGNED(__alignof__ (uint64_t)); in php_sha512_crypt_r()
382 unsigned char temp_result[64] ALIGNED(__alignof__ (uint64_t)); in php_sha512_crypt_r()
420 if ((key - (char *) 0) % __alignof__ (uint64_t) != 0) { in php_sha512_crypt_r()
421 char *tmp = (char *) alloca (key_len + __alignof__ (uint64_t)); in php_sha512_crypt_r()
423 memcpy(tmp + __alignof__(uint64_t) - (tmp - (char *) 0) % __alignof__(uint64_t), key, key_len); in php_sha512_crypt_r()
426 if ((salt - (char *) 0) % __alignof__ (uint64_t) != 0) { in php_sha512_crypt_r()
427 char *tmp = (char *) alloca(salt_len + 1 + __alignof__(uint64_t)); in php_sha512_crypt_r()
428 …salt = copied_salt = memcpy(tmp + __alignof__(uint64_t) - (tmp - (char *) 0) % __alignof__(uint64_… in php_sha512_crypt_r()