Home
last modified time | relevance | path

Searched refs:data_buf (Results 51 - 75 of 215) sorted by relevance

123456789

/third_party/rust/crates/rust-openssl/openssl/src/
H A Dsign.rs352 /// Signs the data in `data_buf` and writes the signature into the buffer `sig_buf`, returning the
367 data_buf: &[u8], in sign_oneshot()
375 data_buf.as_ptr() as *const _, in sign_oneshot()
376 data_buf.len(), in sign_oneshot()
386 pub fn sign_oneshot_to_vec(&mut self, data_buf: &[u8]) -> Result<Vec<u8>, ErrorStack> { in sign_oneshot_to_vec()
388 let len = self.sign_oneshot(&mut sig_buf, data_buf)?; in sign_oneshot_to_vec()
/kernel/linux/linux-5.10/drivers/net/ethernet/freescale/enetc/
H A Denetc_qos.c638 struct sfi_counter_data *data_buf; in enetc_streamcounter_hw_get() local
649 data_buf = kzalloc(data_size, __GFP_DMA | GFP_KERNEL); in enetc_streamcounter_hw_get()
650 if (!data_buf) in enetc_streamcounter_hw_get()
653 dma = dma_map_single(&priv->si->pdev->dev, data_buf, in enetc_streamcounter_hw_get()
670 ((u64)le32_to_cpu(data_buf->matchh) << 32) in enetc_streamcounter_hw_get()
671 + data_buf->matchl; in enetc_streamcounter_hw_get()
674 ((u64)le32_to_cpu(data_buf->msdu_droph) << 32) in enetc_streamcounter_hw_get()
675 + data_buf->msdu_dropl; in enetc_streamcounter_hw_get()
681 ((u64)le32_to_cpu(data_buf->stream_gate_droph) << 32) in enetc_streamcounter_hw_get()
682 + le32_to_cpu(data_buf in enetc_streamcounter_hw_get()
[all...]
/third_party/ffmpeg/libavcodec/
H A Dcbs.c795 AVBufferRef *data_buf, in cbs_insert_unit_data()
804 if (data_buf) in cbs_insert_unit_data()
805 data_ref = av_buffer_ref(data_buf); in cbs_insert_unit_data()
809 if (!data_buf) in cbs_insert_unit_data()
832 AVBufferRef *data_buf) in ff_cbs_append_unit_data()
835 data, data_size, data_buf, in ff_cbs_append_unit_data()
792 cbs_insert_unit_data(CodedBitstreamFragment *frag, CodedBitstreamUnitType type, uint8_t *data, size_t data_size, AVBufferRef *data_buf, int position) cbs_insert_unit_data() argument
829 ff_cbs_append_unit_data(CodedBitstreamFragment *frag, CodedBitstreamUnitType type, uint8_t *data, size_t data_size, AVBufferRef *data_buf) ff_cbs_append_unit_data() argument
/third_party/node/deps/openssl/openssl/providers/implementations/ciphers/
H A Dcipher_aes_ocb.h35 unsigned char data_buf[OCB_MAX_DATA_LEN]; /* Store partial data blocks */ member
/third_party/openssl/providers/implementations/ciphers/
H A Dcipher_aes_ocb.h35 unsigned char data_buf[OCB_MAX_DATA_LEN]; /* Store partial data blocks */ member
/kernel/linux/linux-5.10/drivers/mtd/nand/raw/
H A Dmeson_nand.c119 u8 *data_buf; member
340 return meson_chip->data_buf + len; in meson_nfc_oob_ptr()
351 return meson_chip->data_buf + len; in meson_nfc_data_ptr()
652 ret = meson_nfc_dma_buffer_setup(nand, meson_chip->data_buf, in meson_nfc_write_page_sub()
693 memcpy(meson_chip->data_buf, buf, mtd->writesize); in meson_nfc_write_page_hwecc()
738 ret = meson_nfc_dma_buffer_setup(nand, meson_chip->data_buf, in meson_nfc_read_page_sub()
823 } else if (buf && buf != meson_chip->data_buf) { in meson_nfc_read_page_hwecc()
824 memcpy(buf, meson_chip->data_buf, mtd->writesize); in meson_nfc_read_page_hwecc()
1085 kfree(meson_chip->data_buf); in meson_nfc_free_buffer()
1099 meson_chip->data_buf in meson_chip_buffer_init()
[all...]
/kernel/linux/linux-6.6/drivers/mtd/nand/raw/
H A Dmeson_nand.c128 u8 *data_buf; member
372 return meson_chip->data_buf + len; in meson_nfc_oob_ptr()
383 return meson_chip->data_buf + len; in meson_nfc_data_ptr()
738 ret = meson_nfc_dma_buffer_setup(nand, meson_chip->data_buf, in meson_nfc_write_page_sub()
779 memcpy(meson_chip->data_buf, buf, mtd->writesize); in meson_nfc_write_page_hwecc()
824 ret = meson_nfc_dma_buffer_setup(nand, meson_chip->data_buf, in meson_nfc_read_page_sub()
909 } else if (buf && buf != meson_chip->data_buf) { in meson_nfc_read_page_hwecc()
910 memcpy(buf, meson_chip->data_buf, mtd->writesize); in meson_nfc_read_page_hwecc()
1205 kfree(meson_chip->data_buf); in meson_nfc_free_buffer()
1219 meson_chip->data_buf in meson_chip_buffer_init()
[all...]
/kernel/linux/linux-5.10/drivers/ide/
H A Dide-taskfile.c469 u8 *data_buf = NULL; in ide_taskfile_ioctl() local
590 data_buf = outbuf; in ide_taskfile_ioctl()
608 data_buf = inbuf; in ide_taskfile_ioctl()
631 err = ide_raw_taskfile(drive, &cmd, data_buf, nsect); in ide_taskfile_ioctl()
/kernel/linux/linux-5.10/drivers/macintosh/
H A Dsmu.c125 DPRINTK("SMU: data buffer: %8ph\n", cmd->data_buf); in smu_start_cmd()
130 memcpy(smu->cmd_buf->data, cmd->data_buf, cmd->data_len); in smu_start_cmd()
304 cmd->data_buf = scmd->buffer; in smu_queue_simple()
815 scmd->data_buf = cmd->pdata; in smu_i2c_low_completion()
837 cmd->scmd.data_buf = (u8 *)(char *)&cmd->info; in smu_queue_i2c()
922 cmd.data_buf = params; in smu_read_datablock()
1161 pp->cmd.data_buf = pp->buffer; in smu_write()
/kernel/linux/linux-6.6/drivers/macintosh/
H A Dsmu.c126 DPRINTK("SMU: data buffer: %8ph\n", cmd->data_buf); in smu_start_cmd()
131 memcpy(smu->cmd_buf->data, cmd->data_buf, cmd->data_len); in smu_start_cmd()
305 cmd->data_buf = scmd->buffer; in smu_queue_simple()
814 scmd->data_buf = cmd->pdata; in smu_i2c_low_completion()
836 cmd->scmd.data_buf = (u8 *)(char *)&cmd->info; in smu_queue_i2c()
922 cmd.data_buf = params; in smu_read_datablock()
1161 pp->cmd.data_buf = pp->buffer; in smu_write()
/kernel/linux/linux-6.6/drivers/media/i2c/
H A Dov01a10.c305 u8 data_buf[4] = {0}; in ov01a10_read_reg() local
308 if (len > sizeof(data_buf)) in ov01a10_read_reg()
319 msgs[1].buf = &data_buf[sizeof(data_buf) - len]; in ov01a10_read_reg()
326 *val = get_unaligned_be32(data_buf); in ov01a10_read_reg()
H A Dov9734.c373 u8 data_buf[4] = {0}; in ov9734_read_reg() local
376 if (len > sizeof(data_buf)) in ov9734_read_reg()
387 msgs[1].buf = &data_buf[sizeof(data_buf) - len]; in ov9734_read_reg()
393 *val = get_unaligned_be32(data_buf); in ov9734_read_reg()
/kernel/linux/linux-6.6/arch/powerpc/platforms/pseries/
H A Ddlpar.c142 char *data_buf; in dlpar_configure_connector() local
151 data_buf = rtas_work_area_raw_buf(work_area); in dlpar_configure_connector()
153 ccwa = (struct cc_workarea *)&data_buf[0]; in dlpar_configure_connector()
/kernel/liteos_m/components/net/lwip-2.1/porting/src/
H A Dapi_shell.c327 char *data_buf = NULL; in OsPingFunc() local
362 data_buf = (char *)iecho + sizeof(struct icmp_echo_hdr) + PING_ZERO_DATA_LEN; in OsPingFunc()
364 *(data_buf + i) = i + 0x10; in OsPingFunc()
/kernel/linux/linux-6.6/drivers/net/ethernet/freescale/enetc/
H A Denetc_qos.c665 struct sfi_counter_data *data_buf; in enetc_streamcounter_hw_get() local
679 &dma, (void *)&data_buf); in enetc_streamcounter_hw_get()
687 cnt->matching_frames_count = ((u64)data_buf->matchh << 32) + in enetc_streamcounter_hw_get()
688 data_buf->matchl; in enetc_streamcounter_hw_get()
690 cnt->not_passing_sdu_count = ((u64)data_buf->msdu_droph << 32) + in enetc_streamcounter_hw_get()
691 data_buf->msdu_dropl; in enetc_streamcounter_hw_get()
697 ((u64)data_buf->stream_gate_droph << 32) + in enetc_streamcounter_hw_get()
698 data_buf->stream_gate_dropl; in enetc_streamcounter_hw_get()
704 cnt->red_frames_count = ((u64)data_buf->flow_meter_droph << 32) + in enetc_streamcounter_hw_get()
705 data_buf in enetc_streamcounter_hw_get()
[all...]
/kernel/linux/linux-5.10/drivers/usb/gadget/function/
H A Dtcm.h73 void *data_buf; /* used if no sg support available */ member
/kernel/linux/linux-6.6/drivers/usb/gadget/function/
H A Dtcm.h73 void *data_buf; /* used if no sg support available */ member
/kernel/linux/linux-5.10/drivers/i2c/busses/
H A Di2c-tegra-bpmp.c105 char *buf = request->xfer.data_buf; in tegra_bpmp_serialize_i2c_msg()
155 char *buf = response->xfer.data_buf; in tegra_bpmp_i2c_deserialize()
/kernel/linux/linux-5.10/drivers/net/wireless/marvell/mwifiex/
H A D11h.c146 void *data_buf) in mwifiex_cmd_issue_chan_report_request()
149 struct mwifiex_radar_params *radar_params = (void *)data_buf; in mwifiex_cmd_issue_chan_report_request()
144 mwifiex_cmd_issue_chan_report_request(struct mwifiex_private *priv, struct host_cmd_ds_command *cmd, void *data_buf) mwifiex_cmd_issue_chan_report_request() argument
H A D11n_rxreorder.c445 int mwifiex_cmd_11n_addba_req(struct host_cmd_ds_command *cmd, void *data_buf) in mwifiex_cmd_11n_addba_req() argument
451 memcpy(add_ba_req, data_buf, sizeof(*add_ba_req)); in mwifiex_cmd_11n_addba_req()
535 int mwifiex_cmd_11n_delba(struct host_cmd_ds_command *cmd, void *data_buf) in mwifiex_cmd_11n_delba() argument
541 memcpy(del_ba, data_buf, sizeof(*del_ba)); in mwifiex_cmd_11n_delba()
/kernel/linux/linux-6.6/drivers/net/wireless/marvell/mwifiex/
H A D11h.c134 void *data_buf) in mwifiex_cmd_issue_chan_report_request()
137 struct mwifiex_radar_params *radar_params = (void *)data_buf; in mwifiex_cmd_issue_chan_report_request()
132 mwifiex_cmd_issue_chan_report_request(struct mwifiex_private *priv, struct host_cmd_ds_command *cmd, void *data_buf) mwifiex_cmd_issue_chan_report_request() argument
/kernel/linux/linux-6.6/drivers/i2c/busses/
H A Di2c-tegra-bpmp.c87 char *buf = request->xfer.data_buf; in tegra_bpmp_serialize_i2c_msg()
132 char *buf = response->xfer.data_buf; in tegra_bpmp_i2c_deserialize()
/kernel/linux/linux-5.10/drivers/gpu/drm/virtio/
H A Dvirtgpu_vq.c176 kvfree(vbuf->data_buf); in free_vbuf()
389 if (is_vmalloc_addr(vbuf->data_buf)) { in virtio_gpu_queue_fenced_ctrl_buffer()
391 sgt = vmalloc_to_sgt(vbuf->data_buf, vbuf->data_size, in virtio_gpu_queue_fenced_ctrl_buffer()
402 sg_init_one(&vout, vbuf->data_buf, vbuf->data_size); in virtio_gpu_queue_fenced_ctrl_buffer()
640 vbuf->data_buf = ents; in virtio_gpu_cmd_resource_attach_backing()
1080 vbuf->data_buf = data; in virtio_gpu_cmd_submit()
/kernel/linux/linux-5.10/drivers/staging/ks7010/
H A Dks7010_sdio.c645 unsigned char *data_buf; in ks7010_sdio_update_index() local
647 data_buf = kmemdup(&index, sizeof(u32), GFP_KERNEL); in ks7010_sdio_update_index()
648 if (!data_buf) in ks7010_sdio_update_index()
651 ret = ks7010_sdio_write(priv, WRITE_INDEX_REG, data_buf, sizeof(index)); in ks7010_sdio_update_index()
655 ret = ks7010_sdio_write(priv, READ_INDEX_REG, data_buf, sizeof(index)); in ks7010_sdio_update_index()
662 kfree(data_buf); in ks7010_sdio_update_index()
/kernel/linux/linux-6.6/drivers/staging/ks7010/
H A Dks7010_sdio.c645 unsigned char *data_buf; in ks7010_sdio_update_index() local
647 data_buf = kmemdup(&index, sizeof(u32), GFP_KERNEL); in ks7010_sdio_update_index()
648 if (!data_buf) in ks7010_sdio_update_index()
651 ret = ks7010_sdio_write(priv, WRITE_INDEX_REG, data_buf, sizeof(index)); in ks7010_sdio_update_index()
655 ret = ks7010_sdio_write(priv, READ_INDEX_REG, data_buf, sizeof(index)); in ks7010_sdio_update_index()
662 kfree(data_buf); in ks7010_sdio_update_index()

Completed in 27 milliseconds

123456789