wctx              782 crypto/wp512.c static void wp512_process_buffer(struct wp512_ctx *wctx) {
wctx              788 crypto/wp512.c 	const __be64 *buffer = (const __be64 *)wctx->buffer;
wctx              793 crypto/wp512.c 	state[0] = block[0] ^ (K[0] = wctx->hash[0]);
wctx              794 crypto/wp512.c 	state[1] = block[1] ^ (K[1] = wctx->hash[1]);
wctx              795 crypto/wp512.c 	state[2] = block[2] ^ (K[2] = wctx->hash[2]);
wctx              796 crypto/wp512.c 	state[3] = block[3] ^ (K[3] = wctx->hash[3]);
wctx              797 crypto/wp512.c 	state[4] = block[4] ^ (K[4] = wctx->hash[4]);
wctx              798 crypto/wp512.c 	state[5] = block[5] ^ (K[5] = wctx->hash[5]);
wctx              799 crypto/wp512.c 	state[6] = block[6] ^ (K[6] = wctx->hash[6]);
wctx              800 crypto/wp512.c 	state[7] = block[7] ^ (K[7] = wctx->hash[7]);
wctx              978 crypto/wp512.c 	wctx->hash[0] ^= state[0] ^ block[0];
wctx              979 crypto/wp512.c 	wctx->hash[1] ^= state[1] ^ block[1];
wctx              980 crypto/wp512.c 	wctx->hash[2] ^= state[2] ^ block[2];
wctx              981 crypto/wp512.c 	wctx->hash[3] ^= state[3] ^ block[3];
wctx              982 crypto/wp512.c 	wctx->hash[4] ^= state[4] ^ block[4];
wctx              983 crypto/wp512.c 	wctx->hash[5] ^= state[5] ^ block[5];
wctx              984 crypto/wp512.c 	wctx->hash[6] ^= state[6] ^ block[6];
wctx              985 crypto/wp512.c 	wctx->hash[7] ^= state[7] ^ block[7];
wctx              990 crypto/wp512.c 	struct wp512_ctx *wctx = shash_desc_ctx(desc);
wctx              993 crypto/wp512.c 	memset(wctx->bitLength, 0, 32);
wctx              994 crypto/wp512.c 	wctx->bufferBits = wctx->bufferPos = 0;
wctx              995 crypto/wp512.c 	wctx->buffer[0] = 0;
wctx              997 crypto/wp512.c 		wctx->hash[i] = 0L;
wctx             1006 crypto/wp512.c 	struct wp512_ctx *wctx = shash_desc_ctx(desc);
wctx             1010 crypto/wp512.c 	int bufferRem    = wctx->bufferBits & 7;
wctx             1013 crypto/wp512.c 	u8 *buffer       = wctx->buffer;
wctx             1014 crypto/wp512.c 	u8 *bitLength    = wctx->bitLength;
wctx             1015 crypto/wp512.c 	int bufferBits   = wctx->bufferBits;
wctx             1016 crypto/wp512.c 	int bufferPos    = wctx->bufferPos;
wctx             1031 crypto/wp512.c 			wp512_process_buffer(wctx);
wctx             1052 crypto/wp512.c 			wp512_process_buffer(wctx);
wctx             1059 crypto/wp512.c 	wctx->bufferBits   = bufferBits;
wctx             1060 crypto/wp512.c 	wctx->bufferPos    = bufferPos;
wctx             1067 crypto/wp512.c 	struct wp512_ctx *wctx = shash_desc_ctx(desc);
wctx             1069 crypto/wp512.c    	u8 *buffer      = wctx->buffer;
wctx             1070 crypto/wp512.c    	u8 *bitLength   = wctx->bitLength;
wctx             1071 crypto/wp512.c    	int bufferBits  = wctx->bufferBits;
wctx             1072 crypto/wp512.c    	int bufferPos   = wctx->bufferPos;
wctx             1081 crypto/wp512.c    		wp512_process_buffer(wctx);
wctx             1091 crypto/wp512.c    	wp512_process_buffer(wctx);
wctx             1093 crypto/wp512.c 		digest[i] = cpu_to_be64(wctx->hash[i]);
wctx             1094 crypto/wp512.c    	wctx->bufferBits   = bufferBits;
wctx             1095 crypto/wp512.c    	wctx->bufferPos    = bufferPos;