Home
last modified time | relevance | path

Searched full:filtered (Results 1 – 25 of 451) sorted by relevance

12345678910>>...19

/OK3568_Linux_fs/kernel/lib/xz/
H A Dxz_dec_bcj.c56 /* 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 = bcj_armthumb(s, buf, size); in bcj_apply()
[all …]
/OK3568_Linux_fs/kernel/tools/perf/scripts/python/
H A Dcompaction-times.py119 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): argument
164 self.filtered = filtered
198 return self.filtered
/OK3568_Linux_fs/yocto/poky/meta/recipes-devtools/go/go-1.18/
H A D0002-cmd-go-make-content-based-hash-generation-less-pedan.patch141 +func (b *Builder) ccExe(filtered bool) []string {
142 + return b.compilerExe(origCC, cfg.DefaultCC(cfg.Goos, cfg.Goarch), filtered)
148 +func (b *Builder) cxxExe(filtered bool) []string {
149 + return b.compilerExe(origCXX, cfg.DefaultCXX(cfg.Goos, cfg.Goarch), filtered)
155 +func (b *Builder) fcExe(filtered bool) []string {
156 + return b.compilerExe(os.Getenv("FC"), "gfortran", filtered)
180 +func (b *Builder) compilerExe(envValue string, def string, filtered bool) []string {
186 + if filtered {
198 +func (b *Builder) CFlags(p *load.Package, filtered bool) (cppflags, cflags, cxxflags, fflags, ldfl…
206 + if filtered {
/OK3568_Linux_fs/yocto/poky/meta/classes/
H A Ddebian.bbclass99 filtered = []
102 filtered.append(s)
103 if len(filtered) == 1:
104 soname = filtered[0]
105 elif len(filtered) > 1:
106 … bb.note("Multiple matches (%s) for LEAD_SONAME '%s'" % (", ".join(filtered), lead))
H A Dcrosssdk.bbclass15filtered = set(bb.utils.filter("DISTRO_FEATURES", d.getVar("DISTRO_FEATURES_FILTER_NATIVESDK"), d)…
16 d.setVar("DISTRO_FEATURES", " ".join(sorted(features | filtered)))
H A Dnativesdk.bbclass83filtered = set(bb.utils.filter("DISTRO_FEATURES", d.getVar("DISTRO_FEATURES_FILTER_NATIVESDK"), d)…
84 d.setVar("DISTRO_FEATURES", " ".join(sorted(features | filtered)))
/OK3568_Linux_fs/kernel/tools/perf/util/
H A Dhist.c249 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()
1389 /* if it's filtered by own fmt, it has to have filter bits */ in hist_entry__check_and_remove_filter()
[all …]
H A Devent.c544 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()
/OK3568_Linux_fs/kernel/drivers/net/wireless/ti/wlcore/
H A Dps.c83 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()
/OK3568_Linux_fs/kernel/include/media/
H A Ddemux.h144 * @check_crc: If non-zero, check the CRC values of filtered sections.
192 * @buffer1: Pointer to the start of the filtered TS packets.
194 * @buffer2: Pointer to the tail of the filtered TS packets, or NULL.
207 * buffer. The filtered TS packets are delivered to the client using this
259 * @buffer1: Pointer to the start of the filtered section, e.g.
261 * @buffer1_len: Length of the filtered section data in @buffer1,
263 * @buffer2: Pointer to the tail of the filtered section data,
266 * @buffer2_len: Length of the filtered section data in @buffer2,
310 * the MPEG-TS to be filtered comes from userspace,
410 * receive filtered data via the Demux callback API (see 0). The function
[all …]
H A Ddvb_demux.h115 * @pid: PID to be filtered.
190 * that will be filtered.
191 * @pids: list of filtered program IDs.
285 * @buf: buffer with data to be filtered
303 * @buf: buffer with data to be filtered
321 * @buf: buffer with data to be filtered
/OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/tests/
H A Dcolor.py41 filtered = filter_color(input_string)
42 self.assertEqual(filtered, "~~~~~~~~~~~~^~~~~~~~")
46 filtered, code_count = filter_color_n(input_string)
47 self.assertEqual(filtered, "~~~~~~~~~~~~^~~~~~~~")
/OK3568_Linux_fs/kernel/Documentation/userspace-api/media/dvb/
H A Ddmx-fread.rst35 This system call returns filtered data, which might be section or Packetized
36 Elementary Stream (PES) data. The filtered data is transferred from
65 - The filtered data was not read from the buffer in due time,
/OK3568_Linux_fs/kernel/tools/testing/selftests/ftrace/test.d/event/
H A Devent-no-pid.tc81 fail "Filtered out task has events"
108 fail "Filtered out task has events"
113 fail "Child of filtered out taskhas events"
/OK3568_Linux_fs/yocto/poky/bitbake/lib/layerindexlib/
H A Drestapi.py220 # Load all of the layerItems (these can not be easily filtered)
296 filtered = []
300 filtered.append(getattr(index, objects)[obj]._data)
305 filtered.append(getattr(index, objects)[obj]._data)
308 filtered.append(obj)
309 return filtered
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/linux/dvb/
H A Ddmx.h156 * @pid: PID to be filtered.
185 * @pid: PID to be filtered.
220 * (TEI) on a filtered pid.
223 * on a filtered pid.
/OK3568_Linux_fs/kernel/include/uapi/linux/dvb/
H A Ddmx.h158 * @pid: PID to be filtered.
187 * @pid: PID to be filtered.
222 * (TEI) on a filtered pid.
225 * on a filtered pid.
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/linux/dvb/
H A Ddmx.h156 * @pid: PID to be filtered.
185 * @pid: PID to be filtered.
220 * (TEI) on a filtered pid.
223 * on a filtered pid.
/OK3568_Linux_fs/buildroot/boot/grub2/
H A D0046-docs-Document-the-cutmem-command.patch29 @@ -4051,6 +4052,8 @@ this page is to be filtered. This syntax makes it easy to represent patterns
50 +be filtered out. This remains in effect after a payload kernel has been loaded
/OK3568_Linux_fs/kernel/drivers/staging/media/atomisp/pci/isp/kernels/xnr/xnr_3.0/
H A Dia_css_xnr3_types.h75 * \details Blending parameters define the blending strength of filtered
80 * disables the blending and returns the xnr3 filtered output, while a
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/include/linux/
H A Dinet_diag.h192 /* u64 bw: max-filtered BW (app throughput) estimate in Byte per sec: */
195 __u32 bbr_min_rtt; /* min-filtered RTT in uSec */
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/include/linux/
H A Dinet_diag.h192 /* u64 bw: max-filtered BW (app throughput) estimate in Byte per sec: */
195 __u32 bbr_min_rtt; /* min-filtered RTT in uSec */
/OK3568_Linux_fs/kernel/include/uapi/linux/
H A Dinet_diag.h226 /* u64 bw: max-filtered BW (app throughput) estimate in Byte per sec: */
229 __u32 bbr_min_rtt; /* min-filtered RTT in uSec */
/OK3568_Linux_fs/kernel/net/ipv4/netfilter/
H A Dnf_tproxy_ipv4.c105 * 0.0.0.0, those are filtered out in in nf_tproxy_get_sock_v4()
128 * 0.0.0.0, those are filtered out in in nf_tproxy_get_sock_v4()
/OK3568_Linux_fs/kernel/net/ipv6/netfilter/
H A Dnf_tproxy_ipv6.c105 * 0.0.0.0, those are filtered out in in nf_tproxy_get_sock_v6()
128 * 0.0.0.0, those are filtered out in in nf_tproxy_get_sock_v6()

12345678910>>...19