Lines Matching refs:uint64_t

49 	uint64_t H[8];
51 uint64_t total[2];
52 uint64_t buflen;
76 static const uint64_t K[80] = {
124 const uint64_t *words = buffer; in sha512_process_block()
125 size_t nwords = len / sizeof(uint64_t); in sha512_process_block()
126 uint64_t a = ctx->H[0]; in sha512_process_block()
127 uint64_t b = ctx->H[1]; in sha512_process_block()
128 uint64_t c = ctx->H[2]; in sha512_process_block()
129 uint64_t d = ctx->H[3]; in sha512_process_block()
130 uint64_t e = ctx->H[4]; in sha512_process_block()
131 uint64_t f = ctx->H[5]; in sha512_process_block()
132 uint64_t g = ctx->H[6]; in sha512_process_block()
133 uint64_t h = ctx->H[7]; in sha512_process_block()
146 uint64_t W[80]; in sha512_process_block()
147 uint64_t a_save = a; in sha512_process_block()
148 uint64_t b_save = b; in sha512_process_block()
149 uint64_t c_save = c; in sha512_process_block()
150 uint64_t d_save = d; in sha512_process_block()
151 uint64_t e_save = e; in sha512_process_block()
152 uint64_t f_save = f; in sha512_process_block()
153 uint64_t g_save = g; in sha512_process_block()
154 uint64_t h_save = h; in sha512_process_block()
181 uint64_t T1 = h + S1 (e) + Ch (e, f, g) + K[t] + W[t]; in sha512_process_block()
182 uint64_t T2 = S0 (a) + Maj (a, b, c); in sha512_process_block()
244 uint64_t bytes = ctx->buflen; in sha512_finish_ctx()
258 *(uint64_t *) &ctx->buffer[bytes + pad + 8] = SWAP(ctx->total[0] << 3); in sha512_finish_ctx()
259 *(uint64_t *) &ctx->buffer[bytes + pad] = SWAP((ctx->total[1] << 3) | in sha512_finish_ctx()
267 ((uint64_t *) resbuf)[i] = SWAP(ctx->H[i]); in sha512_finish_ctx()
303 # define UNALIGNED_P(p) (((uintptr_t) p) % __alignof__ (uint64_t) != 0) in sha512_process_bytes()
305 # define UNALIGNED_P(p) (((uintptr_t) p) % sizeof(uint64_t) != 0) in sha512_process_bytes()
365 ZEND_SET_ALIGNED(__alignof__ (uint64_t), unsigned char alt_result[64]); in php_sha512_crypt_r()
366 ZEND_SET_ALIGNED(__alignof__ (uint64_t), unsigned char temp_result[64]); in php_sha512_crypt_r()
404 if ((key - (char *) 0) % __alignof__ (uint64_t) != 0) { in php_sha512_crypt_r()
405 char *tmp = (char *) alloca (key_len + __alignof__ (uint64_t)); in php_sha512_crypt_r()
407 memcpy(tmp + __alignof__(uint64_t) - (tmp - (char *) 0) % __alignof__(uint64_t), key, key_len); in php_sha512_crypt_r()
410 if ((salt - (char *) 0) % __alignof__ (uint64_t) != 0) { in php_sha512_crypt_r()
411 char *tmp = (char *) alloca(salt_len + 1 + __alignof__(uint64_t)); in php_sha512_crypt_r()
412 …salt = copied_salt = memcpy(tmp + __alignof__(uint64_t) - (tmp - (char *) 0) % __alignof__(uint64_… in php_sha512_crypt_r()