Searched refs:is_covered (Results 1 – 2 of 2) sorted by relevance
| /dpdk/lib/rib/ |
| H A D | rte_rib.c | 66 is_covered(uint32_t ip1, uint32_t ip2, uint8_t depth) in is_covered() function 108 while ((cur != NULL) && is_covered(ip, cur->ip, cur->depth)) { in rte_rib_lookup() 140 !is_covered(ip, cur->ip, cur->depth)) in __rib_lookup_exact() 185 (is_covered(tmp->ip, ip, depth) && in rte_rib_get_nxt() 193 (is_covered(tmp->ip, ip, depth) && in rte_rib_get_nxt() 294 if ((d >= depth) || !is_covered(ip, (*tmp)->ip, d)) in rte_rib_insert()
|
| H A D | rte_rib6.c | 65 is_covered(const uint8_t ip1[RTE_RIB6_IPV6_ADDR_SIZE], in is_covered() function 143 while ((cur != NULL) && is_covered(ip, cur->ip, cur->depth)) { in rte_rib6_lookup() 189 if (!(is_covered(tmp_ip, cur->ip, cur->depth)) || in rte_rib6_lookup_exact() 231 (is_covered(tmp->ip, tmp_ip, depth) && in rte_rib6_get_nxt() 239 (is_covered(tmp->ip, tmp_ip, depth) && in rte_rib6_get_nxt() 348 if (!is_covered(tmp_ip, (*tmp)->ip, (*tmp)->depth) || in rte_rib6_insert()
|