Lines Matching refs:sha1_uint32
71 ((sha1_uint32 *) resbuf)[0] = SWAP (ctx->A); in sha1_read_ctx()
72 ((sha1_uint32 *) resbuf)[1] = SWAP (ctx->B); in sha1_read_ctx()
73 ((sha1_uint32 *) resbuf)[2] = SWAP (ctx->C); in sha1_read_ctx()
74 ((sha1_uint32 *) resbuf)[3] = SWAP (ctx->D); in sha1_read_ctx()
75 ((sha1_uint32 *) resbuf)[4] = SWAP (ctx->E); in sha1_read_ctx()
96 sha1_uint32 bytes = ctx->buflen; in sha1_finish_ctx()
154 # define UNALIGNED_P(p) (((sha1_uintptr) p) % __alignof__ (sha1_uint32) != 0) in sha1_process_bytes()
156 # define UNALIGNED_P(p) (((sha1_uintptr) p) % sizeof (sha1_uint32) != 0) in sha1_process_bytes()
217 sha1_uint32 computed_words[16]; in sha1_process_block()
219 const sha1_uint32 *words = buffer; in sha1_process_block()
220 size_t nwords = len / sizeof (sha1_uint32); in sha1_process_block()
221 const sha1_uint32 *endp = words + nwords; in sha1_process_block()
222 sha1_uint32 A = ctx->A; in sha1_process_block()
223 sha1_uint32 B = ctx->B; in sha1_process_block()
224 sha1_uint32 C = ctx->C; in sha1_process_block()
225 sha1_uint32 D = ctx->D; in sha1_process_block()
226 sha1_uint32 E = ctx->E; in sha1_process_block()
239 sha1_uint32 A_save = A; in sha1_process_block()
240 sha1_uint32 B_save = B; in sha1_process_block()
241 sha1_uint32 C_save = C; in sha1_process_block()
242 sha1_uint32 D_save = D; in sha1_process_block()
243 sha1_uint32 E_save = E; in sha1_process_block()