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

  /src/sys/external/bsd/compiler_rt/dist/lib/interception/
interception_type_test.cc 23 COMPILER_CHECK(sizeof(::SIZE_T) == sizeof(size_t));
interception.h 28 typedef __sanitizer::uptr SIZE_T;
  /src/sys/external/bsd/compiler_rt/dist/lib/msan/
msan_interceptors.cc 57 DECLARE_REAL(SIZE_T, strlen, const char *s)
58 DECLARE_REAL(SIZE_T, strnlen, const char *s, SIZE_T maxlen)
134 INTERCEPTOR(SIZE_T, fread_unlocked, void *ptr, SIZE_T size, SIZE_T nmemb,
137 SIZE_T res = REAL(fread_unlocked)(ptr, size, nmemb, file);
148 INTERCEPTOR(void *, mempcpy, void *dest, const void *src, SIZE_T n) {
156 INTERCEPTOR(void *, memccpy, void *dest, const void *src, int c, SIZE_T n) {
160 SIZE_T sz = res ? (char *)res - (char *)dest : n
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/asan/
asan_interceptors.h 111 DECLARE_REAL(SIZE_T, strlen, const char *s)
asan_malloc_win.cc 68 void *malloc(size_t size) {
74 void *_malloc_base(size_t size) {
79 void *_malloc_dbg(size_t size, int, const char *, int) {
84 void *calloc(size_t nmemb, size_t size) {
90 void *_calloc_base(size_t nmemb, size_t size) {
95 void *_calloc_dbg(size_t nmemb, size_t size, int, const char *, int) {
100 void *_calloc_impl(size_t nmemb, size_t size, int *errno_tmp)
    [all...]
  /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/
sanitizer_common_syscalls.inc 135 SIZE_T iovlen, SIZE_T maxlen) {
136 for (SIZE_T i = 0; i < iovlen && maxlen; ++i) {
146 SIZE_T iovlen, SIZE_T maxlen) {
148 for (SIZE_T i = 0; i < iovlen && maxlen; ++i) {
2861 __sanitizer_kernel_sigaction_t *oldact, SIZE_T sz) {
2871 __sanitizer_kernel_sigaction_t *oldact, SIZE_T sz) {
2873 SIZE_T oldact_sz = ((char *)&oldact->sa_mask) - ((char *)oldact) + sz;
sanitizer_common_interceptors.inc 307 SIZE_T *size;
354 INTERCEPTOR(SIZE_T, strlen, const char *s) {
363 SIZE_T result = REAL(strlen)(s);
374 INTERCEPTOR(SIZE_T, strnlen, const char *s, SIZE_T maxlen) {
377 SIZE_T length = REAL(strnlen)(s, maxlen);
518 INTERCEPTOR(int, strncasecmp, const char *s1, const char *s2, SIZE_T size) {
651 const void *s1, SIZE_T len1, const void *s2,
652 SIZE_T len2, void *result)
654 INTERCEPTOR(void*, memmem, const void *s1, SIZE_T len1, const void *s2
    [all...]
sanitizer_common_interceptors_format.inc 126 return sizeof(SIZE_T);
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/dd/
dd_interceptors.cc 231 INTERCEPTOR(SSIZE_T, read, int fd, void *ptr, SIZE_T count) {
236 INTERCEPTOR(SSIZE_T, pread, int fd, void *ptr, SIZE_T count, OFF_T offset) {
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_interceptors.cc 778 void *addr, SIZE_T sz, int prot, int flags,
2142 typedef int (*dl_iterate_phdr_cb_t)(__sanitizer_dl_phdr_info *info, SIZE_T size,
2155 static int dl_iterate_phdr_cb(__sanitizer_dl_phdr_info *info, SIZE_T size,

Completed in 21 milliseconds