Home
last modified time | relevance | path

Searched refs:match (Results 1251 - 1275 of 6509) sorted by relevance

1...<<51525354555657585960>>...261

/kernel/linux/linux-5.10/arch/sparc/kernel/
H A Dvio.c34 int match = 1; in vio_match_device() local
36 match &= !strcmp(matches->type, type); in vio_match_device()
39 match &= len && in vio_match_device()
42 if (match) in vio_match_device()
158 .match = vio_bus_match,
/kernel/linux/linux-5.10/tools/testing/selftests/bpf/prog_tests/
H A Dalign.c9 const char *match; member
634 if (!m.match) in do_test_single()
644 printf("Failed to find line %u for match: %s\n", in do_test_single()
645 m.line, m.match); in do_test_single()
650 if (!strstr(line_ptr, m.match)) { in do_test_single()
651 printf("Failed to find match %u: %s\n", in do_test_single()
652 m.line, m.match); in do_test_single()
/kernel/linux/linux-6.6/arch/sparc/kernel/
H A Dvio.c34 int match = 1; in vio_match_device() local
36 match &= !strcmp(matches->type, type); in vio_match_device()
39 match &= len && in vio_match_device()
42 if (match) in vio_match_device()
156 .match = vio_bus_match,
/kernel/linux/linux-5.10/security/
H A Ddevice_cgroup.c314 * match_exception - iterates the exception list trying to find a complete match
317 * @major: device file major number, ~0 to match all
318 * @minor: device file minor number, ~0 to match all
321 * It is considered a complete match if an exception is found that will
349 * match_exception_partial - iterates the exception list trying to find a partial match
352 * @major: device file major number, ~0 to match all
353 * @minor: device file minor number, ~0 to match all
356 * It is considered a partial match if an exception's range is found to
384 * an exception, all its access bits shouldn't match the in match_exception_partial()
407 bool match in verify_new_ex() local
[all...]
/kernel/linux/linux-5.10/fs/xfs/
H A Dxfs_extent_busy.c77 * match. This is done so that a non-zero return indicates an overlap that
79 * used to distinguish between a partial or exact match.
91 int match = 0; in xfs_extent_busy_search() local
104 match = -1; in xfs_extent_busy_search()
109 match = -1; in xfs_extent_busy_search()
112 /* bno matches busyp, length determines exact match */ in xfs_extent_busy_search()
113 match = (busyp->length == len) ? 1 : -1; in xfs_extent_busy_search()
119 return match; in xfs_extent_busy_search()
/kernel/linux/linux-5.10/drivers/memory/
H A Datmel-ebi.c518 const struct of_device_id *match; in atmel_ebi_probe() local
524 match = of_match_device(atmel_ebi_id_table, dev); in atmel_ebi_probe()
525 if (!match || !match->data) in atmel_ebi_probe()
535 ebi->caps = match->data; in atmel_ebi_probe()
/kernel/linux/linux-5.10/drivers/media/platform/xilinx/
H A Dxilinx-vipp.c61 if (entity->asd.match.fwnode == fwnode) in xvip_graph_find_entity()
85 ep = fwnode_graph_get_next_endpoint(entity->asd.match.fwnode, in xvip_graph_build_one()
328 if (entity->asd.match.fwnode != subdev->fwnode) in xvip_graph_notify_bound()
333 entity->asd.match.fwnode); in xvip_graph_notify_bound()
421 ret = xvip_graph_parse_one(xdev, entity->asd.match.fwnode); in xvip_graph_parse()
/kernel/linux/linux-5.10/drivers/remoteproc/
H A Dst_remoteproc.c344 const struct of_device_id *match; in st_rproc_probe() local
352 match = of_match_device(st_rproc_match, dev); in st_rproc_probe()
353 if (!match || !match->data) { in st_rproc_probe()
354 dev_err(dev, "No device match found\n"); in st_rproc_probe()
364 ddata->config = (struct st_rproc_config *)match->data; in st_rproc_probe()
/kernel/linux/linux-6.6/drivers/memory/
H A Datmel-ebi.c518 const struct of_device_id *match; in atmel_ebi_probe() local
524 match = of_match_device(atmel_ebi_id_table, dev); in atmel_ebi_probe()
525 if (!match || !match->data) in atmel_ebi_probe()
535 ebi->caps = match->data; in atmel_ebi_probe()
/kernel/linux/linux-6.6/fs/xfs/
H A Dxfs_extent_busy.c97 * match. This is done so that a non-zero return indicates an overlap that
99 * used to distinguish between a partial or exact match.
110 int match = 0; in xfs_extent_busy_search() local
120 match = -1; in xfs_extent_busy_search()
125 match = -1; in xfs_extent_busy_search()
128 /* bno matches busyp, length determines exact match */ in xfs_extent_busy_search()
129 match = (busyp->length == len) ? 1 : -1; in xfs_extent_busy_search()
134 return match; in xfs_extent_busy_search()
/kernel/linux/linux-6.6/drivers/remoteproc/
H A Dst_remoteproc.c344 const struct of_device_id *match; in st_rproc_probe() local
352 match = of_match_device(st_rproc_match, dev); in st_rproc_probe()
353 if (!match || !match->data) { in st_rproc_probe()
354 dev_err(dev, "No device match found\n"); in st_rproc_probe()
364 ddata->config = (struct st_rproc_config *)match->data; in st_rproc_probe()
/kernel/linux/linux-6.6/drivers/gpu/drm/vc4/
H A Dvc4_drv.c250 struct component_match **match, in vc4_match_add_drivers()
262 component_match_add(dev, match, component_compare_dev, d); in vc4_match_add_drivers()
433 struct component_match *match = NULL; in vc4_platform_drm_probe() local
436 vc4_match_add_drivers(dev, &match, in vc4_platform_drm_probe()
439 return component_master_add_with_match(dev, &vc4_drm_ops, match); in vc4_platform_drm_probe()
249 vc4_match_add_drivers(struct device *dev, struct component_match **match, struct platform_driver *const *drivers, int count) vc4_match_add_drivers() argument
/kernel/linux/linux-6.6/tools/perf/tests/
H A Dattr.py299 match = {}
317 log.debug(" match: [%s] matches %s" % (exp_name, str(exp_list)))
322 log.debug(" %s does not match, but is optional" % exp_name)
328 raise Fail(self, 'match failure');
330 match[exp_name] = exp_list
333 # check we match the same group in the result.
340 for res_name in match[exp_name]:
342 if res_group not in match[group]:
346 (exp_name, str(match[group])))
/kernel/linux/linux-6.6/security/
H A Ddevice_cgroup.c315 * match_exception - iterates the exception list trying to find a complete match
318 * @major: device file major number, ~0 to match all
319 * @minor: device file minor number, ~0 to match all
322 * It is considered a complete match if an exception is found that will
350 * match_exception_partial - iterates the exception list trying to find a partial match
353 * @major: device file major number, ~0 to match all
354 * @minor: device file minor number, ~0 to match all
357 * It is considered a partial match if an exception's range is found to
385 * an exception, all its access bits shouldn't match the in match_exception_partial()
408 bool match in verify_new_ex() local
[all...]
/third_party/ffmpeg/libavfilter/
H A Dvf_idet.c121 int match = 0; in filter() local
172 match++; in filter()
174 match=0; in filter()
180 if(match ) idet->last_type = best_type; in filter()
182 if(match>2) idet->last_type = best_type; in filter()
/third_party/icu/tools/cldr/cldr-to-icu/src/main/java/org/unicode/icu/tool/cldrtoicu/
H A DPseudoLocales.java333 Matcher match = (isPattern ? QUOTED_TEXT : NUMERIC_PLACEHOLDER).matcher(text); in createMessage()
338 for (; match.find(); start = match.end()) { in createMessage()
339 out.addFragment(text.substring(start, match.start()), !isPattern); in createMessage()
340 out.addFragment(match.group(), isPattern); in createMessage()
/third_party/icu/icu4c/source/i18n/
H A Dcsrmbcs.cpp199 // No match if there are too many characters that don't fit the encoding scheme. in match_mbcs()
269 UBool CharsetRecog_sjis::match(InputText* det, CharsetMatch *results) const { in match() function in CharsetRecog_sjis
369 UBool CharsetRecog_euc_jp::match(InputText *det, CharsetMatch *results) const in match() function in CharsetRecog_euc_jp
391 UBool CharsetRecog_euc_kr::match(InputText *det, CharsetMatch *results) const in match() function in CharsetRecog_euc_kr
443 UBool CharsetRecog_big5::match(InputText *det, CharsetMatch *results) const in match() function in CharsetRecog_big5
519 UBool CharsetRecog_gb_18030::match(InputText *det, CharsetMatch *results) const in match() function in CharsetRecog_gb_18030
/third_party/libwebsockets/lib/core-net/client/
H A Dsort-dns.c113 int n = 0, match = 0; in lws_ipv6_prefix_match_len() local
117 match += 8; in lws_ipv6_prefix_match_len()
122 if (match != 128) { in lws_ipv6_prefix_match_len()
127 match++; in lws_ipv6_prefix_match_len()
133 return match; in lws_ipv6_prefix_match_len()
/third_party/ltp/scripts/
H A Dcheckbashisms.pl243 # Don't match lines that look like a rule if we're in a
278 my $match = '';
337 # Determine which one would match first:
396 $match = $1;
414 $match = $1;
445 # can match "foo <<-?'xyz'" as a heredoc later
463 $match = $1;
478 $match = $1;
503 # last match in a variable, as s/// resets it back
508 # position += length of match
[all...]
/third_party/node/lib/internal/test_runner/
H A Dcoverage.js139 const match = RegExpPrototypeExec(kIgnoreRegex, line);
141 if (match !== null) {
142 ignoreCount = NumberParseInt(match.groups?.count ?? 1, 10);
148 const match = RegExpPrototypeExec(kStatusRegex, line);
149 const status = match?.groups?.status;
/third_party/node/deps/v8/tools/
H A Dlocs.py212 if (self.regexp.match(unit.file)):
271 if group.regexp.match(filename):
329 cmd = self.cmd_pattern.match(compilation_unit['command'])
363 match = re.search(r"#deps (\d+)", line)
364 deps_number = match.group(1)
/third_party/node/tools/inspector_protocol/jinja2/
H A Dutils.py211 match = _punctuation_re.match(word)
212 if match:
213 lead, middle, trail = match.groups()
231 not ':' in middle and _simple_email_re.match(middle):
/third_party/node/deps/icu-small/source/i18n/
H A Dcsrmbcs.cpp199 // No match if there are too many characters that don't fit the encoding scheme. in match_mbcs()
269 UBool CharsetRecog_sjis::match(InputText* det, CharsetMatch *results) const { in match() function in CharsetRecog_sjis
369 UBool CharsetRecog_euc_jp::match(InputText *det, CharsetMatch *results) const in match() function in CharsetRecog_euc_jp
391 UBool CharsetRecog_euc_kr::match(InputText *det, CharsetMatch *results) const in match() function in CharsetRecog_euc_kr
443 UBool CharsetRecog_big5::match(InputText *det, CharsetMatch *results) const in match() function in CharsetRecog_big5
519 UBool CharsetRecog_gb_18030::match(InputText *det, CharsetMatch *results) const in match() function in CharsetRecog_gb_18030
/third_party/node/deps/npm/node_modules/nopt/lib/
H A Dnopt-lib.js266 if (arg.match(/^-{2,}$/)) {
357 } else if (!la.match(/^-{2,}[^-]/) &&
363 } else if (!la.match(/^-[^-]/) && hasTypeDef(argType, StringType)) {
382 } else if (la.match(/^-{1,2}[^-]+/)) {
388 if (la && la.match(/^-{2,}$/)) {
430 // not a match to some other abbrev.
/third_party/skia/third_party/externals/angle2/scripts/
H A Dgenerate_android_bp.py111 match = re.match(target_regex, target)
112 assert match is not None
114 gn_file_path = match.group(1)
115 target_name = match.group(2)
292 # Override AOSP build flags to match ANGLE's CQ testing and reduce binary size

Completed in 20 milliseconds

1...<<51525354555657585960>>...261