| /src/external/bsd/byacc/dist/test/btyacc/ |
| inherit0.tab.h | 8 #define REAL 259
|
| btyacc_destroy1.tab.h | 8 #define REAL 259
|
| btyacc_destroy2.tab.h | 8 #define REAL 259
|
| btyacc_destroy3.tab.h | 8 #define REAL 259
|
| err_inherit3.tab.h | 8 #define REAL 259
|
| inherit1.tab.h | 8 #define REAL 259
|
| inherit2.tab.h | 8 #define REAL 259
|
| /src/sys/external/bsd/compiler_rt/dist/lib/asan/ |
| asan_interceptors.cc | 54 ASAN_READ_STRING_OF_LEN((ctx), (s), REAL(strlen)(s), (n)) 58 if (REAL(strnlen)) { 59 return REAL(strnlen)(s, maxlen); 104 return REAL(func)(__VA_ARGS__); \ 106 return REAL(func)(__VA_ARGS__); \ 129 #define COMMON_INTERCEPTOR_BLOCK_REAL(name) REAL(name) 213 REAL(pthread_attr_getdetachstate)(attr, &detached); 226 result = REAL(pthread_create)(thread, attr, asan_thread_start, ¶m); 282 = REAL(swapcontext); 285 int res = REAL(swapcontext)(oucp, ucp) [all...] |
| asan_win.cc | 82 CHECK(REAL(SetUnhandledExceptionFilter)); 84 return REAL(SetUnhandledExceptionFilter)(ExceptionFilter); 92 CHECK(REAL(RtlRaiseException)); 97 REAL(RtlRaiseException)(ExceptionRecord); 101 CHECK(REAL(RaiseException)); 103 REAL(RaiseException)(a, b, c, d); 109 CHECK(REAL(__C_specific_handler)); 111 return REAL(__C_specific_handler)(a, b, c, d); 117 CHECK(REAL(_except_handler3)); 119 return REAL(_except_handler3)(a, b, c, d) [all...] |
| asan_poisoning.h | 58 REAL(memset)((void*)shadow_beg, value, shadow_end - shadow_beg); 65 REAL(memset)((void *)shadow_beg, 0, shadow_end - shadow_beg); 68 REAL(memset)((void *)shadow_beg, 0, page_beg - shadow_beg); 71 REAL(memset)((void *)page_end, 0, shadow_end - page_end);
|
| /src/sys/external/bsd/compiler_rt/dist/lib/tsan/dd/ |
| dd_interceptors.cc | 46 return REAL(pthread_mutex_destroy)(m); 52 int res = REAL(pthread_mutex_lock)(m); 59 int res = REAL(pthread_mutex_trylock)(m); 68 return REAL(pthread_mutex_unlock)(m); 73 int res = REAL(pthread_spin_destroy)(m); 81 int res = REAL(pthread_spin_lock)(m); 88 int res = REAL(pthread_spin_trylock)(m); 97 return REAL(pthread_spin_unlock)(m); 103 return REAL(pthread_rwlock_destroy)(m); 109 int res = REAL(pthread_rwlock_rdlock)(m) [all...] |
| /src/sys/external/bsd/compiler_rt/dist/lib/interception/tests/ |
| interception_linux_test.cc | 58 // Calling the REAL function should not affect the counter. 60 EXPECT_NE(0, REAL(isdigit)('1')); 61 EXPECT_EQ(0, REAL(isdigit)('a'));
|
| /src/external/bsd/byacc/dist/test/ |
| inherit0.y | 15 %token REAL INTEGER 31 type : REAL { $$ = 1; }
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/asan/ |
| asan_interceptors.cpp | 57 if (REAL(strnlen)) { 58 return REAL(strnlen)(s, maxlen); 105 return REAL(func)(__VA_ARGS__); \ 107 return REAL(func)(__VA_ARGS__); \ 130 #define COMMON_INTERCEPTOR_BLOCK_REAL(name) REAL(name) 210 REAL(pthread_attr_getdetachstate)(attr, &detached); 225 result = REAL(pthread_create)(thread, attr, asan_thread_start, t); 273 = REAL(swapcontext); 276 int res = REAL(swapcontext)(oucp, ucp); 294 REAL(longjmp)(env, val) [all...] |
| asan_win.cpp | 81 CHECK(REAL(SetUnhandledExceptionFilter)); 83 return REAL(SetUnhandledExceptionFilter)(ExceptionFilter); 91 CHECK(REAL(RtlRaiseException)); 96 REAL(RtlRaiseException)(ExceptionRecord); 100 CHECK(REAL(RaiseException)); 102 REAL(RaiseException)(a, b, c, d); 110 CHECK(REAL(__C_specific_handler)); 112 return REAL(__C_specific_handler)(a, b, c, d); 118 CHECK(REAL(_except_handler3)); 120 return REAL(_except_handler3)(a, b, c, d) [all...] |
| asan_malloc_win.cpp | 161 REAL(memcpy)(new_alloc, p, Min<size_t>(size, old_size)); 163 REAL(memset)(((u8 *)new_alloc) + old_size, 0, size - old_size); 215 return REAL(HeapSize)(hHeap, dwFlags, lpMem); 231 return REAL(HeapAlloc)(hHeap, dwFlags, dwBytes); 260 return REAL(HeapFree)(hHeap, dwFlags, lpMem); 299 // runtime came up, use the real HeapFree function. 322 REAL(memcpy)(replacement_alloc, lpMem, old_size); 342 REAL(memcpy)(replacement_alloc, lpMem, 382 REAL(memset)(((u8 *)ptr) + old_size, 0, new_size - old_size); 391 return SharedReAlloc(REAL(HeapReAlloc), (SizeFunction)REAL(HeapSize) [all...] |
| asan_poisoning.h | 55 REAL(memset)((void*)shadow_beg, value, shadow_end - shadow_beg); 62 REAL(memset)((void *)shadow_beg, 0, shadow_end - shadow_beg); 65 REAL(memset)((void *)shadow_beg, 0, page_beg - shadow_beg); 68 REAL(memset)((void *)page_end, 0, shadow_end - page_end);
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/tsan/ |
| tsan_interceptors_mach_vm.cpp | 33 return REAL(mach_vm_allocate)(target, address, size, flags); 36 kern_return_t kr = REAL(mach_vm_allocate)(target, address, size, flags); 46 return REAL(mach_vm_deallocate)(target, address, size); 47 kern_return_t kr = REAL(mach_vm_deallocate)(target, address, size);
|
| tsan_interceptors_mac.cpp | 157 REAL(OSAtomicEnqueue)(list, item, offset); 162 void *item = REAL(OSAtomicDequeue)(list, offset); 174 REAL(OSAtomicFifoEnqueue)(list, item, offset); 180 void *item = REAL(OSAtomicFifoDequeue)(list, offset); 190 return REAL(OSSpinLockLock)(lock); 193 REAL(OSSpinLockLock)(lock); 200 return REAL(OSSpinLockTry)(lock); 203 bool result = REAL(OSSpinLockTry)(lock); 212 return REAL(OSSpinLockUnlock)(lock); 216 REAL(OSSpinLockUnlock)(lock) [all...] |
| /src/sys/external/bsd/compiler_rt/dist/lib/msan/ |
| msan_interceptors.cc | 137 SIZE_T res = REAL(fread_unlocked)(ptr, size, nmemb, file); 158 void *res = REAL(memccpy)(dest, src, c, n); 260 REAL(memset)(sret, 0, sizeof(*sret)); 279 // FIXME: implement, but don't call REAL(malloc_stats)! 289 SIZE_T n = REAL(strlen)(src); 291 char *res = REAL(strcpy)(dest, src); // NOLINT 299 SIZE_T copy_size = REAL(strnlen)(src, n); 302 char *res = REAL(strncpy)(dest, src, n); // NOLINT 312 SIZE_T n = REAL(strlen)(src); 314 char *res = REAL(stpcpy)(dest, src); // NOLIN [all...] |
| /src/sys/external/bsd/compiler_rt/dist/lib/lsan/ |
| lsan_mac.cc | 115 return REAL(dispatch_x_f)(dq, (void *)lsan_ctxt, \ 126 return REAL(dispatch_after_f)(when, dq, (void *)lsan_ctxt, 133 REAL(dispatch_group_async_f) 160 REAL(dispatch_async)(dq, lsan_block); 166 REAL(dispatch_group_async)(dg, dq, lsan_block); 172 REAL(dispatch_after)(when, queue, lsan_block); 178 REAL(dispatch_source_set_cancel_handler)(ds, work); 182 REAL(dispatch_source_set_cancel_handler)(ds, lsan_block); 188 REAL(dispatch_source_set_event_handler)(ds, lsan_block);
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/lsan/ |
| lsan_mac.cpp | 114 return REAL(dispatch_x_f)(dq, (void *)lsan_ctxt, \ 125 return REAL(dispatch_after_f)(when, dq, (void *)lsan_ctxt, 132 REAL(dispatch_group_async_f) 159 REAL(dispatch_async)(dq, lsan_block); 165 REAL(dispatch_group_async)(dg, dq, lsan_block); 171 REAL(dispatch_after)(when, queue, lsan_block); 177 REAL(dispatch_source_set_cancel_handler)(ds, work); 181 REAL(dispatch_source_set_cancel_handler)(ds, lsan_block); 187 REAL(dispatch_source_set_event_handler)(ds, lsan_block);
|
| /src/external/gpl3/gcc.old/dist/libsanitizer/interception/ |
| interception_linux.h | 34 (::__interception::uptr *) & REAL(func), \ 43 (::__interception::uptr *) & REAL(func), \
|
| interception_win.h | 67 (::__interception::uptr *)&REAL(func)) 72 (::__interception::uptr *)&REAL(func)) 80 (::__interception::uptr *)&REAL(func))
|
| /src/sys/external/bsd/compiler_rt/dist/lib/interception/ |
| interception_win.h | 68 (::__interception::uptr *)&REAL(func)) 73 (::__interception::uptr *)&REAL(func)) 81 (::__interception::uptr *)&REAL(func))
|