Searched refs:internal_memmove (Results 1 - 23 of 23) sorted by relevance

/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
H A Dsanitizer_termination.cc36 internal_memmove(&InternalDieCallbacks[i], &InternalDieCallbacks[i + 1],
H A Dsanitizer_libc.cc58 void *internal_memmove(void *dest, const void *src, uptr n) { function in namespace:__sanitizer
176 internal_memmove(dst + dstlen, src, srclen + 1);
178 internal_memmove(dst + dstlen, src, maxlen - dstlen - 1);
196 internal_memmove(dst, src, srclen + 1);
198 internal_memmove(dst, src, maxlen - 1);
H A Dsanitizer_libc.h34 void *internal_memmove(void *dest, const void *src, uptr n);
H A Dsanitizer_common.cc249 internal_memmove(buf, s, len);
H A Dsanitizer_fuchsia.cc432 internal_memmove(line, line + lastLineEnd, cur - lastLineEnd);
443 internal_memmove(line, line + lastLineEnd, cur - lastLineEnd);
H A Dsanitizer_common_interceptors.inc255 return internal_memmove(dst, src, size); \
269 return internal_memmove(dst, src, size); \
796 // implementation. We need to use internal_memmove here.
797 // N.B.: If we switch this to internal_ we'll have to use internal_memmove
/netbsd-current/external/gpl3/gcc.old/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_termination.cc34 internal_memmove(&InternalDieCallbacks[i], &InternalDieCallbacks[i + 1],
H A Dsanitizer_libc.cc56 void *internal_memmove(void *dest, const void *src, uptr n) { function in namespace:__sanitizer
174 internal_memmove(dst + dstlen, src, srclen + 1);
176 internal_memmove(dst + dstlen, src, maxlen - dstlen - 1);
194 internal_memmove(dst, src, srclen + 1);
196 internal_memmove(dst, src, maxlen - 1);
H A Dsanitizer_libc.h32 void *internal_memmove(void *dest, const void *src, uptr n);
H A Dsanitizer_common.cc247 internal_memmove(buf, s, len);
H A Dsanitizer_fuchsia.cc431 internal_memmove(line, line + lastLineEnd, cur - lastLineEnd);
442 internal_memmove(line, line + lastLineEnd, cur - lastLineEnd);
H A Dsanitizer_common_interceptors.inc258 return internal_memmove(dst, src, size); \
272 return internal_memmove(dst, src, size); \
803 // implementation. We need to use internal_memmove here.
804 // N.B.: If we switch this to internal_ we'll have to use internal_memmove
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/sanitizer_common/
H A Dsanitizer_termination.cpp35 internal_memmove(&InternalDieCallbacks[i], &InternalDieCallbacks[i + 1],
H A Dsanitizer_libc.cpp57 void *internal_memmove(void *dest, const void *src, uptr n) { function in namespace:__sanitizer
176 internal_memmove(dst + dstlen, src, srclen + 1);
178 internal_memmove(dst + dstlen, src, maxlen - dstlen - 1);
196 internal_memmove(dst, src, srclen + 1);
198 internal_memmove(dst, src, maxlen - 1);
H A Dsanitizer_libc.h33 void *internal_memmove(void *dest, const void *src, uptr n);
H A Dsanitizer_common.cpp247 internal_memmove(buf, s, len);
H A Dsanitizer_fuchsia.cpp415 internal_memmove(line, line + lastLineEnd, cur - lastLineEnd);
426 internal_memmove(line, line + lastLineEnd, cur - lastLineEnd);
H A Dsanitizer_common_interceptors.inc275 return internal_memmove(dst, src, size); \
289 return internal_memmove(dst, src, size); \
822 // implementation. We need to use internal_memmove here.
823 // N.B.: If we switch this to internal_ we'll have to use internal_memmove
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/asan/
H A Dasan_interceptors_memintrinsics.h115 if (UNLIKELY(!asan_inited)) return internal_memmove(to, from, size); \
121 return internal_memmove(to, from, size); \
/netbsd-current/external/gpl3/gcc.old/dist/libsanitizer/asan/
H A Dasan_interceptors_memintrinsics.h113 if (UNLIKELY(!asan_inited)) return internal_memmove(to, from, size); \
119 return internal_memmove(to, from, size); \
/netbsd-current/external/gpl3/gcc/dist/libsanitizer/asan/
H A Dasan_interceptors_memintrinsics.h114 if (UNLIKELY(!asan_inited)) return internal_memmove(to, from, size); \
120 return internal_memmove(to, from, size); \
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/
H A Dsanitizer_libc_test.cc32 // A regression test for internal_memmove() implementation.
36 __sanitizer::internal_memmove(dest, src, 5);
/netbsd-current/sys/external/bsd/compiler_rt/dist/lib/msan/
H A Dmsan_interceptors.cc1564 if (!msan_inited) return internal_memmove(dest, src, n);

Completed in 218 milliseconds