HomeSort by: relevance | last modified time | path
    Searched refs:Match (Results 1 - 13 of 13) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_suppressions.cc 50 // Match "interceptor_name" suppressions.
51 return suppression_ctx->Match(interceptor_name, kInterceptorName, &s);
63 // Match "odr_violation" suppressions.
64 return suppression_ctx->Match(global_var_name, kODRViolation, &s);
78 // Match "interceptor_via_lib" suppressions.
80 if (suppression_ctx->Match(module_name, kInterceptorViaLibrary, &s))
92 // Match "interceptor_via_fun" suppressions.
93 if (suppression_ctx->Match(function_name, kInterceptorViaFunction,
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_suppressions.h 39 bool Match(const char *str, const char *type, Suppression **s);
sanitizer_suppressions.cc 81 bool SuppressionContext::Match(const char *str, const char *type,
107 // Context must not mutate once Match has been called.
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_suppressions.cc 105 if (suppression_ctx->Match(info.function, stype, sp) ||
106 suppression_ctx->Match(info.file, stype, sp) ||
107 suppression_ctx->Match(info.module, stype, sp)) {
144 if (suppression_ctx->Match(global.name, stype, &s) ||
145 suppression_ctx->Match(global.module, stype, &s)) {
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/scripts/
cpplint.py 302 # match those on a word boundary.
341 # Match start of assembly blocks
409 def Match(pattern, s):
411 # The regexp compilation caching is inlined in both Match and Search for
416 return _regexp_compile_cache[pattern].match(s)
708 if Match(r'T(EST|est)', self.current_function):
922 line = line.replace(r'\\', 'XX') # after this, \\" does not match to \"
1021 if not _RE_PATTERN_INCLUDE.match(elided):
1195 '#ifndef and #define don\'t match, suggested CPP variable is: %s' %
1352 if _RE_PATTERN_INVALID_INCREMENT.match(line)
    [all...]
  /src/sys/external/bsd/gnu-efi/dist/lib/
hand.c 124 BOOLEAN Match;
193 // passed in. If it does match, and the next node is the End of the
195 // Path, then we have found a match.
198 Match = FALSE;
226 Match = TRUE;
231 Match = TRUE;
252 if (Match == FALSE) {
  /src/sys/arch/hppa/hppa/
db_disasm.c 294 * longer than 32 to match bit 0.
975 #define Match(s) (strncmp(s,i->mnem,sizeof(s)-1) == 0)
1315 if (Match("dcor") || Match("idcor"))
1326 if (Match("addi"))
1339 if (Match("vshd"))
1525 if (Rsb(w) == 0 && Match("ldo")) {
1660 if (link && !Match("gate"))
1668 if (link || Match("gate"))
1718 if (Match("movb")
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
sanitizer_suppressions_test.cc 26 TEST(Suppressions, Match) {
  /src/sys/external/bsd/acpica/dist/events/
evrgnini.c 389 BOOLEAN Match;
400 Match = AcpiUtIsPciRootBridge (Hid->String);
403 if (Match)
408 /* The _HID did not match. Get the _CID and check for a PCI Root Bridge */
  /src/sys/external/bsd/compiler_rt/dist/lib/ubsan/
ubsan_diag.cc 409 return suppression_ctx->Match(TypeName, kVptrCheck, &s);
422 if (Filename != nullptr && suppression_ctx->Match(Filename, SuppType, &s))
426 if (suppression_ctx->Match(Module, SuppType, &s))
432 return suppression_ctx->Match(AI.function, SuppType, &s) ||
433 suppression_ctx->Match(AI.file, SuppType, &s);
  /src/games/fortune/fortune/
fortune.c 107 static bool Found_one; /* did we find a match? */
122 static bool Match = FALSE; /* dump fortunes matching a pattern */
200 if (Match)
343 case 'i': /* case-insensitive match */
345 errx(1, "Can't match fortunes on this system (Sorry)");
348 Match++;
351 case 'i': /* case-insensitive match */
1241 * Find all the fortunes which match the pattern we've been given.
  /src/sys/external/bsd/compiler_rt/dist/lib/lsan/
lsan_common.cc 637 if (suppressions->Match(module_name, kSuppressionLeak, &s))
643 if (suppressions->Match(cur->info.function, kSuppressionLeak, &s) ||
644 suppressions->Match(cur->info.file, kSuppressionLeak, &s)) {
  /src/sys/external/bsd/acpica/dist/tests/misc/
grammar.asl 6399 // zero if the strings mismatch, or 1 if the strings match.
6406 // Return: zero if strings mismatch, 1 if strings match
6447 Return (One) // strings / buffers match
7317 // DEST element does not match the value from SRCB
7781 Store (Match (DerefOf (Index (TIM0, 1, )), MLE, Local5, MTR, 0, 0), Local6)
7790 Store ("Match(DerefOf(Index(TIM0,1)),... PASS", Debug)
7807 And (Match (DerefOf (Index (TIM0, 0, )), MGE, PIO0, MTR, 0, 0), 3, Local0)
7820 Store ("And(Match(DerefOf(Index(TIM0,0)),... PASS", Debug)

Completed in 33 milliseconds