Lines Matching defs:tmp_ip
158 struct rte_ipv6_addr tmp_ip;
166 tmp_ip = *ip;
167 rte_ipv6_addr_mask(&tmp_ip, depth);
170 if (rte_ipv6_addr_eq(&cur->ip, &tmp_ip) &&
175 if (!rte_ipv6_addr_eq_prefix(&tmp_ip, &cur->ip, cur->depth) ||
179 cur = get_nxt_node(cur, &tmp_ip);
196 struct rte_ipv6_addr tmp_ip;
203 tmp_ip = *ip;
204 rte_ipv6_addr_mask(&tmp_ip, depth);
209 tmp = get_nxt_node(tmp, &tmp_ip);
216 (rte_ipv6_addr_eq_prefix(&tmp->ip, &tmp_ip, depth) &&
224 (rte_ipv6_addr_eq_prefix(&tmp->ip, &tmp_ip, depth) &&
277 struct rte_ipv6_addr tmp_ip;
288 tmp_ip = *ip;
289 rte_ipv6_addr_mask(&tmp_ip, depth);
291 new_node = rte_rib6_lookup_exact(rib, &tmp_ip, depth);
305 new_node->ip = tmp_ip;
324 if (rte_ipv6_addr_eq(&tmp_ip, &(*tmp)->ip) && (depth == (*tmp)->depth)) {
331 if (!rte_ipv6_addr_eq_prefix(&tmp_ip, &(*tmp)->ip, (*tmp)->depth) ||
337 tmp = (get_dir(&tmp_ip, (*tmp)->depth)) ? &(*tmp)->right :
344 ip_xor = tmp_ip.a[i] ^ (*tmp)->ip.a[i];
355 common_prefix = tmp_ip;
358 if (rte_ipv6_addr_eq(&common_prefix, &tmp_ip) &&