Lines Matching refs:blockp
140 uint8_t *blockp; in gcm_mode_encrypt_contiguous_blocks() local
175 blockp = (uint8_t *)ctx->gcm_remainder; in gcm_mode_encrypt_contiguous_blocks()
177 blockp = datap; in gcm_mode_encrypt_contiguous_blocks()
191 xor_block(blockp, (uint8_t *)ctx->gcm_tmp); in gcm_mode_encrypt_contiguous_blocks()
199 bcopy(blockp, ctx->gcm_copy_to, in gcm_mode_encrypt_contiguous_blocks()
201 bcopy(blockp + ctx->gcm_remainder_len, datap, in gcm_mode_encrypt_contiguous_blocks()
416 uint8_t *blockp; in gcm_decrypt_final() local
426 blockp = ctx->gcm_pt_buf; in gcm_decrypt_final()
431 bcopy(blockp, ctx->gcm_remainder, remainder); in gcm_decrypt_final()
443 GHASH(ctx, blockp, ghash); in gcm_decrypt_final()
458 xor_block(cbp, blockp); in gcm_decrypt_final()
461 blockp += block_size; in gcm_decrypt_final()