Home
last modified time | relevance | path

Searched refs:ptbl (Results 1 – 8 of 8) sorted by relevance

/f-stack/dpdk/lib/librte_lpm/
H A Drte_lpm_sse.h25 const uint32_t *ptbl; in rte_lpm_lookupx4() local
55 tbl[0] = *ptbl; in rte_lpm_lookupx4()
56 ptbl = (const uint32_t *)&lpm->tbl24[idx >> 32]; in rte_lpm_lookupx4()
57 tbl[1] = *ptbl; in rte_lpm_lookupx4()
62 tbl[2] = *ptbl; in rte_lpm_lookupx4()
63 ptbl = (const uint32_t *)&lpm->tbl24[idx >> 32]; in rte_lpm_lookupx4()
64 tbl[3] = *ptbl; in rte_lpm_lookupx4()
87 tbl[0] = *ptbl; in rte_lpm_lookupx4()
94 tbl[1] = *ptbl; in rte_lpm_lookupx4()
101 tbl[2] = *ptbl; in rte_lpm_lookupx4()
[all …]
H A Drte_lpm_neon.h26 const uint32_t *ptbl; in rte_lpm_lookupx4() local
54 tbl[0] = *ptbl; in rte_lpm_lookupx4()
55 ptbl = (const uint32_t *)&lpm->tbl24[idx >> 32]; in rte_lpm_lookupx4()
56 tbl[1] = *ptbl; in rte_lpm_lookupx4()
61 tbl[2] = *ptbl; in rte_lpm_lookupx4()
62 ptbl = (const uint32_t *)&lpm->tbl24[idx >> 32]; in rte_lpm_lookupx4()
63 tbl[3] = *ptbl; in rte_lpm_lookupx4()
86 tbl[0] = *ptbl; in rte_lpm_lookupx4()
93 tbl[1] = *ptbl; in rte_lpm_lookupx4()
100 tbl[2] = *ptbl; in rte_lpm_lookupx4()
[all …]
H A Drte_lpm_altivec.h26 const uint32_t *ptbl; in rte_lpm_lookupx4() local
54 ptbl = (const uint32_t *)&lpm->tbl24[idx]; in rte_lpm_lookupx4()
55 tbl[0] = *ptbl; in rte_lpm_lookupx4()
59 ptbl = (const uint32_t *)&lpm->tbl24[idx]; in rte_lpm_lookupx4()
60 tbl[1] = *ptbl; in rte_lpm_lookupx4()
65 tbl[2] = *ptbl; in rte_lpm_lookupx4()
70 tbl[3] = *ptbl; in rte_lpm_lookupx4()
93 tbl[0] = *ptbl; in rte_lpm_lookupx4()
100 tbl[1] = *ptbl; in rte_lpm_lookupx4()
107 tbl[2] = *ptbl; in rte_lpm_lookupx4()
[all …]
H A Drte_lpm.h290 const uint32_t *ptbl; in rte_lpm_lookup() local
296 ptbl = (const uint32_t *)(&lpm->tbl24[tbl24_index]); in rte_lpm_lookup()
297 tbl_entry = *ptbl; in rte_lpm_lookup()
311 ptbl = (const uint32_t *)&lpm->tbl8[tbl8_index]; in rte_lpm_lookup()
312 tbl_entry = *ptbl; in rte_lpm_lookup()
348 const uint32_t *ptbl; in rte_lpm_lookup_bulk_func() local
360 ptbl = (const uint32_t *)&lpm->tbl24[tbl24_indexes[i]]; in rte_lpm_lookup_bulk_func()
361 next_hops[i] = *ptbl; in rte_lpm_lookup_bulk_func()
371 ptbl = (const uint32_t *)&lpm->tbl8[tbl8_index]; in rte_lpm_lookup_bulk_func()
372 next_hops[i] = *ptbl; in rte_lpm_lookup_bulk_func()
/f-stack/freebsd/contrib/dpdk_rte_lpm/
H A Drte_lpm.h275 const uint32_t *ptbl; in rte_lpm_lookup() local
281 ptbl = (const uint32_t *)(&lpm->tbl24[tbl24_index]); in rte_lpm_lookup()
282 tbl_entry = *ptbl; in rte_lpm_lookup()
296 ptbl = (const uint32_t *)&lpm->tbl8[tbl8_index]; in rte_lpm_lookup()
297 tbl_entry = *ptbl; in rte_lpm_lookup()
333 const uint32_t *ptbl; in rte_lpm_lookup_bulk_func() local
345 ptbl = (const uint32_t *)&lpm->tbl24[tbl24_indexes[i]]; in rte_lpm_lookup_bulk_func()
346 next_hops[i] = *ptbl; in rte_lpm_lookup_bulk_func()
356 ptbl = (const uint32_t *)&lpm->tbl8[tbl8_index]; in rte_lpm_lookup_bulk_func()
357 next_hops[i] = *ptbl; in rte_lpm_lookup_bulk_func()
/f-stack/freebsd/netinet/
H A Dtcp_ratelimit.h44 const struct tcp_rate_set *ptbl; /* Pointer to parent table */ member
H A Dtcp_ratelimit.c672 rs->rs_rlt[i].ptbl = rs; in rt_setup_new_rs()
1306 rs = crte->ptbl; in tcp_chg_pacing_rate()
1384 crs = crte->ptbl; in tcp_rel_pacing_rate()
/f-stack/freebsd/netinet/tcp_stacks/
H A Dbbr.c5584 bbr->r_ctl.crte->ptbl->rs_ifp, in bbr_update_hardware_pacing_rate()
5658 (seg_sz < bbr->r_ctl.crte->ptbl->rs_min_seg)) { in bbr_adjust_for_hw_pacing()
5664 seg_sz = bbr->r_ctl.crte->ptbl->rs_min_seg; in bbr_adjust_for_hw_pacing()
5680 (seg_sz < bbr->r_ctl.crte->ptbl->rs_min_seg)) { in bbr_adjust_for_hw_pacing()
5686 seg_sz = bbr->r_ctl.crte->ptbl->rs_min_seg; in bbr_adjust_for_hw_pacing()
14092 bbr->r_ctl.crte->ptbl->rs_ifp, in bbr_output_wtime()