Home
last modified time | relevance | path

Searched refs:internal_memcmp (Results 1 – 10 of 10) sorted by relevance

/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/fuzzer/
H A DFuzzerInterceptors.cpp91 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-13.1/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_libc.h31 int internal_memcmp(const void* s1, const void* s2, uptr n);
H A Dsanitizer_libc.cpp40 int internal_memcmp(const void* s1, const void* s2, uptr n) { in internal_memcmp() function
224 if (internal_memcmp(haystack + pos, needle, len2) == 0) in internal_strstr()
H A Dsanitizer_mac.cpp444 if (!internal_memcmp(p, name, name_len) && in GetEnv()
980 if (!internal_memcmp(p, name, name_len) && p[name_len] == '=') { in LeakyResetEnv()
1127 (internal_memcmp(filename_start, dylib_name, dylib_name_len) != 0)) { in MaybeReexec()
H A Dsanitizer_symbolizer_posix_libcdep.cpp260 return !internal_memcmp(buffer + length - kTerminatorLen, in ReachedEndOfOutput()
H A Dsanitizer_win.cpp604 if (internal_memcmp(pe_sig, "PE\0\0", 4) != 0) in GetPreferredBase()
H A Dsanitizer_common.h587 return internal_memcmp(lhs.data(), rhs.data(), lhs.size() * sizeof(T)) == 0;
H A Dsanitizer_linux.cpp550 else if (!internal_memcmp(p, name, namelen) && p[namelen] == '=') // Match. in GetEnv()
H A Dsanitizer_common_interceptors.inc889 return internal_memcmp(a1, a2, size);
903 return internal_memcmp(a1, a2, size);
/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/hwasan/
H A Dhwasan_allocator.cpp231 if (tail_size && internal_memcmp(tail_beg, tail_magic, tail_size)) in HwasanDeallocate()