Searched refs:buf_size (Results 151 - 175 of 555) sorted by relevance

1234567891011>>

/linux-master/drivers/net/wwan/iosm/
H A Diosm_ipc_protocol_ops.c349 skb = ipc_pcie_alloc_skb(ipc_protocol->pcie, pipe->buf_size, GFP_ATOMIC,
356 td->scs = cpu_to_le32(pipe->buf_size) & cpu_to_le32(SIZE_MASK);
410 } else if ((le32_to_cpu(p_td->scs) & SIZE_MASK) > pipe->buf_size) {
413 pipe->buf_size);
/linux-master/include/linux/
H A Dblktrace_api.h103 u32 buf_size; member in struct:compat_blk_user_trace_setup
/linux-master/drivers/media/radio/si470x/
H A Dradio-si470x-i2c.c310 if (radio->wr_index >= radio->buf_size)
317 if (radio->rd_index >= radio->buf_size)
422 radio->buf_size = rds_buf * 3;
423 radio->buffer = devm_kmalloc(&client->dev, radio->buf_size, GFP_KERNEL);
/linux-master/drivers/net/ethernet/hisilicon/hns/
H A Dhns_dsaf_rcb.c216 *@buf_size: buffer size set to hw
218 void hns_rcb_set_tx_ring_bs(struct hnae_queue *q, u32 buf_size) argument
220 u32 bd_size_type = hns_rcb_buf_size2type(buf_size);
228 *@buf_size: buffer size set to hw
230 void hns_rcb_set_rx_ring_bs(struct hnae_queue *q, u32 buf_size) argument
232 u32 bd_size_type = hns_rcb_buf_size2type(buf_size);
256 hns_rcb_set_rx_ring_bs(q, ring->buf_size);
268 hns_rcb_set_tx_ring_bs(q, ring->buf_size);
413 int hns_rcb_buf_size2type(u32 buf_size) argument
417 switch (buf_size) {
[all...]
/linux-master/sound/soc/sof/amd/
H A Dacp-probes.c92 offsetof(struct scratch_reg_conf, buf_size);
H A Dacp-pcm.c47 offsetof(struct scratch_reg_conf, buf_size);
/linux-master/kernel/debug/kdb/
H A Dkdb_io.c223 int key, buf_size, ret; local
342 buf_size = sizeof(tmpbuffer) - (p_tmp - tmpbuffer);
343 count = kallsyms_symbol_complete(p_tmp, buf_size);
355 ret = kallsyms_symbol_next(p_tmp, i, buf_size);
/linux-master/drivers/net/ethernet/intel/idpf/
H A Didpf_controlq_setup.c60 bi->va = idpf_alloc_dma_mem(hw, bi, cq->buf_size);
/linux-master/drivers/net/ethernet/intel/ice/
H A Dice_flex_pipe.h28 u16 buf_size, struct ice_sq_cd *cd);
H A Dice_sched.h72 struct ice_aqc_txsched_elem_data *buf, u16 buf_size,
165 u16 buf_size, u16 *grps_movd);
/linux-master/drivers/scsi/fnic/
H A Dfnic_stats.h125 int buf_size; member in struct:stats_debug_info
/linux-master/drivers/input/touchscreen/
H A Dwdt87xx_i2c.c278 u8 *buf, size_t buf_size)
283 size_t rx_len = buf_size + 2;
309 rx_len = min_t(size_t, buf_size, get_unaligned_le16(rx_buf));
318 const u8 *buf, size_t buf_size)
337 tx_buf[tx_len++] = (buf_size & 0xFF);
338 tx_buf[tx_len++] = ((buf_size & 0xFF00) >> 8);
340 if (tx_len + buf_size > sizeof(tx_buf))
343 memcpy(&tx_buf[tx_len], buf, buf_size);
344 tx_len += buf_size;
277 wdt87xx_get_feature(struct i2c_client *client, u8 *buf, size_t buf_size) argument
317 wdt87xx_set_feature(struct i2c_client *client, const u8 *buf, size_t buf_size) argument
/linux-master/fs/btrfs/
H A Dverity.c659 * @buf_size: size of the output buffer. 0 to query the size
662 * it calls with buf_size = 0 to query the size of the descriptor, and then in
667 int btrfs_get_verity_descriptor(struct inode *inode, void *buf, size_t buf_size) argument
686 if (buf_size == 0)
688 if (buf_size < true_size)
692 buf, buf_size, NULL);
/linux-master/drivers/net/wireless/mediatek/mt76/
H A Ddma.c454 SKB_WITH_OVERHEAD(q->buf_size),
466 SKB_WITH_OVERHEAD(q->buf_size),
636 int len = SKB_WITH_OVERHEAD(q->buf_size);
654 buf = mt76_get_page_pool_buf(q, &offset, q->buf_size);
693 q->buf_size = bufsize;
813 skb_add_rx_frag(skb, nr_frags, page, offset, len, q->buf_size);
865 data_len = q->buf_size;
867 data_len = SKB_WITH_OVERHEAD(q->buf_size);
885 skb = napi_build_skb(data, q->buf_size);
H A Dwed.c37 int i, len = SKB_WITH_OVERHEAD(q->buf_size);
51 buf = mt76_get_page_pool_buf(q, &offset, q->buf_size);
/linux-master/drivers/gpu/drm/amd/display/modules/hdcp/
H A Dhdcp_log.c30 uint8_t *buf, uint32_t buf_size)
43 if (buf_size >= target_size) {
29 mod_hdcp_dump_binary_message(uint8_t *msg, uint32_t msg_size, uint8_t *buf, uint32_t buf_size) argument
/linux-master/drivers/net/wireless/realtek/rtw88/
H A Dpci.h166 __le16 buf_size; member in struct:rtw_pci_tx_buffer_desc
194 __le16 buf_size; member in struct:rtw_pci_rx_buffer_desc
/linux-master/drivers/infiniband/sw/rxe/
H A Drxe_queue.h66 size_t buf_size; member in struct:rxe_queue
81 size_t buf_size, struct rxe_mmap_info **ip_p);
/linux-master/drivers/gpu/drm/xen/
H A Dxen_drm_front_gem.c45 size_t buf_size)
47 xen_obj->num_pages = DIV_ROUND_UP(buf_size, PAGE_SIZE);
44 gem_alloc_pages_array(struct xen_gem_object *xen_obj, size_t buf_size) argument
/linux-master/drivers/infiniband/hw/irdma/
H A Dpuda.h93 u16 buf_size; member in struct:irdma_puda_rsrc_info
110 u16 buf_size; /*buf must be max datalen + tcpip hdr + mac */ member in struct:irdma_puda_rsrc
/linux-master/drivers/media/platform/qcom/venus/
H A Dhfi_cmds.h244 u32 buf_size; member in struct:hfi_sfr
245 u8 data[] __counted_by(buf_size);
/linux-master/arch/powerpc/platforms/ps3/
H A Dgelic_udbg.c47 __be32 buf_size; member in struct:gelic_descr
199 dbg.descr.buf_size = header_size + msgsize;
/linux-master/drivers/gpu/drm/xe/
H A Dxe_guc_relay.c406 u32 *buf, u32 buf_size)
478 const u32 *msg, u32 len, u32 *buf, u32 buf_size)
491 txn = relay_new_transaction(relay, target, msg, len, buf, buf_size);
497 ret = relay_send_message_and_wait(relay, txn, buf, buf_size);
522 * @buf_size: size of the response message placeholder (in dwords)
530 const u32 *msg, u32 len, u32 *buf, u32 buf_size)
534 return relay_send_to(relay, target, msg, len, buf, buf_size);
544 * @buf_size: size of the response message placeholder (in dwords)
552 const u32 *msg, u32 len, u32 *buf, u32 buf_size)
556 return relay_send_to(relay, PFID, msg, len, buf, buf_size);
404 relay_send_message_and_wait(struct xe_guc_relay *relay, struct relay_transaction *txn, u32 *buf, u32 buf_size) argument
477 relay_send_to(struct xe_guc_relay *relay, u32 target, const u32 *msg, u32 len, u32 *buf, u32 buf_size) argument
529 xe_guc_relay_send_to_vf(struct xe_guc_relay *relay, u32 target, const u32 *msg, u32 len, u32 *buf, u32 buf_size) argument
551 xe_guc_relay_send_to_pf(struct xe_guc_relay *relay, const u32 *msg, u32 len, u32 *buf, u32 buf_size) argument
[all...]
/linux-master/drivers/media/platform/samsung/s5p-mfc/
H A Ds5p_mfc_opr_v5.c37 const struct s5p_mfc_buf_size_v5 *buf_size = dev->variant->buf_size->priv; local
40 ctx->dsc.size = buf_size->dsc;
203 const struct s5p_mfc_buf_size_v5 *buf_size = dev->variant->buf_size->priv; local
208 ctx->ctx.size = buf_size->h264_ctx;
210 ctx->ctx.size = buf_size->non_h264_ctx;
224 ctx->shm.size = buf_size->shm;
236 memset(ctx->shm.virt, 0, buf_size->shm);
348 const struct s5p_mfc_buf_size_v5 *buf_size local
362 s5p_mfc_set_dec_stream_buffer_v5(struct s5p_mfc_ctx *ctx, int buf_addr, unsigned int start_num_byte, unsigned int buf_size) argument
[all...]
/linux-master/drivers/net/ethernet/cavium/liquidio/
H A Docteon_console.c39 char *buffer, u32 buf_size);
114 u32 buf_size; member in struct:octeon_pci_console
675 buf_size);
758 char *buffer, u32 buf_size)
785 bytes_to_read = min_t(s32, bytes_to_read, buf_size);
757 octeon_console_read(struct octeon_device *oct, u32 console_num, char *buffer, u32 buf_size) argument

Completed in 246 milliseconds

1234567891011>>