Searched refs:__alignof__ (Results 1 – 5 of 5) sorted by relevance
12 # define __alignof__ __alignof macro17 # define __alignof__(type) offsetof (struct { char c; type member;}, member) macro282 # define UNALIGNED_P(p) (((uintptr_t) p) % __alignof__ (uint32_t) != 0) in sha256_process_bytes()347 unsigned char alt_result[32] ALIGNED(__alignof__ (uint32_t)); in php_sha256_crypt_r()348 unsigned char temp_result[32] ALIGNED(__alignof__ (uint32_t)); in php_sha256_crypt_r()386 if ((key - (char *) 0) % __alignof__ (uint32_t) != 0) { in php_sha256_crypt_r()387 char *tmp = (char *) alloca(key_len + __alignof__(uint32_t)); in php_sha256_crypt_r()388 …key = copied_key = memcpy(tmp + __alignof__(uint32_t) - (tmp - (char *) 0) % __alignof__(uint32_t)… in php_sha256_crypt_r()391 if ((salt - (char *) 0) % __alignof__(uint32_t) != 0) { in php_sha256_crypt_r()392 char *tmp = (char *) alloca(salt_len + 1 + __alignof__(uint32_t)); in php_sha256_crypt_r()[all …]
11 # define __alignof__ __alignof macro16 # define __alignof__(type) offsetof (struct { char c; type member;}, member) macro312 # 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()[all …]
248 dnl Check for __alignof__ support in the compiler250 AC_CACHE_CHECK(whether the compiler supports __alignof__, ac_cv_alignof_exists,[253 int align = __alignof__(int);260 AC_DEFINE([HAVE_ALIGNOF], 1, [whether the compiler supports __alignof__])269 unsigned char test[32] __attribute__ ((__aligned__ (__alignof__ (int))));
140 # define PLATFORM_ALIGNMENT (__alignof__(align_test) < 8 ? 8 : __alignof__(align_test))
235 #define ZEND_MM_ALIGNMENT (__alignof__ (mm_align_test))
Completed in 21 milliseconds