Home
last modified time | relevance | path

Searched refs:select (Results 1 - 25 of 909) sorted by relevance

12345678910>>...37

/third_party/ffmpeg/libavfilter/
H A Df_select.c159 double select; member
178 SelectContext *select = ctx->priv; in init() local
181 if ((ret = av_expr_parse(&select->expr, select->expr_str, in init()
184 select->expr_str); in init()
187 select->do_scene_detect = !!strstr(select->expr_str, "scene"); in init()
189 for (i = 0; i < select->nb_outputs; i++) { in init()
210 SelectContext *select = inlink->dst->priv; in config_input() local
216 select in config_input()
276 SelectContext *select = ctx->priv; get_scene_score() local
330 SelectContext *select = ctx->priv; select_frame() local
415 SelectContext *select = ctx->priv; filter_frame() local
434 SelectContext *select = ctx->priv; uninit() local
451 SelectContext *select = ctx->priv; aselect_init() local
490 SelectContext *select = ctx->priv; query_formats() local
508 AVFILTER_DEFINE_CLASS(select); global() variable
[all...]
/third_party/python/Lib/test/
H A Dtest_epoll.py26 import select namespace
31 if not hasattr(select, "epoll"):
35 select.epoll()
67 ep = select.epoll(16)
76 if hasattr(select, "EPOLL_CLOEXEC"):
77 select.epoll(-1, select.EPOLL_CLOEXEC).close()
78 select.epoll(flags=select.EPOLL_CLOEXEC).close()
79 select
[all...]
H A Dtest_kqueue.py6 import select namespace
11 if not hasattr(select, "kqueue"):
16 kq = select.kqueue()
29 ev = select.kevent(fd)
30 other = select.kevent(1000)
32 self.assertEqual(ev.filter, select.KQ_FILTER_READ)
33 self.assertEqual(ev.flags, select.KQ_EV_ADD)
46 ev = select.kevent(fd, select.KQ_FILTER_WRITE)
48 self.assertEqual(ev.filter, select
[all...]
H A Dtest_select.py3 import select namespace
24 self.assertRaises(TypeError, select.select, 1, 2, 3)
25 self.assertRaises(TypeError, select.select, [self.Nope()], [], [])
26 self.assertRaises(TypeError, select.select, [self.Almost()], [], [])
27 self.assertRaises(TypeError, select.select, [], [], [], "not a number")
28 self.assertRaises(ValueError, select
[all...]
H A Dtest_poll.py6 import select namespace
18 select.poll
20 raise unittest.SkipTest("select.poll not defined")
37 p = select.poll()
50 p.modify(rd, select.POLLIN)
51 p.register(wr, select.POLLOUT)
61 ready_writers = find_ready_matching(ready, select.POLLOUT)
68 ready_readers = find_ready_matching(ready, select.POLLIN)
87 p = select.poll()
90 self.assertEqual(r[0], (FD, select
[all...]
H A Dtest_devpoll.py1 # Test case for the select.devpoll() function
7 import select namespace
11 if not hasattr(select, 'devpoll') :
28 p = select.devpoll()
41 p.modify(rd, select.POLLIN)
42 p.register(wr, select.POLLOUT)
52 ready_writers = find_ready_matching(ready, select.POLLOUT)
59 ready_readers = find_ready_matching(ready, select.POLLIN)
75 pollster = select.devpoll()
95 devpoll = select
[all...]
/kernel/linux/linux-5.10/drivers/misc/cb710/
H A Ddebug.c31 u##t *reg, unsigned select) \
36 if (!(select & (1 << i))) \
55 const u##t *reg, unsigned select) \
64 if (!(select & (1 << i))) \
82 unsigned select) \
87 cb710_read_regs_##t(chip->iobase, regs, select); \
88 cb710_dump_regs_##t(cb710_chip_dev(chip), regs, select); \
100 void cb710_dump_regs(struct cb710_chip *chip, unsigned select) in cb710_dump_regs() argument
102 if (!(select & CB710_DUMP_REGS_MASK)) in cb710_dump_regs()
103 select in cb710_dump_regs()
[all...]
/kernel/linux/linux-6.6/drivers/misc/cb710/
H A Ddebug.c31 u##t *reg, unsigned select) \
36 if (!(select & (1 << i))) \
55 const u##t *reg, unsigned select) \
64 if (!(select & (1 << i))) \
82 unsigned select) \
87 cb710_read_regs_##t(chip->iobase, regs, select); \
88 cb710_dump_regs_##t(cb710_chip_dev(chip), regs, select); \
100 void cb710_dump_regs(struct cb710_chip *chip, unsigned select) in cb710_dump_regs() argument
102 if (!(select & CB710_DUMP_REGS_MASK)) in cb710_dump_regs()
103 select in cb710_dump_regs()
[all...]
/third_party/python/Lib/xml/etree/
H A DElementPath.py118 def select(context, result): function
124 def select(context, result): function
134 def select(context, result): function
143 def select(context, result): function
150 return select
157 def select(context, result): function
165 def select(context, result): function
170 return select
173 def select(context, result): function
176 return select
179 def select(context, result): global() function
197 def select(context, result): global() function
207 def select(context, result): global() function
215 def select(context, result): global() function
251 def select(context, result): global() function
260 def select(context, result): global() function
272 def select(context, result): global() function
284 def select(context, result): global() function
297 def select(context, result): global() function
325 def select(context, result): global() function
[all...]
/third_party/python/Lib/
H A Dselectors.py4 `select` module primitives.
12 import select namespace
90 A selector can use various implementations (select(), poll(), epoll()...)
155 def select(self, timeout=None): member in BaseSelector
162 if timeout <= 0, the select() call won't block, and will
164 if timeout is None, select() will block until a monitored
314 r, w, x = select.select(r, w, w, timeout)
317 _select = select.select
319 def select(self, timeout=None): global() member in SelectSelector
402 def select(self, timeout=None): global() member in _PollLikeSelector
451 def select(self, timeout=None): global() member in _PollLikeSelector.EpollSelector
553 def select(self, timeout=None): global() member in _PollLikeSelector.KqueueSelector
[all...]
/kernel/linux/linux-5.10/arch/xtensa/variants/test_mmuhifi_c3/include/variant/
H A Dtie-asm.h36 .macro xchal_ncp_store ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL
38 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~\select
44 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~\select
50 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_GLOB) & ~\select
63 .macro xchal_ncp_load ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL
65 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~\select
71 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~\select
77 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_GLOB) & ~\select
97 .macro xchal_cp1_store ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL
99 .ifeq (XTHAL_SAS_TIE | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~\select
[all...]
/kernel/linux/linux-6.6/arch/xtensa/variants/test_mmuhifi_c3/include/variant/
H A Dtie-asm.h36 .macro xchal_ncp_store ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL
38 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~\select
44 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~\select
50 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_GLOB) & ~\select
63 .macro xchal_ncp_load ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL
65 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~\select
71 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~\select
77 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_GLOB) & ~\select
97 .macro xchal_cp1_store ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL
99 .ifeq (XTHAL_SAS_TIE | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~\select
[all...]
/kernel/linux/linux-5.10/arch/xtensa/variants/test_kc705_hifi/include/variant/
H A Dtie-asm.h71 * select Select what category(ies) of registers to store, as a bitmask
74 * category is selected here that is not in <select>, space for
77 .macro xchal_ncp_store ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL alloc=0
80 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_GLOB) & ~(\select)
90 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_CALR) & ~(\select)
102 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~(\select)
137 * select Select what category(ies) of registers to load, as a bitmask
140 * category is selected here that is not in <select>, space for
143 .macro xchal_ncp_load ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL alloc=0
146 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_GLOB) & ~(\select)
[all...]
/kernel/linux/linux-5.10/arch/xtensa/variants/test_kc705_be/include/variant/
H A Dtie-asm.h70 * select Select what category(ies) of registers to store, as a bitmask
73 * category is selected here that is not in <select>, space for
76 .macro xchal_ncp_store ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL alloc=0
79 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_GLOB) & ~(\select)
89 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_CALR) & ~(\select)
101 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~(\select)
136 * select Select what category(ies) of registers to load, as a bitmask
139 * category is selected here that is not in <select>, space for
142 .macro xchal_ncp_load ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL alloc=0
145 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_GLOB) & ~(\select)
[all...]
/kernel/linux/linux-6.6/arch/xtensa/variants/test_kc705_hifi/include/variant/
H A Dtie-asm.h71 * select Select what category(ies) of registers to store, as a bitmask
74 * category is selected here that is not in <select>, space for
77 .macro xchal_ncp_store ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL alloc=0
80 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_GLOB) & ~(\select)
90 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_CALR) & ~(\select)
102 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~(\select)
137 * select Select what category(ies) of registers to load, as a bitmask
140 * category is selected here that is not in <select>, space for
143 .macro xchal_ncp_load ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL alloc=0
146 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_GLOB) & ~(\select)
[all...]
/kernel/linux/linux-6.6/arch/xtensa/variants/test_kc705_be/include/variant/
H A Dtie-asm.h70 * select Select what category(ies) of registers to store, as a bitmask
73 * category is selected here that is not in <select>, space for
76 .macro xchal_ncp_store ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL alloc=0
79 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_GLOB) & ~(\select)
89 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_CALR) & ~(\select)
101 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~(\select)
136 * select Select what category(ies) of registers to load, as a bitmask
139 * category is selected here that is not in <select>, space for
142 .macro xchal_ncp_load ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL alloc=0
145 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_GLOB) & ~(\select)
[all...]
/kernel/linux/linux-5.10/arch/xtensa/variants/dc232b/include/variant/
H A Dtie-asm.h37 .macro xchal_ncp_store ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL
39 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_CALR) & ~\select
47 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~\select
59 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~\select
65 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_GLOB) & ~\select
78 .macro xchal_ncp_load ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL
80 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_CALR) & ~\select
88 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~\select
100 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~\select
106 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_GLOB) & ~\select
[all...]
/kernel/linux/linux-6.6/arch/xtensa/variants/dc232b/include/variant/
H A Dtie-asm.h37 .macro xchal_ncp_store ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL
39 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_CALR) & ~\select
47 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~\select
59 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~\select
65 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_GLOB) & ~\select
78 .macro xchal_ncp_load ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL
80 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_CALR) & ~\select
88 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~\select
100 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~\select
106 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_GLOB) & ~\select
[all...]
/third_party/typescript/tests/baselines/reference/
H A Dinheritance1.js6 select(): void;
10 select() { }
13 select() { }
20 select() { }
23 select() { }
90 Button.prototype.select = function () { };
98 TextBox.prototype.select = function () { };
118 Locations.prototype.select = function () { };
124 Locations1.prototype.select = function () { };
H A DsubstitutionTypesInIndexedAccessTypes.js5 select?: boolean
14 select: true,
18 select: true,
26 select: true
29 select: true
/kernel/linux/linux-5.10/arch/xtensa/variants/csp/include/variant/
H A Dtie-asm.h70 * select Select what category(ies) of registers to store, as a bitmask
73 * category is selected here that is not in <select>, space for
76 .macro xchal_ncp_store ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL alloc=0
79 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_GLOB) & ~(\select)
89 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_CALR) & ~(\select)
101 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~(\select)
136 * select Select what category(ies) of registers to load, as a bitmask
139 * category is selected here that is not in <select>, space for
142 .macro xchal_ncp_load ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL alloc=0
145 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_GLOB) & ~(\select)
[all...]
/kernel/linux/linux-5.10/arch/xtensa/variants/dc233c/include/variant/
H A Dtie-asm.h71 * select Select what category(ies) of registers to store, as a bitmask
74 * category is selected here that is not in <select>, space for
77 .macro xchal_ncp_store ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL alloc=0
80 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_GLOB) & ~(\select)
90 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_CALR) & ~(\select)
102 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~(\select)
135 * select Select what category(ies) of registers to load, as a bitmask
138 * category is selected here that is not in <select>, space for
141 .macro xchal_ncp_load ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL alloc=0
144 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_GLOB) & ~(\select)
[all...]
/kernel/linux/linux-6.6/arch/xtensa/variants/csp/include/variant/
H A Dtie-asm.h70 * select Select what category(ies) of registers to store, as a bitmask
73 * category is selected here that is not in <select>, space for
76 .macro xchal_ncp_store ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL alloc=0
79 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_GLOB) & ~(\select)
89 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_CALR) & ~(\select)
101 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~(\select)
136 * select Select what category(ies) of registers to load, as a bitmask
139 * category is selected here that is not in <select>, space for
142 .macro xchal_ncp_load ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL alloc=0
145 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_GLOB) & ~(\select)
[all...]
/kernel/linux/linux-6.6/arch/xtensa/variants/dc233c/include/variant/
H A Dtie-asm.h71 * select Select what category(ies) of registers to store, as a bitmask
74 * category is selected here that is not in <select>, space for
77 .macro xchal_ncp_store ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL alloc=0
80 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_GLOB) & ~(\select)
90 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_CALR) & ~(\select)
102 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_NOCC | XTHAL_SAS_CALR) & ~(\select)
135 * select Select what category(ies) of registers to load, as a bitmask
138 * category is selected here that is not in <select>, space for
141 .macro xchal_ncp_load ptr at1 at2 at3 at4 continue=0 ofs=-1 select=XTHAL_SAS_ALL alloc=0
144 .ifeq (XTHAL_SAS_OPT | XTHAL_SAS_CC | XTHAL_SAS_GLOB) & ~(\select)
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/display/dc/dcn20/
H A Ddcn20_dpp.c107 enum dcn20_input_csc_select select = DCN2_ICSC_SELECT_BYPASS; in dpp2_cnv_setup() local
148 select = DCN2_ICSC_SELECT_ICSC_A; in dpp2_cnv_setup()
154 select = DCN2_ICSC_SELECT_ICSC_A; in dpp2_cnv_setup()
160 select = DCN2_ICSC_SELECT_ICSC_A; in dpp2_cnv_setup()
166 select = DCN2_ICSC_SELECT_ICSC_A; in dpp2_cnv_setup()
180 select = DCN2_ICSC_SELECT_ICSC_A; in dpp2_cnv_setup()
193 select = DCN2_ICSC_SELECT_ICSC_A; in dpp2_cnv_setup()
199 select = DCN2_ICSC_SELECT_ICSC_A; in dpp2_cnv_setup()
234 select = DCN2_ICSC_SELECT_ICSC_A; in dpp2_cnv_setup()
236 select in dpp2_cnv_setup()
[all...]

Completed in 11 milliseconds

12345678910>>...37