michael_count      58 crypto/michael.c 		ctx->michael_state |= data[i] << (ctx->michael_count << 3);
michael_count      59 crypto/michael.c 		ctx->michael_count++;
michael_count      61 crypto/michael.c 		if (ctx->michael_count >= MICHAEL_RAW_BLOCK_LENGTH) {
michael_count      64 crypto/michael.c 			ctx->michael_state = ctx->michael_count = 0;
michael_count      30 crypto/michael.h 	u_int		michael_count;