Home
last modified time | relevance | path

Searched refs:first_rule (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/libarchive/tar/
H A Dsubst.c38 struct subst_rule *first_rule, *last_rule; member
49 subst->first_rule = subst->last_rule = NULL; in init_substitution()
73 subst->first_rule = rule; in add_substitution()
218 for (rule = subst->first_rule; rule != NULL; rule = rule->next) { in apply_substitution()
320 while ((rule = subst->first_rule) != NULL) { in cleanup_substitution()
321 subst->first_rule = rule->next; in cleanup_substitution()
/freebsd/sys/contrib/dpdk_rte_lpm/
H A Drte_lpm.c302 rule_gindex = lpm->rule_info[depth - 1].first_rule;
330 rule_index = lpm->rule_info[i - 1].first_rule
338 lpm->rule_info[depth - 1].first_rule = rule_index;
343 if (lpm->rule_info[i - 1].first_rule
348 lpm->rules_tbl[lpm->rule_info[i - 1].first_rule
350 = lpm->rules_tbl[lpm->rule_info[i - 1].first_rule];
351 lpm->rule_info[i - 1].first_rule++;
377 lpm->rules_tbl[lpm->rule_info[depth - 1].first_rule
382 lpm->rules_tbl[lpm->rule_info[i].first_rule - 1] =
383 lpm->rules_tbl[lpm->rule_info[i].first_rule
[all …]
H A Drte_lpm.h120 uint32_t first_rule; /**< Indexes the first rule of a given depth. */ member