Searched refs:cur_match (Results 1 - 6 of 6) sorted by relevance
/kernel/linux/linux-5.10/net/sched/ |
H A D | ematch.c | 504 struct tcf_ematch *cur_match; in __tcf_em_tree_match() local 509 cur_match = tcf_em_get_match(tree, match_idx); in __tcf_em_tree_match() 511 if (tcf_em_is_container(cur_match)) { in __tcf_em_tree_match() 516 match_idx = cur_match->data; in __tcf_em_tree_match() 520 res = tcf_em_match(skb, cur_match, info); in __tcf_em_tree_match() 522 if (tcf_em_early_end(cur_match, res)) in __tcf_em_tree_match() 531 cur_match = tcf_em_get_match(tree, match_idx); in __tcf_em_tree_match() 533 if (tcf_em_is_inverted(cur_match)) in __tcf_em_tree_match() 536 if (tcf_em_early_end(cur_match, res)) { in __tcf_em_tree_match()
|
/kernel/linux/linux-6.6/net/sched/ |
H A D | ematch.c | 504 struct tcf_ematch *cur_match; in __tcf_em_tree_match() local 509 cur_match = tcf_em_get_match(tree, match_idx); in __tcf_em_tree_match() 511 if (tcf_em_is_container(cur_match)) { in __tcf_em_tree_match() 516 match_idx = cur_match->data; in __tcf_em_tree_match() 520 res = tcf_em_match(skb, cur_match, info); in __tcf_em_tree_match() 522 if (tcf_em_early_end(cur_match, res)) in __tcf_em_tree_match() 531 cur_match = tcf_em_get_match(tree, match_idx); in __tcf_em_tree_match() 533 if (tcf_em_is_inverted(cur_match)) in __tcf_em_tree_match() 536 if (tcf_em_early_end(cur_match, res)) { in __tcf_em_tree_match()
|
/kernel/linux/linux-5.10/lib/zlib_deflate/ |
H A D | deflate.c | 79 static uInt longest_match (deflate_state *s, IPos cur_match); 551 * IN assertions: cur_match is the head of the hash chain for the current 560 IPos cur_match /* current match */ in longest_match() 571 /* Stop when cur_match becomes <= limit. To simplify the code, in longest_match() 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()
|
/kernel/linux/linux-6.6/lib/zlib_deflate/ |
H A D | deflate.c | 79 static uInt longest_match (deflate_state *s, IPos cur_match); 558 * IN assertions: cur_match is the head of the hash chain for the current 567 IPos cur_match /* current match */ in longest_match() 578 /* Stop when cur_match becomes <= limit. To simplify the code, in longest_match() 614 Assert(cur_match < s->strstart, "no future"); in longest_match() 615 match = s->window + cur_match; in longest_match() 687 s->match_start = cur_match; in longest_match() 697 } while ((cur_match = prev[cur_match & wmask]) > limit in longest_match()
|
/kernel/linux/linux-5.10/drivers/mmc/host/ |
H A D | sdhci-omap.c | 300 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()
|
/kernel/linux/linux-6.6/drivers/mmc/host/ |
H A D | sdhci-omap.c | 327 u8 cur_match, prev_match = 0; in sdhci_omap_execute_tuning() local 378 cur_match = !mmc_send_tuning(mmc, opcode, NULL); in sdhci_omap_execute_tuning() 379 if (cur_match) { in sdhci_omap_execute_tuning() 398 prev_match = cur_match; in sdhci_omap_execute_tuning()
|
Completed in 9 milliseconds