Home
last modified time | relevance | path

Searched refs:ip_masked (Results 1 – 2 of 2) sorted by relevance

/dpdk/lib/lpm/
H A Drte_lpm.c654 tbl24_index = (ip_masked >> 8); in add_depth_big()
669 (ip_masked & 0xFF); in add_depth_big()
804 uint32_t ip_masked; in rte_lpm_add() local
811 ip_masked = ip & depth_to_mask(depth); in rte_lpm_add()
854 uint32_t ip_masked; in rte_lpm_is_rule_present() local
865 ip_masked = ip & depth_to_mask(depth); in rte_lpm_is_rule_present()
882 uint32_t ip_masked; in find_previous_rule() local
908 tbl24_index = (ip_masked >> 8); in delete_depth_small()
1066 tbl24_index = ip_masked >> 8; in delete_depth_big()
1147 uint32_t ip_masked; in rte_lpm_delete() local
[all …]
/dpdk/lib/fib/
H A Dtrie.c511 uint8_t ip_masked[RTE_FIB6_IPV6_ADDR_SIZE]; in trie_modify() local
525 ip_masked[i] = ip[i] & get_msk_part(depth, i); in trie_modify()
528 tmp = rte_rib6_get_nxt(rib, ip_masked, in trie_modify()
542 node = rte_rib6_lookup_exact(rib, ip_masked, depth); in trie_modify()
549 ret = modify_dp(dp, rib, ip_masked, depth, next_hop); in trie_modify()
559 node = rte_rib6_insert(rib, ip_masked, depth); in trie_modify()
569 ret = modify_dp(dp, rib, ip_masked, depth, next_hop); in trie_modify()
571 rte_rib6_remove(rib, ip_masked, depth); in trie_modify()
586 ret = modify_dp(dp, rib, ip_masked, depth, in trie_modify()
589 ret = modify_dp(dp, rib, ip_masked, depth, dp->def_nh); in trie_modify()