Searched refs:pattern (Results 1 – 6 of 6) sorted by relevance
/kvm-unit-tests/arm/ |
H A D | gic.c | 355 static bool test_ro_pattern_32(void *address, u32 pattern, u32 orig) in test_ro_pattern_32() argument 359 writel(pattern, address); in test_ro_pattern_32() 370 u32 orig, pattern; in test_readonly_32() local 376 pattern = 0xffffffff; in test_readonly_32() 377 if (orig != pattern) { in test_readonly_32() 378 if (!test_ro_pattern_32(address, pattern, orig)) in test_readonly_32() 382 pattern = 0xa5a55a5a; in test_readonly_32() 383 if (orig != pattern) { in test_readonly_32() 384 if (!test_ro_pattern_32(address, pattern, orig)) in test_readonly_32() 388 pattern = 0; in test_readonly_32() [all …]
|
/kvm-unit-tests/lib/ |
H A D | string.c | 302 bool simple_glob(const char *text, const char *pattern) in simple_glob() argument 306 size_t n = strlen(pattern); in simple_glob() 309 if (pattern[0] == '*') { in simple_glob() 310 pattern += 1; in simple_glob() 315 strcpy(copy, pattern); in simple_glob() 317 if (n > 0 && pattern[n - 1] == '*') { in simple_glob()
|
H A D | libcflat.h | 120 bool simple_glob(const char *text, const char *pattern);
|
/kvm-unit-tests/ |
H A D | MAINTAINERS | 37 One pattern per line. Multiple F: lines acceptable. 44 K: Keyword perl extended regex pattern to match content in a 51 One regex pattern per line. Multiple K: lines acceptable.
|
/kvm-unit-tests/scripts/ |
H A D | get_maintainer.pl | 981 my ($file, $pattern) = @_; 982 if (substr($pattern, -1) eq "/") { 983 if ($file =~ m@^$pattern@) { 987 if ($file =~ m@^$pattern@) { 989 my $s2 = ($pattern =~ tr@/@@); 1530 my $pattern = $VCS_cmds{"commit_pattern"}; 1536 $commits = grep(/$pattern/, @lines); # of commits
|
H A D | kernel-doc | 2366 my $pattern = $highlights[$k][0]; 2369 $dohighlight .= "\$contents =~ s:$pattern:$result:gs;\n";
|