Searched refs:blockp (Results 1 – 6 of 6) sorted by relevance
| /f-stack/freebsd/mips/nlm/ |
| H A D | board.c | 463 blockp->block = block; in nlm_setup_xlp_board() 475 blockp->type = SGMIIC; in nlm_setup_xlp_board() 477 blockp->portmask = 0x3; in nlm_setup_xlp_board() 479 blockp->portmask = 0x1; in nlm_setup_xlp_board() 484 blockp->type = ILC; in nlm_setup_xlp_board() 485 blockp->portmask = 0x1; in nlm_setup_xlp_board() 489 blockp->type = SGMIIC; in nlm_setup_xlp_board() 490 blockp->portmask = 0xf; in nlm_setup_xlp_board() 494 blockp->type = XAUIC; in nlm_setup_xlp_board() 500 blockp->portmask = 0; in nlm_setup_xlp_board() [all …]
|
| /f-stack/freebsd/contrib/openzfs/module/icp/algs/modes/ |
| H A D | cbc.c | 44 uint8_t *blockp; in cbc_encrypt_contiguous_blocks() local 76 blockp = (uint8_t *)ctx->cbc_remainder; in cbc_encrypt_contiguous_blocks() 78 blockp = datap; in cbc_encrypt_contiguous_blocks() 85 xor_block(blockp, lastp); in cbc_encrypt_contiguous_blocks() 151 uint8_t *blockp; in cbc_decrypt_contiguous_blocks() local 183 blockp = (uint8_t *)ctx->cbc_remainder; in cbc_decrypt_contiguous_blocks() 185 blockp = datap; in cbc_decrypt_contiguous_blocks() 191 decrypt(ctx->cbc_keysched, blockp, in cbc_decrypt_contiguous_blocks() 193 blockp = (uint8_t *)ctx->cbc_remainder; in cbc_decrypt_contiguous_blocks() 199 xor_block(lastp, blockp); in cbc_decrypt_contiguous_blocks() [all …]
|
| H A D | ecb.c | 42 uint8_t *blockp; in ecb_cipher_contiguous_blocks() local 74 blockp = (uint8_t *)ctx->ecb_remainder; in ecb_cipher_contiguous_blocks() 76 blockp = datap; in ecb_cipher_contiguous_blocks() 79 cipher(ctx->ecb_keysched, blockp, lastp); in ecb_cipher_contiguous_blocks()
|
| H A D | ctr.c | 44 uint8_t *blockp; in ctr_mode_contiguous_blocks() local 77 blockp = (uint8_t *)ctx->ctr_remainder; in ctr_mode_contiguous_blocks() 79 blockp = datap; in ctr_mode_contiguous_blocks() 111 xor_block(blockp, lastp); in ctr_mode_contiguous_blocks()
|
| H A D | ccm.c | 50 uint8_t *blockp; in ccm_mode_encrypt_contiguous_blocks() local 86 blockp = (uint8_t *)ctx->ccm_remainder; in ccm_mode_encrypt_contiguous_blocks() 88 blockp = datap; in ccm_mode_encrypt_contiguous_blocks() 97 xor_block(blockp, mac_buf); in ccm_mode_encrypt_contiguous_blocks() 124 xor_block(blockp, lastp); in ccm_mode_encrypt_contiguous_blocks() 356 uint8_t *blockp; in ccm_mode_decrypt_contiguous_blocks() local 448 blockp = (uint8_t *)ctx->ccm_remainder; in ccm_mode_decrypt_contiguous_blocks() 450 blockp = datap; in ccm_mode_decrypt_contiguous_blocks() 473 xor_block(blockp, cbp); in ccm_mode_decrypt_contiguous_blocks() 482 ctx->ccm_lastp = blockp; in ccm_mode_decrypt_contiguous_blocks()
|
| H A D | gcm.c | 99 uint8_t *blockp; in gcm_mode_encrypt_contiguous_blocks() local 136 blockp = (uint8_t *)ctx->gcm_remainder; in gcm_mode_encrypt_contiguous_blocks() 138 blockp = datap; in gcm_mode_encrypt_contiguous_blocks() 152 xor_block(blockp, (uint8_t *)ctx->gcm_tmp); in gcm_mode_encrypt_contiguous_blocks() 377 uint8_t *blockp; in gcm_decrypt_final() local 388 blockp = ctx->gcm_pt_buf; in gcm_decrypt_final() 393 bcopy(blockp, ctx->gcm_remainder, remainder); in gcm_decrypt_final() 405 GHASH(ctx, blockp, ghash, gops); in gcm_decrypt_final() 420 xor_block(cbp, blockp); in gcm_decrypt_final() 423 blockp += block_size; in gcm_decrypt_final()
|