Home
last modified time | relevance | path

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

/dpdk/lib/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.h286 const uint32_t *ptbl; in rte_lpm_lookup() local
292 ptbl = (const uint32_t *)(&lpm->tbl24[tbl24_index]); in rte_lpm_lookup()
293 tbl_entry = *ptbl; in rte_lpm_lookup()
307 ptbl = (const uint32_t *)&lpm->tbl8[tbl8_index]; in rte_lpm_lookup()
308 tbl_entry = *ptbl; in rte_lpm_lookup()
344 const uint32_t *ptbl; in rte_lpm_lookup_bulk_func() local
356 ptbl = (const uint32_t *)&lpm->tbl24[tbl24_indexes[i]]; in rte_lpm_lookup_bulk_func()
357 next_hops[i] = *ptbl; in rte_lpm_lookup_bulk_func()
367 ptbl = (const uint32_t *)&lpm->tbl8[tbl8_index]; in rte_lpm_lookup_bulk_func()
368 next_hops[i] = *ptbl; in rte_lpm_lookup_bulk_func()