Home
last modified time | relevance | path

Searched refs:tsize (Results 1 – 12 of 12) sorted by relevance

/f-stack/freebsd/contrib/openzfs/module/zfs/
H A Dvdev_raidz_math_impl.h732 const v_t * const xend = x + (tsize / sizeof (v_t)); in raidz_syn_r_abd()
828 const v_t * const yend = y + (tsize / sizeof (v_t)); in raidz_syn_pq_abd()
858 const v_t * const xend = x + (tsize / sizeof (v_t)); in raidz_rec_pq_abd()
989 const v_t * const yend = y + (tsize / sizeof (v_t)); in raidz_syn_pr_abd()
1014 raidz_rec_pr_abd(void **t, const size_t tsize, void **c, in raidz_rec_pr_abd() argument
1019 const v_t * const xend = x + (tsize / sizeof (v_t)); in raidz_rec_pr_abd()
1149 const v_t * const xend = x + (tsize / sizeof (v_t)); in raidz_syn_qr_abd()
1178 raidz_rec_qr_abd(void **t, const size_t tsize, void **c, in raidz_rec_qr_abd() argument
1183 const v_t * const xend = x + (tsize / sizeof (v_t)); in raidz_rec_qr_abd()
1318 const v_t * const yend = y + (tsize / sizeof (v_t)); in raidz_syn_pqr_abd()
[all …]
H A Dabd.c1133 ssize_t tsize, const unsigned parity, in abd_raidz_rec_iterate() argument
1134 void (*func_raidz_rec)(void **t, const size_t tsize, void **c, in abd_raidz_rec_iterate() argument
1161 while (tsize > 0) { in abd_raidz_rec_iterate()
1178 len = tsize; in abd_raidz_rec_iterate()
1213 tsize -= len; in abd_raidz_rec_iterate()
1214 ASSERT3S(tsize, >=, 0); in abd_raidz_rec_iterate()
H A Darc.c8034 uint64_t size, dev_size, tsize; in l2arc_write_size() local
8057 tsize = size + l2arc_log_blk_overhead(size, dev); in l2arc_write_size()
8059 tsize += MAX(64 * 1024 * 1024, in l2arc_write_size()
8060 (tsize * l2arc_trim_ahead) / 100); in l2arc_write_size()
8062 if (tsize >= dev_size) { in l2arc_write_size()
/f-stack/dpdk/drivers/net/bnx2x/
H A Dbnx2x_rxtx.c240 unsigned int tsize; in bnx2x_dev_tx_queue_setup() local
274 tsize = txq->nb_tx_desc * sizeof(union eth_tx_bd_types); in bnx2x_dev_tx_queue_setup()
275 tz = ring_dma_zone_reserve(dev, "tx_hw_ring", queue_idx, tsize, socket_id); in bnx2x_dev_tx_queue_setup()
282 memset(txq->tx_ring, 0, tsize); in bnx2x_dev_tx_queue_setup()
285 tsize = txq->nb_tx_desc * sizeof(struct rte_mbuf *); in bnx2x_dev_tx_queue_setup()
286 txq->sw_ring = rte_zmalloc("tx_sw_ring", tsize, in bnx2x_dev_tx_queue_setup()
/f-stack/freebsd/contrib/openzfs/include/sys/
H A Dabd.h96 ssize_t tsize, const unsigned parity,
97 void (*func_raidz_rec)(void **t, const size_t tsize, void **c,
/f-stack/freebsd/kern/
H A Dvfs_cluster.c357 long tinc, tsize; in cluster_rbuild() local
459 tsize = size; in cluster_rbuild()
460 for (j = 0; tsize > 0; j++) { in cluster_rbuild()
462 tinc = tsize; in cluster_rbuild()
474 tsize -= tinc; in cluster_rbuild()
476 if (tsize > 0) { in cluster_rbuild()
/f-stack/dpdk/drivers/net/axgbe/
H A Daxgbe_rxtx.c493 unsigned int tsize; in axgbe_dev_tx_queue_setup() local
530 tsize = txq->nb_desc * sizeof(struct axgbe_tx_desc); in axgbe_dev_tx_queue_setup()
532 tsize, AXGBE_DESC_ALIGN, socket_id); in axgbe_dev_tx_queue_setup()
537 memset(tz->addr, 0, tsize); in axgbe_dev_tx_queue_setup()
550 tsize = txq->nb_desc * sizeof(struct rte_mbuf *); in axgbe_dev_tx_queue_setup()
551 txq->sw_ring = rte_zmalloc("tx_sw_ring", tsize, in axgbe_dev_tx_queue_setup()
/f-stack/freebsd/contrib/octeon-sdk/
H A Dcvmx-dfa.h398 …uint64_t tsize : 8; /**< tsize*256 is the number of terminal nodes for GRAPH_T… member
752 command.s.tsize = (graph->num_terminal_nodes + 255) / 256; in cvmx_dfa_submit()
/f-stack/dpdk/drivers/net/softnic/
H A Drte_eth_softnic_flow.c958 size_t tsize, in hash_key_mask_is_same() argument
977 tsize -= tpos; in hash_key_mask_is_same()
980 if (tsize < fsize) { in hash_key_mask_is_same()
983 for (i = 0; i < tsize; i++) in hash_key_mask_is_same()
997 for ( ; i < tsize; i++) in hash_key_mask_is_same()
/f-stack/dpdk/drivers/net/e1000/
H A Dem_rxtx.c1205 uint32_t tsize; in eth_em_tx_queue_setup() local
1278 tsize = sizeof(txq->tx_ring[0]) * E1000_MAX_RING_DESC; in eth_em_tx_queue_setup()
1279 tz = rte_eth_dma_zone_reserve(dev, "tx_ring", queue_idx, tsize, in eth_em_tx_queue_setup()
/f-stack/freebsd/contrib/openzfs/lib/libzfs/
H A Dlibzfs_dataset.c5416 uint64_t nparity, ashift, asize, tsize; in volsize_from_vdevs() local
5444 tsize = vdev_raidz_asize(ndisks, nparity, ashift, in volsize_from_vdevs()
5458 tsize = vdev_draid_asize(ndata + nparity, nparity, in volsize_from_vdevs()
5470 volsize = nblocks * asize * SPA_OLD_MAXBLOCKSIZE / tsize; in volsize_from_vdevs()
/f-stack/freebsd/vm/
H A Dvm_map.c3781 vm_size_t tsize; in vm_map_sync() local
3786 tsize = tentry->end - offset; in vm_map_sync()
3787 if (tsize < size) in vm_map_sync()
3788 size = tsize; in vm_map_sync()