Home
last modified time | relevance | path

Searched refs:cur_match (Results 1 – 4 of 4) sorted by relevance

/OK3568_Linux_fs/kernel/net/sched/
H A Dematch.c502 struct tcf_ematch *cur_match; in __tcf_em_tree_match() local
507 cur_match = tcf_em_get_match(tree, match_idx); in __tcf_em_tree_match()
509 if (tcf_em_is_container(cur_match)) { in __tcf_em_tree_match()
514 match_idx = cur_match->data; in __tcf_em_tree_match()
518 res = tcf_em_match(skb, cur_match, info); in __tcf_em_tree_match()
520 if (tcf_em_early_end(cur_match, res)) in __tcf_em_tree_match()
529 cur_match = tcf_em_get_match(tree, match_idx); in __tcf_em_tree_match()
531 if (tcf_em_is_inverted(cur_match)) in __tcf_em_tree_match()
534 if (tcf_em_early_end(cur_match, res)) { in __tcf_em_tree_match()
/OK3568_Linux_fs/u-boot/lib/zlib/
H A Ddeflate.c90 uInt longest_match OF((deflate_state *s, IPos cur_match));
92 local uInt longest_match OF((deflate_state *s, IPos cur_match));
1061 local uInt longest_match(s, cur_match) in longest_match() argument
1063 IPos cur_match; /* current match */
1109 Assert(cur_match < s->strstart, "no future");
1110 match = s->window + cur_match;
1187 s->match_start = cur_match;
1197 } while ((cur_match = prev[cur_match & wmask]) > limit
1210 local uInt longest_match(s, cur_match) in longest_match() argument
1212 IPos cur_match; /* current match */
[all …]
/OK3568_Linux_fs/kernel/lib/zlib_deflate/
H A Ddeflate.c79 static uInt longest_match (deflate_state *s, IPos cur_match);
560 IPos cur_match /* current match */ in longest_match() argument
607 Assert(cur_match < s->strstart, "no future"); in longest_match()
608 match = s->window + cur_match; in longest_match()
680 s->match_start = cur_match; in longest_match()
690 } while ((cur_match = prev[cur_match & wmask]) > limit in longest_match()
/OK3568_Linux_fs/kernel/drivers/mmc/host/
H A Dsdhci-omap.c300 u8 cur_match, prev_match = 0; in sdhci_omap_execute_tuning() local
351 cur_match = !mmc_send_tuning(mmc, opcode, NULL); in sdhci_omap_execute_tuning()
352 if (cur_match) { in sdhci_omap_execute_tuning()
371 prev_match = cur_match; in sdhci_omap_execute_tuning()