Lines Matching refs:uint64_t

64 	uint64_t H[8];
66 uint64_t total[2];
67 uint64_t buflen;
91 static const uint64_t K[80] = {
139 const uint64_t *words = buffer; in sha512_process_block()
140 size_t nwords = len / sizeof(uint64_t); in sha512_process_block()
141 uint64_t a = ctx->H[0]; in sha512_process_block()
142 uint64_t b = ctx->H[1]; in sha512_process_block()
143 uint64_t c = ctx->H[2]; in sha512_process_block()
144 uint64_t d = ctx->H[3]; in sha512_process_block()
145 uint64_t e = ctx->H[4]; in sha512_process_block()
146 uint64_t f = ctx->H[5]; in sha512_process_block()
147 uint64_t g = ctx->H[6]; in sha512_process_block()
148 uint64_t h = ctx->H[7]; in sha512_process_block()
161 uint64_t W[80]; in sha512_process_block()
162 uint64_t a_save = a; in sha512_process_block()
163 uint64_t b_save = b; in sha512_process_block()
164 uint64_t c_save = c; in sha512_process_block()
165 uint64_t d_save = d; in sha512_process_block()
166 uint64_t e_save = e; in sha512_process_block()
167 uint64_t f_save = f; in sha512_process_block()
168 uint64_t g_save = g; in sha512_process_block()
169 uint64_t h_save = h; in sha512_process_block()
196 uint64_t T1 = h + S1 (e) + Ch (e, f, g) + K[t] + W[t]; in sha512_process_block()
197 uint64_t T2 = S0 (a) + Maj (a, b, c); in sha512_process_block()
259 uint64_t bytes = ctx->buflen; in sha512_finish_ctx()
273 *(uint64_t *) &ctx->buffer[bytes + pad + 8] = SWAP(ctx->total[0] << 3); in sha512_finish_ctx()
274 *(uint64_t *) &ctx->buffer[bytes + pad] = SWAP((ctx->total[1] << 3) | in sha512_finish_ctx()
282 ((uint64_t *) resbuf)[i] = SWAP(ctx->H[i]); in sha512_finish_ctx()
318 # define UNALIGNED_P(p) (((uintptr_t) p) % __alignof__ (uint64_t) != 0) in sha512_process_bytes()
320 # define UNALIGNED_P(p) (((uintptr_t) p) % sizeof(uint64_t) != 0) in sha512_process_bytes()
387 unsigned char alt_result[64] ALIGNED(__alignof__ (uint64_t)); in php_sha512_crypt_r()
388 unsigned char temp_result[64] ALIGNED(__alignof__ (uint64_t)); in php_sha512_crypt_r()
426 if ((key - (char *) 0) % __alignof__ (uint64_t) != 0) { in php_sha512_crypt_r()
427 char *tmp = (char *) alloca (key_len + __alignof__ (uint64_t)); in php_sha512_crypt_r()
429 memcpy(tmp + __alignof__(uint64_t) - (tmp - (char *) 0) % __alignof__(uint64_t), key, key_len); in php_sha512_crypt_r()
432 if ((salt - (char *) 0) % __alignof__ (uint64_t) != 0) { in php_sha512_crypt_r()
433 char *tmp = (char *) alloca(salt_len + 1 + __alignof__(uint64_t)); in php_sha512_crypt_r()
434 …salt = copied_salt = memcpy(tmp + __alignof__(uint64_t) - (tmp - (char *) 0) % __alignof__(uint64_… in php_sha512_crypt_r()