Lines Matching refs:uint64_t

47 	uint64_t H[8];
49 uint64_t total[2];
50 uint64_t buflen;
74 static const uint64_t K[80] = {
122 const uint64_t *words = buffer; in sha512_process_block()
123 size_t nwords = len / sizeof(uint64_t); in sha512_process_block()
124 uint64_t a = ctx->H[0]; in sha512_process_block()
125 uint64_t b = ctx->H[1]; in sha512_process_block()
126 uint64_t c = ctx->H[2]; in sha512_process_block()
127 uint64_t d = ctx->H[3]; in sha512_process_block()
128 uint64_t e = ctx->H[4]; in sha512_process_block()
129 uint64_t f = ctx->H[5]; in sha512_process_block()
130 uint64_t g = ctx->H[6]; in sha512_process_block()
131 uint64_t h = ctx->H[7]; in sha512_process_block()
144 uint64_t W[80]; in sha512_process_block()
145 uint64_t a_save = a; in sha512_process_block()
146 uint64_t b_save = b; in sha512_process_block()
147 uint64_t c_save = c; in sha512_process_block()
148 uint64_t d_save = d; in sha512_process_block()
149 uint64_t e_save = e; in sha512_process_block()
150 uint64_t f_save = f; in sha512_process_block()
151 uint64_t g_save = g; in sha512_process_block()
152 uint64_t h_save = h; in sha512_process_block()
179 uint64_t T1 = h + S1 (e) + Ch (e, f, g) + K[t] + W[t]; in sha512_process_block()
180 uint64_t T2 = S0 (a) + Maj (a, b, c); in sha512_process_block()
242 uint64_t bytes = ctx->buflen; in sha512_finish_ctx()
256 *(uint64_t *) &ctx->buffer[bytes + pad + 8] = SWAP(ctx->total[0] << 3); in sha512_finish_ctx()
257 *(uint64_t *) &ctx->buffer[bytes + pad] = SWAP((ctx->total[1] << 3) | in sha512_finish_ctx()
265 ((uint64_t *) resbuf)[i] = SWAP(ctx->H[i]); in sha512_finish_ctx()
301 # define UNALIGNED_P(p) (((uintptr_t) p) % __alignof__ (uint64_t) != 0) in sha512_process_bytes()
303 # define UNALIGNED_P(p) (((uintptr_t) p) % sizeof(uint64_t) != 0) in sha512_process_bytes()
363 ZEND_SET_ALIGNED(__alignof__ (uint64_t), unsigned char alt_result[64]); in php_sha512_crypt_r()
364 ZEND_SET_ALIGNED(__alignof__ (uint64_t), unsigned char temp_result[64]); in php_sha512_crypt_r()
413 if ((uintptr_t)key % __alignof__ (uint64_t) != 0) { in php_sha512_crypt_r()
414 tmp_key = (char *) do_alloca(key_len + __alignof__ (uint64_t), use_heap_key); in php_sha512_crypt_r()
416 …memcpy(tmp_key + __alignof__(uint64_t) - (uintptr_t)tmp_key % __alignof__(uint64_t), key, key_len); in php_sha512_crypt_r()
419 if ((uintptr_t)salt % __alignof__ (uint64_t) != 0) { in php_sha512_crypt_r()
420 tmp_salt = (char *) do_alloca(salt_len + 1 + __alignof__(uint64_t), use_heap_salt); in php_sha512_crypt_r()
421 …lt = copied_salt = memcpy(tmp_salt + __alignof__(uint64_t) - (uintptr_t)tmp_salt % __alignof__(uin… in php_sha512_crypt_r()