Searched refs:REAL (Results 1 - 25 of 51) sorted by relevance

123

/external/compiler-rt/lib/tsan/dd/
H A Ddd_interceptors.cc46 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_rdloc
[all...]
/external/compiler-rt/lib/msan/
H A Dmsan_interceptors.cc109 SIZE_T res = REAL(fread)(ptr, size, nmemb, file);
119 SIZE_T res = REAL(fread_unlocked)(ptr, size, nmemb, file);
132 SSIZE_T res = REAL(readlink)(path, buf, bufsiz);
148 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(strncp
[all...]
H A Dmsan_poisoning.cc92 REAL(memcpy)((void *)MEM_TO_ORIGIN(beg), (void *)MEM_TO_ORIGIN(s),
103 REAL(memmove)((void *)MEM_TO_SHADOW((uptr)dst),
112 REAL(memcpy)((void *)MEM_TO_SHADOW((uptr)dst),
118 REAL(memcpy)(dst, src, size);
128 REAL(memset)((void *)shadow_beg, value, shadow_end - shadow_beg);
134 REAL(memset)((void *)shadow_beg, 0, shadow_end - shadow_beg);
137 REAL(memset)((void *)shadow_beg, 0, page_beg - shadow_beg);
140 REAL(memset)((void *)page_end, 0, shadow_end - page_end);
/external/compiler-rt/lib/esan/
H A Desan_interceptors.cpp63 return REAL(func)(__VA_ARGS__); \
148 #define COMMON_INTERCEPTOR_BLOCK_REAL(name) REAL(name)
249 return REAL(strcpy)(dst, src); // NOLINT
259 return REAL(strncpy)(dst, src, n);
266 return REAL(open)(name, flags, mode);
274 return REAL(open64)(name, flags, mode);
285 return REAL(creat)(name, mode);
293 return REAL(creat64)(name, mode);
304 return REAL(unlink)(path);
311 return REAL(frea
[all...]
/external/compiler-rt/lib/asan/
H A Dasan_interceptors.cc94 ASAN_READ_STRING_OF_LEN((ctx), (s), REAL(strlen)(s), (n))
115 if (REAL(strnlen)) {
116 return REAL(strnlen)(s, maxlen);
157 return REAL(func)(__VA_ARGS__); \
159 return REAL(func)(__VA_ARGS__); \
182 #define COMMON_INTERCEPTOR_BLOCK_REAL(name) REAL(name)
248 REAL(pthread_attr_getdetachstate)(attr, &detached);
261 result = REAL(pthread_create)(thread, attr, asan_thread_start, &param);
293 return REAL(bsd_signal)(signum, handler);
302 return REAL(signa
[all...]
H A Dasan_poisoning.h52 REAL(memset)((void*)shadow_beg, value, shadow_end - shadow_beg);
59 REAL(memset)((void *)shadow_beg, 0, shadow_end - shadow_beg);
62 REAL(memset)((void *)shadow_beg, 0, page_beg - shadow_beg);
65 REAL(memset)((void *)page_end, 0, shadow_end - page_end);
H A Dasan_mac.cc200 return REAL(dispatch_x_f)(dq, (void*)asan_ctxt, \
217 return REAL(dispatch_after_f)(when, dq, (void*)asan_ctxt,
231 REAL(dispatch_group_async_f)(group, dq, (void*)asan_ctxt,
260 REAL(dispatch_async)(dq, asan_block);
267 REAL(dispatch_group_async)(dg, dq, asan_block);
274 REAL(dispatch_after)(when, queue, asan_block);
280 REAL(dispatch_source_set_cancel_handler)(ds, work);
285 REAL(dispatch_source_set_cancel_handler)(ds, asan_block);
292 REAL(dispatch_source_set_event_handler)(ds, asan_block);
H A Dasan_win.cc69 CHECK(REAL(RaiseException));
71 REAL(RaiseException)(a, b, c, d);
78 CHECK(REAL(_except_handler3));
80 return REAL(_except_handler3)(a, b, c, d);
88 CHECK(REAL(_except_handler4));
90 return REAL(_except_handler4)(a, b, c, d);
114 return REAL(CreateThread)(security, stack_size,
146 return REAL(NtWaitForWorkViaWorkerFactory)(a, b);
167 (uptr *)&REAL(NtWaitForWorkViaWorkerFactory)));
H A Dasan_interceptors.h96 if ((!INTERCEPT_FUNCTION(name) || !REAL(name))) \
101 if ((!INTERCEPT_FUNCTION_VER(name, ver) || !REAL(name))) \
H A Dasan_stats.cc29 CHECK(REAL(memset));
30 REAL(memset)(this, 0, sizeof(AsanStats));
/external/skia/bench/
H A DBlurBench.cpp18 #define REAL 1.5f macro
100 DEF_BENCH(return new BlurBench(REAL, kNormal_SkBlurStyle);)
101 DEF_BENCH(return new BlurBench(REAL, kSolid_SkBlurStyle);)
102 DEF_BENCH(return new BlurBench(REAL, kOuter_SkBlurStyle);)
103 DEF_BENCH(return new BlurBench(REAL, kInner_SkBlurStyle);)
113 DEF_BENCH(return new BlurBench(REAL, kNormal_SkBlurStyle, SkBlurMaskFilter::kHighQuality_BlurFlag);)
H A DMorphologyBench.cpp17 #define REAL 1.5f macro
95 DEF_BENCH( return new MorphologyBench(REAL, kErode_MT); )
96 DEF_BENCH( return new MorphologyBench(REAL, kDilate_MT); )
H A DBlurRectBench.cpp17 #define REAL 1.5f macro
188 DEF_BENCH(return new BlurRectBoxFilterBench(REAL);)
192 DEF_BENCH(return new BlurRectGaussianBench(REAL);)
196 DEF_BENCH(return new BlurRectDirectBench(REAL);)
/external/compiler-rt/lib/dfsan/
H A Ddfsan_interceptors.cc21 void *res = REAL(mmap)(addr, length, prot, flags, fd, offset);
29 void *res = REAL(mmap64)(addr, length, prot, flags, fd, offset);
/external/compiler-rt/lib/interception/tests/
H A Dinterception_linux_test.cc55 // Calling the REAL function should not affect the counter.
57 EXPECT_NE(0, REAL(isdigit)('1'));
58 EXPECT_EQ(0, REAL(isdigit)('a'));
/external/compiler-rt/lib/tsan/rtl/
H A Dtsan_interceptors.h33 if (REAL(func) == 0) { \
38 return REAL(func)(__VA_ARGS__); \
H A Dtsan_interceptors_mac.cc145 REAL(OSAtomicEnqueue)(list, item, offset);
150 void *item = REAL(OSAtomicDequeue)(list, offset);
162 REAL(OSAtomicFifoEnqueue)(list, item, offset);
168 void *item = REAL(OSAtomicFifoDequeue)(list, offset);
178 return REAL(OSSpinLockLock)(lock);
181 REAL(OSSpinLockLock)(lock);
188 return REAL(OSSpinLockTry)(lock);
191 bool result = REAL(OSSpinLockTry)(lock);
200 return REAL(OSSpinLockUnlock)(lock);
204 REAL(OSSpinLockUnloc
[all...]
H A Dtsan_interceptors.cc319 #define BLOCK_REAL(name) (BlockingCall(thr), REAL(name))
416 int res = REAL(__cxa_atexit)(at_exit_wrapper, ctx, dso);
442 int res = REAL(on_exit)(on_exit_wrapper, ctx);
567 // Note: if we call REAL(longjmp) in the context of ScopedInterceptor,
574 REAL(longjmp)(env, val);
582 REAL(siglongjmp)(env, val);
659 return REAL(strcpy)(dst, src); // NOLINT
667 return REAL(strncpy)(dst, src, n);
673 return REAL(strdup)(str);
695 void *res = REAL(mma
[all...]
H A Dtsan_libdispatch_mac.cc142 REAL(name##_f)(q, new_context, dispatch_callback_wrap); \
156 REAL(name##_f)(q, &new_context, dispatch_callback_wrap); \
170 REAL(name)(q, new_context, dispatch_callback_wrap); \
182 REAL(name)(q, &new_context, dispatch_callback_wrap); \
210 REAL(dispatch_after_f)(when, queue, new_context, dispatch_callback_wrap);
272 return REAL(dispatch_semaphore_signal)(dsema);
278 long_t result = REAL(dispatch_semaphore_wait)(dsema, timeout);
286 long_t result = REAL(dispatch_group_wait)(group, timeout);
295 REAL(dispatch_group_leave)(group);
348 REAL(dispatch_group_notify_
[all...]
/external/compiler-rt/lib/interception/
H A Dinterception_win.h68 (::__interception::uptr *)&REAL(func))
73 (::__interception::uptr *)&REAL(func))
81 (::__interception::uptr *)&REAL(func))
H A Dinterception.h44 // You can access original function by calling REAL(foo)(bar, baz).
45 // By default, REAL(foo) will be visible only inside your interceptor, and if
153 # define REAL(x) __interception::PTR_TO_REAL(x) macro
162 # define REAL(x) x macro
172 // macros does its job. In exceptional cases you may need to call REAL(foo)
/external/webrtc/webrtc/modules/audio_coding/codecs/isac/main/source/
H A Dfft.c50 * int WebRtcIsac_Fftn (int ndim, const int dims[], REAL Re[], REAL Im[],
77 * int WebRtcIsac_Fftradix (REAL Re[], REAL Im[], size_t nTotal, size_t nPass,
110 * REAL data [2*NTOTAL];
152 # define REAL double macro
265 static int FFTRADIX (REAL Re[],
266 REAL Im[],
279 REAL radf;
280 REAL c
[all...]
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_posix.h72 return REAL(pthread_create)(th, attr, callback, param); \
75 return REAL(pthread_join(th, ret)); \
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
H A DTypesTest.java54 assertEquals(REAL, 7);
/external/pdfium/core/fxge/win32/
H A Dfx_win32_gdipext.cpp203 GDIPCONST REAL* dash,
210 typedef GpStatus(WINGDIPAPI* FuncType_GdipSetPenWidth)(GpPen* pen, REAL width);
225 REAL width,
229 REAL miterLimit);
267 REAL x,
268 REAL y,
269 REAL width,
270 REAL height);
327 REAL flatness);
329 REAL x
[all...]

Completed in 684 milliseconds

123