__alignof__       288 standard/crypt_sha256.c # define UNALIGNED_P(p) (((uintptr_t) p) % __alignof__ (uint32_t) != 0)
__alignof__       353 standard/crypt_sha256.c 	unsigned char alt_result[32] ALIGNED(__alignof__ (uint32_t));
__alignof__       354 standard/crypt_sha256.c 	unsigned char temp_result[32] ALIGNED(__alignof__ (uint32_t));
__alignof__       392 standard/crypt_sha256.c 	if ((key - (char *) 0) % __alignof__ (uint32_t) != 0) {
__alignof__       393 standard/crypt_sha256.c 		char *tmp = (char *) alloca(key_len + __alignof__(uint32_t));
__alignof__       394 standard/crypt_sha256.c 		key = copied_key = memcpy(tmp + __alignof__(uint32_t) - (tmp - (char *) 0) % __alignof__(uint32_t), key, key_len);
__alignof__       397 standard/crypt_sha256.c 	if ((salt - (char *) 0) % __alignof__(uint32_t) != 0) {
__alignof__       398 standard/crypt_sha256.c 		char *tmp = (char *) alloca(salt_len + 1 + __alignof__(uint32_t));
__alignof__       400 standard/crypt_sha256.c 		memcpy(tmp + __alignof__(uint32_t) - (tmp - (char *) 0) % __alignof__ (uint32_t), salt, salt_len);
__alignof__       318 standard/crypt_sha512.c #  define UNALIGNED_P(p) (((uintptr_t) p) % __alignof__ (uint64_t) != 0)
__alignof__       387 standard/crypt_sha512.c 	unsigned char alt_result[64] ALIGNED(__alignof__ (uint64_t));
__alignof__       388 standard/crypt_sha512.c 	unsigned char temp_result[64] ALIGNED(__alignof__ (uint64_t));
__alignof__       426 standard/crypt_sha512.c 	if ((key - (char *) 0) % __alignof__ (uint64_t) != 0) {
__alignof__       427 standard/crypt_sha512.c 		char *tmp = (char *) alloca (key_len + __alignof__ (uint64_t));
__alignof__       429 standard/crypt_sha512.c 		memcpy(tmp + __alignof__(uint64_t) - (tmp - (char *) 0) % __alignof__(uint64_t), key, key_len);
__alignof__       432 standard/crypt_sha512.c 	if ((salt - (char *) 0) % __alignof__ (uint64_t) != 0) {
__alignof__       433 standard/crypt_sha512.c 		char *tmp = (char *) alloca(salt_len + 1 + __alignof__(uint64_t));
__alignof__       434 standard/crypt_sha512.c 		salt = copied_salt = memcpy(tmp + __alignof__(uint64_t) - (tmp - (char *) 0) % __alignof__(uint64_t), salt, salt_len);