Searched refs:internal_memcmp (Results 1 – 12 of 12) sorted by relevance
/freebsd/contrib/llvm-project/compiler-rt/lib/fuzzer/ |
H A D | FuzzerInterceptors.cpp | 91 static int internal_memcmp(const void *s1, const void *s2, size_t n) { in internal_memcmp() function 114 if (internal_memcmp(haystack + pos, needle, len2) == 0) in internal_strstr() 153 return internal_memcmp(s1, s2, n); in DEFINE_REAL() 161 return internal_memcmp(s1, s2, n); in memcmp()
|
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/ |
H A D | sanitizer_libc.cpp | 43 int internal_memcmp(const void* s1, const void* s2, uptr n) { in internal_memcmp() function 249 if (internal_memcmp(haystack + pos, needle, len2) == 0) in internal_simple_strtoll()
|
H A D | sanitizer_libc.h | 43 int internal_memcmp(const void* s1, const void* s2, uptr n);
|
H A D | sanitizer_symbolizer_markup.cpp | 79 internal_memcmp(module.uuid(), renderedModule.uuid, in ModulesEq()
|
H A D | sanitizer_mac.cpp | 455 if (!internal_memcmp(p, name, name_len) && in GetEnv() 1014 if (!internal_memcmp(p, name, name_len) && p[name_len] == '=') { in LeakyResetEnv() 1089 (internal_memcmp(filename_start, dylib_name, dylib_name_len) != 0)) { in StripEnv()
|
H A D | sanitizer_symbolizer_posix_libcdep.cpp | 265 return !internal_memcmp(buffer + length - kTerminatorLen, in ReachedEndOfOutput()
|
H A D | sanitizer_linux_libcdep.cpp | 693 if (internal_memcmp(name, "GNU", 3) == 0) { in AddModuleSegments()
|
H A D | sanitizer_win.cpp | 635 if (internal_memcmp(pe_sig, "PE\0\0", 4) != 0) in GetPreferredBase()
|
H A D | sanitizer_common.h | 615 return internal_memcmp(lhs.data(), rhs.data(), lhs.size() * sizeof(T)) == 0;
|
H A D | sanitizer_linux.cpp | 685 else if (!internal_memcmp(p, name, namelen) && p[namelen] == '=') // Match. in GetEnv()
|
H A D | sanitizer_common_interceptors.inc | 842 return internal_memcmp(a1, a2, size); 856 return internal_memcmp(a1, a2, size);
|
/freebsd/contrib/llvm-project/compiler-rt/lib/hwasan/ |
H A D | hwasan_allocator.cpp | 327 (internal_memcmp(tail_beg, tail_magic, tail_size) || in HwasanDeallocate()
|