Home
last modified time | relevance | path

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

/f-stack/freebsd/contrib/dpdk_rte_lpm/
H A Drte_lpm.c428 for (group_idx = 0; group_idx < number_tbl8s; group_idx++) { in tbl8_alloc()
447 return group_idx; in tbl8_alloc()
469 #define group_idx next_hop in add_depth_small() macro
533 #undef group_idx in add_depth_small()
541 #define group_idx next_hop in add_depth_big() macro
582 .group_idx = tbl8_group_index, in add_depth_big()
683 #undef group_idx in add_depth_big()
795 #define group_idx next_hop in delete_depth_small() macro
885 #undef group_idx in delete_depth_small()
948 #define group_idx next_hop in delete_depth_big() macro
[all …]
/f-stack/dpdk/lib/librte_lpm/
H A Drte_lpm.c506 for (group_idx = 0; group_idx < i_lpm->number_tbl8s; group_idx++) { in _tbl8_alloc()
526 return group_idx; in _tbl8_alloc()
547 return group_idx; in tbl8_alloc()
584 #define group_idx next_hop in add_depth_small() macro
648 #undef group_idx in add_depth_small()
656 #define group_idx next_hop in add_depth_big() macro
798 #undef group_idx in add_depth_big()
910 #define group_idx next_hop in delete_depth_small() macro
1001 #undef group_idx in delete_depth_small()
1064 #define group_idx next_hop in delete_depth_big() macro
[all …]
/f-stack/dpdk/app/test/
H A Dtest_lpm.c1216 #define group_idx next_hop in test18() macro
1236 tbl8_group_index = lpm->tbl24[ip>>8].group_idx; in test18()
1252 TEST_LPM_ASSERT(tbl8_group_index == lpm->tbl24[ip>>8].group_idx); in test18()
1268 TEST_LPM_ASSERT(tbl8_group_index == lpm->tbl24[ip>>8].group_idx); in test18()
1271 #undef group_idx in test18()
/f-stack/dpdk/drivers/baseband/acc100/
H A Drte_acc100_pmd.c795 uint16_t group_idx = qtop->first_qgroup_index; in acc100_find_free_queue_idx() local
796 group_idx += conf->priority; in acc100_find_free_queue_idx()
797 if (group_idx >= ACC100_NUM_QGRPS || in acc100_find_free_queue_idx()
806 if (((d->q_assigned_bit_map[group_idx] >> aq_idx) & 0x1) == 0) { in acc100_find_free_queue_idx()
808 d->q_assigned_bit_map[group_idx] |= (1 << aq_idx); in acc100_find_free_queue_idx()
810 return (group_idx << ACC100_GRP_ID_SHIFT) + aq_idx; in acc100_find_free_queue_idx()