Lines Matching defs:next_hops
320 * @param next_hops
327 * Number of elements in ips (and next_hops) array to lookup. This should be a
332 #define rte_lpm_lookup_bulk(lpm, ips, next_hops, n) \
333 rte_lpm_lookup_bulk_func(lpm, ips, next_hops, n)
337 uint32_t *next_hops, const unsigned n)
344 (next_hops == NULL)), -EINVAL);
351 next_hops[i] = *ptbl;
354 if (unlikely((next_hops[i] & RTE_LPM_VALID_EXT_ENTRY_BITMASK) ==
358 (((uint32_t)next_hops[i] & 0x00FFFFFF) *
362 next_hops[i] = *ptbl;
402 #define rte_lpm_lookup_bulk(lpm, ips, next_hops, n) \
403 __rte_lpm_lookup_vec(lpm, ips, next_hops, n)