Searched refs:lastp (Results 1 – 8 of 8) sorted by relevance
| /f-stack/freebsd/contrib/openzfs/module/icp/algs/modes/ |
| H A D | cbc.c | 45 uint8_t *lastp; in cbc_encrypt_contiguous_blocks() local 62 lastp = (uint8_t *)ctx->cbc_iv; in cbc_encrypt_contiguous_blocks() 85 xor_block(blockp, lastp); in cbc_encrypt_contiguous_blocks() 86 encrypt(ctx->cbc_keysched, lastp, lastp); in cbc_encrypt_contiguous_blocks() 92 copy_block(lastp, out_data_1); in cbc_encrypt_contiguous_blocks() 152 uint8_t *lastp; in cbc_decrypt_contiguous_blocks() local 169 lastp = ctx->cbc_lastp; in cbc_decrypt_contiguous_blocks() 199 xor_block(lastp, blockp); in cbc_decrypt_contiguous_blocks() 202 lastp = (uint8_t *)OTHER((uint64_t *)lastp, ctx); in cbc_decrypt_contiguous_blocks() 230 ctx->cbc_lastp = lastp; in cbc_decrypt_contiguous_blocks() [all …]
|
| H A D | ctr.c | 45 uint8_t *lastp; in ctr_mode_contiguous_blocks() local 63 lastp = (uint8_t *)ctx->ctr_cb; in ctr_mode_contiguous_blocks() 86 lastp = (uint8_t *)ctx->ctr_tmp; in ctr_mode_contiguous_blocks() 111 xor_block(blockp, lastp); in ctr_mode_contiguous_blocks() 117 bcopy(lastp, out_data_1, out_data_1_len); in ctr_mode_contiguous_blocks() 119 bcopy(lastp + out_data_1_len, out_data_2, in ctr_mode_contiguous_blocks() 154 uint8_t *lastp; in ctr_mode_final() local 169 lastp = (uint8_t *)ctx->ctr_tmp; in ctr_mode_final() 172 p[i] ^= lastp[i]; in ctr_mode_final()
|
| H A D | ecb.c | 43 uint8_t *lastp; in ecb_cipher_contiguous_blocks() local 60 lastp = (uint8_t *)ctx->ecb_iv; in ecb_cipher_contiguous_blocks() 79 cipher(ctx->ecb_keysched, blockp, lastp); in ecb_cipher_contiguous_blocks() 84 bcopy(lastp, out_data_1, out_data_1_len); in ecb_cipher_contiguous_blocks() 86 bcopy(lastp + out_data_1_len, out_data_2, in ecb_cipher_contiguous_blocks()
|
| H A D | ccm.c | 51 uint8_t *lastp; in ccm_mode_encrypt_contiguous_blocks() local 70 lastp = (uint8_t *)ctx->ccm_cb; in ccm_mode_encrypt_contiguous_blocks() 104 lastp = (uint8_t *)ctx->ccm_tmp; in ccm_mode_encrypt_contiguous_blocks() 124 xor_block(blockp, lastp); in ccm_mode_encrypt_contiguous_blocks() 133 copy_block(lastp, out_data_1); in ccm_mode_encrypt_contiguous_blocks() 135 bcopy(lastp, out_data_1, out_data_1_len); in ccm_mode_encrypt_contiguous_blocks() 137 bcopy(lastp + out_data_1_len, in ccm_mode_encrypt_contiguous_blocks() 199 uint8_t *lastp, *mac_buf, *ccm_mac_p, *macp = NULL; in ccm_encrypt_final() local 238 lastp = (uint8_t *)ctx->ccm_tmp; in ccm_encrypt_final() 239 encrypt_block(ctx->ccm_keysched, (uint8_t *)ctx->ccm_cb, lastp); in ccm_encrypt_final() [all …]
|
| H A D | gcm.c | 100 uint8_t *lastp; in gcm_mode_encrypt_contiguous_blocks() local 121 lastp = (uint8_t *)ctx->gcm_cb; in gcm_mode_encrypt_contiguous_blocks() 154 lastp = (uint8_t *)ctx->gcm_tmp; in gcm_mode_encrypt_contiguous_blocks() 163 copy_block(lastp, out_data_1); in gcm_mode_encrypt_contiguous_blocks() 165 bcopy(lastp, out_data_1, out_data_1_len); in gcm_mode_encrypt_contiguous_blocks() 167 bcopy(lastp + out_data_1_len, in gcm_mode_encrypt_contiguous_blocks()
|
| /f-stack/freebsd/contrib/openzfs/cmd/zed/ |
| H A D | zed_event.c | 222 const char *lastp; in _zed_event_add_var() local 246 lastp = keybuf + sizeof (keybuf); in _zed_event_add_var() 248 for (srcp = prefix; *srcp && (dstp < lastp); srcp++) in _zed_event_add_var() 251 for (srcp = name; *srcp && (dstp < lastp); srcp++) in _zed_event_add_var() 254 if (dstp == lastp) { in _zed_event_add_var()
|
| /f-stack/freebsd/contrib/ipfilter/netinet/ |
| H A D | radix_ipf.c | 64 count_mask_bits(mask, lastp) in count_mask_bits() argument 66 u_32_t **lastp; 77 if (lastp != NULL) 78 *lastp = mp;
|
| /f-stack/freebsd/kern/ |
| H A D | kern_linker.c | 787 void *firstp, void *lastp, int *countp) in linker_file_lookup_set() argument 791 return (LINKER_LOOKUP_SET(file, name, firstp, lastp, countp)); in linker_file_lookup_set()
|