Lines Matching refs:B
61 ctx->B = 0xefcdab89; in sha1_init_ctx()
79 ((sha1_uint32 *) resbuf)[1] = SWAP (ctx->B); in sha1_read_ctx()
277 #define F1(B,C,D) ( D ^ ( B & ( C ^ D ) ) ) argument
278 #define F2(B,C,D) (B ^ C ^ D) argument
279 #define F3(B,C,D) ( ( B & C ) | ( D & ( B | C ) ) ) argument
280 #define F4(B,C,D) (B ^ C ^ D) argument
294 sha1_uint32 b = ctx->B; in sha1_process_block()
311 #define R(A,B,C,D,E,F,K,M) do { E += rol( A, 5 ) \ in sha1_process_block() argument
312 + F( B, C, D ) \ in sha1_process_block()
315 B = rol( B, 30 ); \ in sha1_process_block()
410 b = ctx->B += b; in sha1_process_block()