/kernel/linux/linux-5.10/lib/xz/ |
H A D | xz_dec_bcj.c | 56 /* Amount of already filtered data in the beginning of buf */ 57 size_t filtered; member 63 * Buffer to hold a mix of filtered and unfiltered data. This 339 * of data that got filtered. 348 size_t filtered; in bcj_apply() local 356 filtered = bcj_x86(s, buf, size); in bcj_apply() 361 filtered = bcj_powerpc(s, buf, size); in bcj_apply() 366 filtered = bcj_ia64(s, buf, size); in bcj_apply() 371 filtered = bcj_arm(s, buf, size); in bcj_apply() 376 filtered in bcj_apply() [all...] |
/kernel/linux/linux-6.6/lib/xz/ |
H A D | xz_dec_bcj.c | 56 /* Amount of already filtered data in the beginning of buf */ 57 size_t filtered; member 63 * Buffer to hold a mix of filtered and unfiltered data. This 339 * of data that got filtered. 348 size_t filtered; in bcj_apply() local 356 filtered = bcj_x86(s, buf, size); in bcj_apply() 361 filtered = bcj_powerpc(s, buf, size); in bcj_apply() 366 filtered = bcj_ia64(s, buf, size); in bcj_apply() 371 filtered = bcj_arm(s, buf, size); in bcj_apply() 376 filtered in bcj_apply() [all...] |
/kernel/linux/linux-6.6/lib/kunit/ |
H A D | executor.c | 42 "Changes behavior of filtered tests using attributes, valid values are:\n" 43 "<none>: do not run filtered tests as normal\n" 44 "'skip': skip all filtered tests instead so tests will appear in output\n"); 105 struct kunit_case *filtered, *test_case; in kunit_filter_glob_tests() local 120 filtered = kcalloc(n + 1, sizeof(*filtered), GFP_KERNEL); in kunit_filter_glob_tests() 121 if (!filtered) { in kunit_filter_glob_tests() 129 filtered[n++] = *test_case; in kunit_filter_glob_tests() 132 copy->test_cases = filtered; in kunit_filter_glob_tests() 148 * Filter and reallocate test suites. Must return the filtered tes 161 struct kunit_suite_set filtered = {NULL, NULL}; kunit_filter_suites() local [all...] |
H A D | attributes.c | 341 struct kunit_case *filtered, *test_case; in kunit_filter_attr_tests() local 353 filtered = kcalloc(n + 1, sizeof(*filtered), GFP_KERNEL); in kunit_filter_attr_tests() 354 if (!filtered) { in kunit_filter_attr_tests() 397 filtered[n++] = *test_case; in kunit_filter_attr_tests() 400 filtered[n++] = *test_case; in kunit_filter_attr_tests() 407 kfree(filtered); in kunit_filter_attr_tests() 411 copy->test_cases = filtered; in kunit_filter_attr_tests()
|
/kernel/linux/linux-5.10/drivers/net/wireless/ti/wlcore/ |
H A D | ps.c | 83 int filtered[NUM_TX_QUEUES]; in wl1271_ps_filter_frames() local 88 filtered[i] = 0; in wl1271_ps_filter_frames() 90 filtered[i]++; in wl1271_ps_filter_frames() 104 wl->tx_queue_count[i] -= filtered[i]; in wl1271_ps_filter_frames() 106 lnk->wlvif->tx_queue_count[i] -= filtered[i]; in wl1271_ps_filter_frames()
|
/kernel/linux/linux-6.6/drivers/net/wireless/ti/wlcore/ |
H A D | ps.c | 83 int filtered[NUM_TX_QUEUES]; in wl1271_ps_filter_frames() local 88 filtered[i] = 0; in wl1271_ps_filter_frames() 90 filtered[i]++; in wl1271_ps_filter_frames() 104 wl->tx_queue_count[i] -= filtered[i]; in wl1271_ps_filter_frames() 106 lnk->wlvif->tx_queue_count[i] -= filtered[i]; in wl1271_ps_filter_frames()
|
/kernel/linux/linux-5.10/tools/perf/scripts/python/ |
H A D | compaction-times.py | 119 filtered = 0 122 filtered = head.is_filtered() 125 filtered = cls.fobj.filter(pid, comm) 126 head = cls.heads[pid] = chead(comm, pid, filtered) 128 if not filtered: 159 def __init__(self, comm, pid, filtered): 164 self.filtered = filtered 198 return self.filtered
|
/kernel/linux/linux-6.6/drivers/net/ipa/ |
H A D | ipa_table.c | 164 bool ipa_filtered_valid(struct ipa *ipa, u64 filtered) in ipa_filtered_valid() argument 169 if (!filtered) { in ipa_filtered_valid() 175 count = hweight64(filtered); in ipa_filtered_valid() 233 u64 ep_mask = ipa->filtered; in ipa_filter_reset_table() 418 count = 1 + hweight64(ipa->filtered); in ipa_table_init_add() 525 u64 ep_mask = ipa->filtered; in ipa_filter_config() 646 if (count < 1 + hweight64(ipa->filtered)) in ipa_table_mem_valid() 751 *virt++ = cpu_to_le64(ipa->filtered << 1); in ipa_table_init() 753 *virt++ = cpu_to_le64(ipa->filtered); in ipa_table_init()
|
H A D | ipa_table.h | 16 * @filtered: Filter table endpoint bitmap to check 20 bool ipa_filtered_valid(struct ipa *ipa, u64 filtered);
|
H A D | ipa.h | 67 * @filtered: Bitmap of endpoints that support filtering 124 u64 filtered; /* Support filtering (AP and modem) */ member
|
H A D | ipa_endpoint.c | 2121 ipa->filtered = 0; in ipa_endpoint_exit() 2142 u32 filtered; in ipa_endpoint_init() local 2164 filtered = 0; in ipa_endpoint_init() 2172 filtered |= BIT(data->endpoint_id); in ipa_endpoint_init() 2177 /* Make sure the set of filtered endpoints is valid */ in ipa_endpoint_init() 2178 if (!ipa_filtered_valid(ipa, filtered)) { in ipa_endpoint_init() 2184 ipa->filtered = filtered; in ipa_endpoint_init()
|
/kernel/linux/linux-6.6/tools/perf/scripts/python/ |
H A D | compaction-times.py | 119 filtered = 0 122 filtered = head.is_filtered() 125 filtered = cls.fobj.filter(pid, comm) 126 head = cls.heads[pid] = chead(comm, pid, filtered) 128 if not filtered: 159 def __init__(self, comm, pid, filtered): 164 self.filtered = filtered 198 return self.filtered
|
/kernel/linux/linux-5.10/tools/perf/util/ |
H A D | hist.c | 249 if (!n->filtered) in hists__output_recalc_col_len() 330 if (!he->filtered) in hists__decay_entry() 369 if (!he->filtered) in hists__delete_entry() 575 if (!he->filtered) in hist_entry__add_callchain_period() 724 .filtered = symbol__parent_filter(sym_parent) | al->filtered, in __hists__add_entry() 859 hists__inc_nr_samples(hists, he->filtered); in iter_finish_mem_entry() 946 hists__inc_nr_samples(hists, he->filtered); in iter_add_next_branch_entry() 1000 hists__inc_nr_samples(evsel__hists(evsel), he->filtered); in iter_finish_normal_entry() 1055 hists__inc_nr_samples(hists, he->filtered); in iter_add_single_cumulative_entry() 2316 hists__inc_nr_samples(struct hists *hists, bool filtered) hists__inc_nr_samples() argument [all...] |
H A D | event.c | 544 al->filtered = 0; in thread__find_map() 570 al->filtered |= (1 << HIST_FILTER__GUEST); in thread__find_map() 574 al->filtered |= (1 << HIST_FILTER__HOST); in thread__find_map() 649 al->filtered |= (1 << HIST_FILTER__THREAD); in machine__resolve() 672 al->filtered |= (1 << HIST_FILTER__DSO); in machine__resolve() 677 al->filtered |= (1 << HIST_FILTER__DSO); in machine__resolve() 696 al->filtered |= (1 << HIST_FILTER__SYMBOL); in machine__resolve()
|
/kernel/linux/linux-6.6/tools/perf/util/ |
H A D | hist.c | 263 if (!n->filtered) in hists__output_recalc_col_len() 340 if (!he->filtered) in hists__decay_entry() 379 if (!he->filtered) in hists__delete_entry() 587 if (!he->filtered) in hist_entry__add_callchain_period() 737 .filtered = symbol__parent_filter(sym_parent) | al->filtered, in __hists__add_entry() 879 hists__inc_nr_samples(hists, he->filtered); in iter_finish_mem_entry() 968 hists__inc_nr_samples(hists, he->filtered); in iter_add_next_branch_entry() 1022 hists__inc_nr_samples(evsel__hists(evsel), he->filtered); in iter_finish_normal_entry() 1081 hists__inc_nr_samples(hists, he->filtered); in iter_add_single_cumulative_entry() 2363 hists__inc_nr_samples(struct hists *hists, bool filtered) hists__inc_nr_samples() argument [all...] |
H A D | event.c | 612 al->filtered = 0; in thread__find_map() 635 al->filtered |= (1 << HIST_FILTER__GUEST); in thread__find_map() 639 al->filtered |= (1 << HIST_FILTER__HOST); in thread__find_map() 733 al->filtered |= (1 << HIST_FILTER__THREAD); in machine__resolve() 757 al->filtered |= (1 << HIST_FILTER__DSO); in machine__resolve() 762 al->filtered |= (1 << HIST_FILTER__DSO); in machine__resolve() 792 al->filtered |= (1 << HIST_FILTER__SYMBOL); in machine__resolve()
|
H A D | addr_location.h | 20 u8 filtered; member
|
H A D | addr_location.c | 16 al->filtered = 0; in addr_location__init()
|
H A D | dlfilter.c | 67 d_al->filtered = 0; in al_to_d_al() 108 d_al->filtered = al->filtered; in dlfilter__resolve_ip()
|
/kernel/linux/linux-5.10/tools/perf/tests/ |
H A D | hists_common.c | 181 if (!he->filtered) { in print_hists_in() 208 if (!he->filtered) { in print_hists_out()
|
/kernel/linux/linux-6.6/tools/perf/tests/ |
H A D | hists_common.c | 181 if (!he->filtered) { in print_hists_in() 210 if (!he->filtered) { in print_hists_out()
|
/kernel/linux/linux-5.10/net/ipv6/ |
H A D | raw.c | 182 int filtered; in ipv6_raw_deliver() local 187 filtered = icmpv6_filter(sk, skb); in ipv6_raw_deliver() 202 filtered = filter ? (*filter)(sk, skb) : 0; in ipv6_raw_deliver() 207 filtered = 0; in ipv6_raw_deliver() 211 if (filtered < 0) in ipv6_raw_deliver() 213 if (filtered == 0) { in ipv6_raw_deliver()
|
/kernel/linux/linux-6.6/net/ipv6/ |
H A D | raw.c | 158 int filtered; in ipv6_raw_deliver() local 166 filtered = icmpv6_filter(sk, skb); in ipv6_raw_deliver() 181 filtered = filter ? (*filter)(sk, skb) : 0; in ipv6_raw_deliver() 186 filtered = 0; in ipv6_raw_deliver() 190 if (filtered < 0) in ipv6_raw_deliver() 192 if (filtered == 0) { in ipv6_raw_deliver()
|
/kernel/linux/linux-6.6/tools/perf/include/perf/ |
H A D | perf_dlfilter.h | 92 __u8 filtered; /* True if this sample event will be filtered out */ member
|
/kernel/linux/linux-6.6/tools/perf/ |
H A D | builtin-c2c.c | 335 hists__inc_nr_samples(&c2c_hists->hists, he->filtered); in process_sample_event() 372 hists__inc_nr_samples(&c2c_hists->hists, he->filtered); in process_sample_event() 2117 he->filtered = filter_display(c2c_he->stats.lcl_hitm, in he__display() 2121 he->filtered = filter_display(c2c_he->stats.rmt_hitm, in he__display() 2125 he->filtered = filter_display(c2c_he->stats.tot_hitm, in he__display() 2129 he->filtered = filter_display(c2c_he->stats.tot_peer, in he__display() 2136 return he->filtered == 0; in he__display() 2221 he->filtered = HIST_FILTER__C2C; in filter_cb() 2507 if (he->filtered) in print_pareto() 2573 if (!he->filtered) in c2c_browser__update_nr_entries() [all...] |