Home
last modified time | relevance | path

Searched refs:buf_cnt (Results 1 – 9 of 9) sorted by relevance

/linux/drivers/crypto/ccree/
H A Dcc_hash.h49 u32 buf_cnt[2]; member
61 return &state->buf_cnt[state->buff_index]; in cc_hash_buf_cnt()
71 return &state->buf_cnt[state->buff_index ^ 1]; in cc_next_buf_cnt()
/linux/drivers/net/ethernet/cavium/liquidio/
H A Docteon_droq.c332 u32 buf_cnt, in octeon_create_recv_info() argument
350 recv_pkt->buffer_count = (u16)buf_cnt; in octeon_create_recv_info()
356 while (buf_cnt) { in octeon_create_recv_info()
376 buf_cnt--; in octeon_create_recv_info()
565 u32 i = 0, buf_cnt; in octeon_droq_drop_packets() local
576 buf_cnt = octeon_droq_get_bufcount(droq->buffer_size, in octeon_droq_drop_packets()
580 buf_cnt = 1; in octeon_droq_drop_packets()
583 droq->read_idx = incr_index(droq->read_idx, buf_cnt, in octeon_droq_drop_packets()
585 droq->refill_count += buf_cnt; in octeon_droq_drop_packets()
627 u32 buf_cnt; in octeon_droq_fast_process_packets() local
[all …]
/linux/arch/mips/include/asm/octeon/
H A Dcvmx-pow-defs.h589 uint64_t buf_cnt:12; member
601 uint64_t buf_cnt:12;
611 uint64_t buf_cnt:7; member
625 uint64_t buf_cnt:7;
636 uint64_t buf_cnt:9; member
650 uint64_t buf_cnt:9;
661 uint64_t buf_cnt:10; member
675 uint64_t buf_cnt:10;
686 uint64_t buf_cnt:11; member
700 uint64_t buf_cnt:11;
/linux/drivers/net/wwan/t7xx/
H A Dt7xx_hif_dpmaif_rx.c167 const unsigned int q_num, const unsigned int buf_cnt, in t7xx_dpmaif_rx_buf_alloc() argument
173 if (!buf_cnt || buf_cnt > bat_req->bat_size_cnt) in t7xx_dpmaif_rx_buf_alloc()
181 if (buf_cnt > bat_cnt) in t7xx_dpmaif_rx_buf_alloc()
186 for (i = 0; i < buf_cnt; i++) { in t7xx_dpmaif_rx_buf_alloc()
321 const unsigned int buf_cnt, const bool initial) in t7xx_dpmaif_rx_frag_alloc() argument
327 if (!buf_cnt || buf_cnt > bat_req->bat_size_cnt) in t7xx_dpmaif_rx_frag_alloc()
333 if (buf_cnt > buf_space) { in t7xx_dpmaif_rx_frag_alloc()
339 for (i = 0; i < buf_cnt; i++) { in t7xx_dpmaif_rx_frag_alloc()
382 if (i < buf_cnt) { in t7xx_dpmaif_rx_frag_alloc()
H A Dt7xx_hif_dpmaif_rx.h103 const unsigned int q_num, const unsigned int buf_cnt,
106 const unsigned int buf_cnt, const bool first_time);
H A Dt7xx_hif_dpmaif.c305 unsigned int buf_cnt; in t7xx_dpmaif_start() local
328 buf_cnt = dpmaif_ctrl->bat_req.bat_size_cnt - 1; in t7xx_dpmaif_start()
329 ret = t7xx_dpmaif_rx_buf_alloc(dpmaif_ctrl, &dpmaif_ctrl->bat_req, 0, buf_cnt, true); in t7xx_dpmaif_start()
335 buf_cnt = dpmaif_ctrl->bat_frag.bat_size_cnt - 1; in t7xx_dpmaif_start()
336 ret = t7xx_dpmaif_rx_frag_alloc(dpmaif_ctrl, &dpmaif_ctrl->bat_frag, buf_cnt, true); in t7xx_dpmaif_start()
/linux/drivers/net/ethernet/freescale/dpaa2/
H A Ddpaa2-eth-debugfs.c125 int i, j, num_queues, buf_cnt; in dpaa2_dbg_bp_show() local
146 err = dpaa2_io_query_bp_count(NULL, bp->bpid, &buf_cnt); in dpaa2_dbg_bp_show()
152 seq_printf(file, "%3s%d%10d%15d", "BP#", i, bp->bpid, buf_cnt); in dpaa2_dbg_bp_show()
/linux/drivers/net/can/usb/
H A Dnct6694_canfd.c61 #define NCT6694_CANFD_DELIVER_SEL(buf_cnt) \ argument
62 ((buf_cnt) & 0xFF)
66 #define NCT6694_CANFD_RECEIVE_SEL(idx, buf_cnt) \ argument
67 ((idx ? 0x80 : 0x00) | ((buf_cnt) & 0x7F))
/linux/include/linux/
H A Dvfio_pci_core.h200 bool vfio_pci_core_range_intersect_range(loff_t buf_start, size_t buf_cnt,