Home
last modified time | relevance | path

Searched refs:datap (Results 1 – 25 of 32) sorted by relevance

12

/f-stack/freebsd/contrib/openzfs/module/icp/algs/modes/
H A Dcbc.c54 bcopy(datap, in cbc_encrypt_contiguous_blocks()
58 ctx->cbc_copy_to = datap; in cbc_encrypt_contiguous_blocks()
78 blockp = datap; in cbc_encrypt_contiguous_blocks()
106 datap += need; in cbc_encrypt_contiguous_blocks()
109 datap += block_size; in cbc_encrypt_contiguous_blocks()
118 ctx->cbc_copy_to = datap; in cbc_encrypt_contiguous_blocks()
161 bcopy(datap, in cbc_decrypt_contiguous_blocks()
165 ctx->cbc_copy_to = datap; in cbc_decrypt_contiguous_blocks()
185 blockp = datap; in cbc_decrypt_contiguous_blocks()
218 datap += need; in cbc_decrypt_contiguous_blocks()
[all …]
H A Decb.c41 uint8_t *datap = (uint8_t *)data; in ecb_cipher_contiguous_blocks() local
52 bcopy(datap, in ecb_cipher_contiguous_blocks()
56 ctx->ecb_copy_to = datap; in ecb_cipher_contiguous_blocks()
71 bcopy(datap, &((uint8_t *)ctx->ecb_remainder) in ecb_cipher_contiguous_blocks()
76 blockp = datap; in ecb_cipher_contiguous_blocks()
94 datap += need; in ecb_cipher_contiguous_blocks()
97 datap += block_size; in ecb_cipher_contiguous_blocks()
100 remainder = (size_t)&data[length] - (size_t)datap; in ecb_cipher_contiguous_blocks()
104 bcopy(datap, ctx->ecb_remainder, remainder); in ecb_cipher_contiguous_blocks()
106 ctx->ecb_copy_to = datap; in ecb_cipher_contiguous_blocks()
H A Dgcm.c111 bcopy(datap, in gcm_mode_encrypt_contiguous_blocks()
138 blockp = datap; in gcm_mode_encrypt_contiguous_blocks()
180 datap += need; in gcm_mode_encrypt_contiguous_blocks()
183 datap += block_size; in gcm_mode_encrypt_contiguous_blocks()
1222 datap += need; in gcm_mode_encrypt_contiguous_blocks_avx()
1264 datap += done; in gcm_mode_encrypt_contiguous_blocks_avx()
1393 done = aesni_gcm_decrypt(datap, datap, chunk_size, in gcm_decrypt_final_avx()
1400 datap += done; in gcm_decrypt_final_avx()
1405 done = aesni_gcm_decrypt(datap, datap, bleft, in gcm_decrypt_final_avx()
1412 datap += done; in gcm_decrypt_final_avx()
[all …]
H A Dccm.c62 bcopy(datap, in ccm_mode_encrypt_contiguous_blocks()
66 ctx->ccm_copy_to = datap; in ccm_mode_encrypt_contiguous_blocks()
88 blockp = datap; in ccm_mode_encrypt_contiguous_blocks()
147 datap += need; in ccm_mode_encrypt_contiguous_blocks()
150 datap += block_size; in ccm_mode_encrypt_contiguous_blocks()
159 ctx->ccm_copy_to = datap; in ccm_mode_encrypt_contiguous_blocks()
429 bcopy(datap, in ccm_mode_decrypt_contiguous_blocks()
433 ctx->ccm_copy_to = datap; in ccm_mode_decrypt_contiguous_blocks()
450 blockp = datap; in ccm_mode_decrypt_contiguous_blocks()
486 datap += need; in ccm_mode_decrypt_contiguous_blocks()
[all …]
H A Dctr.c43 uint8_t *datap = (uint8_t *)data; in ctr_mode_contiguous_blocks() local
55 bcopy(datap, in ctr_mode_contiguous_blocks()
59 ctx->ctr_copy_to = datap; in ctr_mode_contiguous_blocks()
74 bcopy(datap, &((uint8_t *)ctx->ctr_remainder) in ctr_mode_contiguous_blocks()
79 blockp = datap; in ctr_mode_contiguous_blocks()
127 datap += need; in ctr_mode_contiguous_blocks()
130 datap += block_size; in ctr_mode_contiguous_blocks()
133 remainder = (size_t)&data[length] - (size_t)datap; in ctr_mode_contiguous_blocks()
137 bcopy(datap, ctx->ctr_remainder, remainder); in ctr_mode_contiguous_blocks()
139 ctx->ctr_copy_to = datap; in ctr_mode_contiguous_blocks()
/f-stack/dpdk/lib/librte_eal/windows/include/
H A Ddirent.h313 WIN32_FIND_DATAW *datap; in dirent_first() local
322 datap = &dirp->data; in dirent_first()
329 datap = NULL; in dirent_first()
332 return datap; in dirent_first()
449 WIN32_FIND_DATAW *datap; in readdir() local
453 datap = dirent_next(dirp->wdirp); in readdir()
454 if (datap) { in readdir()
460 PATH_MAX, datap->cFileName, PATH_MAX); in readdir()
473 if (error && datap->cAlternateFileName[0] != '\0') { in readdir()
476 datap->cAlternateFileName, PATH_MAX); in readdir()
[all …]
/f-stack/freebsd/contrib/openzfs/module/icp/core/
H A Dkcf_prov_lib.c48 uchar_t *datap; in crypto_uio_data() local
73 datap = (uchar_t *)(uio_iovbase(uiop, vec_idx) + offset); in crypto_uio_data()
76 bcopy(datap, buf, cur_len); in crypto_uio_data()
80 bcopy(buf, datap, cur_len); in crypto_uio_data()
84 if (bcmp(datap, buf, cur_len)) in crypto_uio_data()
/f-stack/freebsd/netgraph/
H A Dng_mppc.c173 struct mbuf **datap);
175 struct mbuf **datap);
477 ng_mppc_compress(node_p node, struct mbuf **datap) in ng_mppc_compress() argument
482 struct mbuf *m = *datap; in ng_mppc_compress()
617 *datap = m; in ng_mppc_compress()
618 return (*datap == NULL ? ENOBUFS : 0); in ng_mppc_compress()
626 ng_mppc_decompress(node_p node, struct mbuf **datap) in ng_mppc_decompress() argument
632 struct mbuf *m = *datap; in ng_mppc_decompress()
834 *datap = m; in ng_mppc_decompress()
835 return (*datap == NULL ? ENOBUFS : 0); in ng_mppc_decompress()
H A Dng_device.c384 struct ngd_param_s * datap;
396 datap = (struct ngd_param_s *)msg->data;
397 datap->p = addr;
/f-stack/freebsd/contrib/dev/ath/ath_hal/ar9300/
H A Dar9300_power.c211 u_int8_t* datap, in ar9300_wowoffload_download_acer_magic() argument
214 u_int32_t *p32 = (u_int32_t *) datap; in ar9300_wowoffload_download_acer_magic()
228 datap[0], datap[1], datap[2], datap[3], datap[4], datap[5]); in ar9300_wowoffload_download_acer_magic()
236 u_int32_t* datap) in ar9300_wowoffload_download_acer_swka() argument
271 OS_REG_WRITE(ah, ka_data[id] + i, *datap); in ar9300_wowoffload_download_acer_swka()
273 datap++; in ar9300_wowoffload_download_acer_swka()
H A Dar9300.h1383 …woffload_download_acer_magic(struct ath_hal *ah, HAL_BOOL valid, u_int8_t* datap, u_int32_t bytes);
1384 …uct ath_hal *ah, u_int32_t id, HAL_BOOL valid, u_int32_t period, u_int32_t size, u_int32_t* datap);
/f-stack/freebsd/contrib/openzfs/module/os/freebsd/zfs/
H A Dzfs_acl.c168 zfs_ace_v0_data(void *acep, void **datap) in zfs_ace_v0_data() argument
170 *datap = NULL; in zfs_ace_v0_data()
291 zfs_ace_fuid_data(void *acep, void **datap) in zfs_ace_fuid_data() argument
302 *datap = (caddr_t)zobjp + sizeof (zfs_ace_t); in zfs_ace_fuid_data()
305 *datap = NULL; in zfs_ace_fuid_data()
634 zfs_ace_walk(void *datap, uint64_t cookie, int aclcnt, in zfs_ace_walk() argument
637 zfs_acl_t *aclp = datap; in zfs_ace_walk()
653 void *datap, zfs_ace_t *z_acl, uint64_t aclcnt, size_t *size, in zfs_copy_ace_2_fuid() argument
659 ace_t *acep = datap; in zfs_copy_ace_2_fuid()
715 void *datap, int filter) in zfs_copy_fuid_2_ace() argument
[all …]
/f-stack/freebsd/contrib/openzfs/module/os/linux/zfs/
H A Dzfs_acl.c168 zfs_ace_v0_data(void *acep, void **datap) in zfs_ace_v0_data() argument
170 *datap = NULL; in zfs_ace_v0_data()
291 zfs_ace_fuid_data(void *acep, void **datap) in zfs_ace_fuid_data() argument
302 *datap = (caddr_t)zobjp + sizeof (zfs_ace_t); in zfs_ace_fuid_data()
305 *datap = NULL; in zfs_ace_fuid_data()
634 zfs_ace_walk(void *datap, uint64_t cookie, int aclcnt, in zfs_ace_walk() argument
637 zfs_acl_t *aclp = datap; in zfs_ace_walk()
653 void *datap, zfs_ace_t *z_acl, uint64_t aclcnt, size_t *size, in zfs_copy_ace_2_fuid() argument
659 ace_t *acep = datap; in zfs_copy_ace_2_fuid()
715 void *datap, int filter) in zfs_copy_fuid_2_ace() argument
[all …]
/f-stack/freebsd/arm/broadcom/bcm2835/
H A Dbcm2835_rng.c128 uint32_t *datap, bus_size_t count) in bcm2835_rng_read_multi4() argument
131 bus_read_multi_4(sc->sc_mem_res, off, datap, count); in bcm2835_rng_read_multi4()
/f-stack/freebsd/kern/
H A Dkern_module.c291 module_setspecific(module_t mod, modspecific_t *datap) in module_setspecific() argument
295 mod->data = *datap; in module_setspecific()
/f-stack/freebsd/contrib/openzfs/include/sys/
H A Dzfs_acl.h142 int (*ace_data)(void *acep, void **datap);
/f-stack/freebsd/sys/
H A Dconf.h322 int devfs_get_cdevpriv(void **datap);
/f-stack/freebsd/contrib/openzfs/module/zfs/
H A Ddbuf.c4037 arc_buf_t *datap = dr->dt.dl.dr_data; in dbuf_sync_leaf_verify_bonus_dnode() local
4038 char *datap_end = ((char *)datap) + bonuslen; in dbuf_sync_leaf_verify_bonus_dnode()
4039 char *datap_max = ((char *)datap) + maxbonuslen; in dbuf_sync_leaf_verify_bonus_dnode()
4202 arc_buf_t **datap = &dr->dt.dl.dr_data; in dbuf_sync_leaf() local
4293 *datap == db->db_buf) { in dbuf_sync_leaf()
4305 *datap = dbuf_alloc_arcbuf_from_arcbuf(db, db->db_buf); in dbuf_sync_leaf()
4306 bcopy(db->db.db_data, (*datap)->b_data, arc_buf_size(*datap)); in dbuf_sync_leaf()
4312 dbuf_write(dr, *datap, tx); in dbuf_sync_leaf()
/f-stack/dpdk/drivers/common/sfc_efx/base/
H A Def10_impl.h459 __deref_out_bcount_opt(*sizep) caddr_t *datap,
478 __deref_out_bcount_opt(*sizep) caddr_t *datap,
H A Def10_nvram.c1353 __deref_out_bcount_opt(*sizep) caddr_t *datap, in ef10_nvram_buf_read_tlv()
1394 *datap = data; in ef10_nvram_buf_read_tlv()
/f-stack/freebsd/contrib/ipfilter/netinet/
H A Dfil.c7797 void *data, **datap; local
7805 datap = &data;
7811 (void) ipf_derefrule(softc, (frentry_t **)datap);
7815 ipf_nat_rule_deref(softc, (ipnat_t **)datap);
7819 ipf_nat_deref(softc, (nat_t **)datap);
7822 ipf_state_deref(softc, (ipstate_t **)datap);
7825 ipf_frag_pkt_deref(softc, (ipfr_t **)datap);
7828 ipf_frag_nat_deref(softc, (ipfr_t **)datap);
7832 ipf_nat_hostmapdel(softc, (hostmap_t **)datap);
/f-stack/freebsd/arm64/linux/
H A Dlinux_systrace_args.c716 uarg[1] = (intptr_t) p->datap; /* struct l_user_cap_data * */ in systrace_args()
724 uarg[1] = (intptr_t) p->datap; /* struct l_user_cap_data * */ in systrace_args()
H A Dlinux_proto.h382 …char datap_l_[PADL_(struct l_user_cap_data *)]; struct l_user_cap_data * datap; char datap_r_[PADR… member
386 …char datap_l_[PADL_(struct l_user_cap_data *)]; struct l_user_cap_data * datap; char datap_r_[PADR… member
/f-stack/freebsd/arm/linux/
H A Dlinux_systrace_args.c1116 uarg[1] = (intptr_t) p->datap; /* struct l_user_cap_data * */ in systrace_args()
1124 uarg[1] = (intptr_t) p->datap; /* struct l_user_cap_data * */ in systrace_args()
/f-stack/freebsd/amd64/linux/
H A Dlinux_systrace_args.c1048 uarg[1] = (intptr_t) p->datap; /* struct l_user_cap_data * */ in systrace_args()
1056 uarg[1] = (intptr_t) p->datap; /* struct l_user_cap_data * */ in systrace_args()

12