Searched refs:CHECK_RANGES_OVERLAP (Results 1 – 3 of 3) sorted by relevance
/external/llvm-project/compiler-rt/lib/asan/ |
D | asan_interceptors_memintrinsics.h | 90 CHECK_RANGES_OVERLAP("memcpy", to, size, from, size); \ in DECLARE_REAL() 135 #define CHECK_RANGES_OVERLAP(name, _offset1, length1, _offset2, length2) \ in DECLARE_REAL() macro
|
D | asan_interceptors.cpp | 395 CHECK_RANGES_OVERLAP("strcat", to, from_length + to_length + 1, from, in DEFINE_REAL() 414 CHECK_RANGES_OVERLAP("strncat", to, to_length + copy_length + 1, in INTERCEPTOR() 436 CHECK_RANGES_OVERLAP("strcpy", to, from_size, from, from_size); in INTERCEPTOR() 481 CHECK_RANGES_OVERLAP("strncpy", to, from_size, from, from_size); in INTERCEPTOR()
|
/external/compiler-rt/lib/asan/ |
D | asan_interceptors.cc | 103 #define CHECK_RANGES_OVERLAP(name, _offset1, length1, _offset2, length2) do { \ macro 403 CHECK_RANGES_OVERLAP("memcpy", to, size, from, size); \ 506 CHECK_RANGES_OVERLAP("strcat", to, from_length + to_length + 1, in DEFINE_REAL() 525 CHECK_RANGES_OVERLAP("strncat", to, to_length + copy_length + 1, in INTERCEPTOR() 546 CHECK_RANGES_OVERLAP("strcpy", to, from_size, from, from_size); in INTERCEPTOR() 602 CHECK_RANGES_OVERLAP("strncpy", to, from_size, from, from_size); in INTERCEPTOR()
|