Home
last modified time | relevance | path

Searched refs:REAL (Results 1 – 25 of 41) sorted by relevance

12

/external/compiler-rt/lib/msan/
Dmsan_interceptors.cc106 SIZE_T res = REAL(fread)(ptr, size, nmemb, file); in INTERCEPTOR()
116 SIZE_T res = REAL(fread_unlocked)(ptr, size, nmemb, file); in INTERCEPTOR()
129 SSIZE_T res = REAL(readlink)(path, buf, bufsiz); in INTERCEPTOR()
145 void *res = REAL(memccpy)(dest, src, c, n); in INTERCEPTOR()
251 REAL(memset)(sret, 0, sizeof(*sret)); in INTERCEPTOR()
279 return REAL(strlen)(s); in INTERCEPTOR()
281 SIZE_T res = REAL(strlen)(s); in INTERCEPTOR()
288 SIZE_T res = REAL(strnlen)(s, n); in INTERCEPTOR()
297 SIZE_T n = REAL(strlen)(src); in INTERCEPTOR()
299 char *res = REAL(strcpy)(dest, src); // NOLINT in INTERCEPTOR()
[all …]
Dmsan_poisoning.cc92 REAL(memcpy)((void *)MEM_TO_ORIGIN(beg), (void *)MEM_TO_ORIGIN(s), in CopyOrigin()
103 REAL(memmove)((void *)MEM_TO_SHADOW((uptr)dst), in MoveShadowAndOrigin()
112 REAL(memcpy)((void *)MEM_TO_SHADOW((uptr)dst), in CopyShadowAndOrigin()
118 REAL(memcpy)(dst, src, size); in CopyMemory()
128 REAL(memset)((void *)shadow_beg, value, shadow_end - shadow_beg); in SetShadow()
134 REAL(memset)((void *)shadow_beg, 0, shadow_end - shadow_beg); in SetShadow()
137 REAL(memset)((void *)shadow_beg, 0, page_beg - shadow_beg); in SetShadow()
140 REAL(memset)((void *)page_end, 0, shadow_end - page_end); in SetShadow()
/external/compiler-rt/lib/asan/
Dasan_interceptors.cc87 ASAN_READ_STRING_OF_LEN((ctx), (s), REAL(strlen)(s), (n))
108 if (REAL(strnlen) != 0) { in MaybeRealStrnlen()
109 return REAL(strnlen)(s, maxlen); in MaybeRealStrnlen()
148 return REAL(func)(__VA_ARGS__); \
150 return REAL(func)(__VA_ARGS__); \
173 #define COMMON_INTERCEPTOR_BLOCK_REAL(name) REAL(name)
228 REAL(pthread_attr_getdetachstate)(attr, &detached); in INTERCEPTOR()
232 int result = REAL(pthread_create)(thread, attr, asan_thread_start, &param); in INTERCEPTOR()
262 return REAL(bsd_signal)(signum, handler); in INTERCEPTOR()
269 return REAL(signal)(signum, handler);
[all …]
Dasan_win.cc59 CHECK(REAL(RaiseException)); in INTERCEPTOR_WINAPI()
61 REAL(RaiseException)(a, b, c, d); in INTERCEPTOR_WINAPI()
65 CHECK(REAL(_except_handler3)); in INTERCEPTOR()
67 return REAL(_except_handler3)(a, b, c, d); in INTERCEPTOR()
75 CHECK(REAL(_except_handler4)); in INTERCEPTOR()
77 return REAL(_except_handler4)(a, b, c, d); in INTERCEPTOR()
100 return REAL(CreateThread)(security, stack_size, in INTERCEPTOR_WINAPI()
132 return REAL(NtWaitForWorkViaWorkerFactory)(a, b); in INTERCEPTOR_WINAPI()
149 (uptr *)&REAL(NtWaitForWorkViaWorkerFactory))); in InitializePlatformInterceptors()
Dasan_mac.cc114 !REAL(strstr)(dyld_insert_libraries, dylib_name)) { in MaybeReexec()
172 piece_end = REAL(strchr)(piece_start, ':'); in MaybeReexec()
328 return REAL(dispatch_x_f)(dq, (void*)asan_ctxt, \
345 return REAL(dispatch_after_f)(when, dq, (void*)asan_ctxt, in INTERCEPT_DISPATCH_X_F_3()
359 REAL(dispatch_group_async_f)(group, dq, (void*)asan_ctxt, in INTERCEPTOR()
388 REAL(dispatch_async)(dq, asan_block);
395 REAL(dispatch_group_async)(dg, dq, asan_block);
402 REAL(dispatch_after)(when, queue, asan_block);
408 REAL(dispatch_source_set_cancel_handler)(ds, work);
413 REAL(dispatch_source_set_cancel_handler)(ds, asan_block);
[all …]
Dasan_poisoning.h52 REAL(memset)((void*)shadow_beg, value, shadow_end - shadow_beg); in FastPoisonShadow()
59 REAL(memset)((void *)shadow_beg, 0, shadow_end - shadow_beg); in FastPoisonShadow()
62 REAL(memset)((void *)shadow_beg, 0, page_beg - shadow_beg); in FastPoisonShadow()
65 REAL(memset)((void *)page_end, 0, shadow_end - page_end); in FastPoisonShadow()
Dasan_stats.cc29 CHECK(REAL(memset)); in Clear()
30 REAL(memset)(this, 0, sizeof(AsanStats)); in Clear()
/external/compiler-rt/lib/tsan/dd/
Ddd_interceptors.cc49 return REAL(pthread_mutex_destroy)(m); in INTERCEPTOR()
55 int res = REAL(pthread_mutex_lock)(m); in INTERCEPTOR()
62 int res = REAL(pthread_mutex_trylock)(m); in INTERCEPTOR()
71 return REAL(pthread_mutex_unlock)(m); in INTERCEPTOR()
76 int res = REAL(pthread_spin_destroy)(m); in INTERCEPTOR()
84 int res = REAL(pthread_spin_lock)(m); in INTERCEPTOR()
91 int res = REAL(pthread_spin_trylock)(m); in INTERCEPTOR()
100 return REAL(pthread_spin_unlock)(m); in INTERCEPTOR()
106 return REAL(pthread_rwlock_destroy)(m); in INTERCEPTOR()
112 int res = REAL(pthread_rwlock_rdlock)(m); in INTERCEPTOR()
[all …]
/external/compiler-rt/lib/tsan/rtl/
Dtsan_interceptors.cc264 if (REAL(func) == 0) { \
269 return REAL(func)(__VA_ARGS__); \
287 #define BLOCK_REAL(name) (BlockingCall(thr), REAL(name))
382 int res = REAL(__cxa_atexit)(at_exit_wrapper, ctx, dso); in setup_at_exit_wrapper()
407 int res = REAL(on_exit)(on_exit_wrapper, ctx); in TSAN_INTERCEPTOR()
523 REAL(longjmp)(env, val); in DEFINE_REAL()
531 REAL(siglongjmp)(env, val); in TSAN_INTERCEPTOR()
712 return REAL(memmove)(dst, src, n); in TSAN_INTERCEPTOR()
717 char *res = REAL(strchr)(s, c); in TSAN_INTERCEPTOR()
726 char *res = REAL(strchrnul)(s, c); in TSAN_INTERCEPTOR()
[all …]
/external/compiler-rt/lib/sanitizer_common/
Dsanitizer_common_interceptors.inc110 COMMON_INTERCEPTOR_READ_STRING_OF_LEN((ctx), (s), REAL(strlen)(s), (n))
170 char *domain = REAL(textdomain)(domainname);
172 COMMON_INTERCEPTOR_INITIALIZE_RANGE(domain, REAL(strlen)(domain) + 1);
273 void *res = REAL(memchr)(s, c, n);
289 return REAL(memrchr)(s, c, n);
303 double res = REAL(frexp)(x, exp);
319 float res = REAL(frexpf)(x, exp);
330 long double res = REAL(frexpl)(x, exp);
371 SSIZE_T res = REAL(read)(fd, ptr, count);
389 SSIZE_T res = REAL(pread)(fd, ptr, count, offset);
[all …]
Dsanitizer_posix.h70 return REAL(pthread_create)(th, attr, callback, param); \
73 return REAL(pthread_join(th, ret)); \
/external/skia/bench/
DBlurBench.cpp19 #define REAL 1.5f macro
102 DEF_BENCH(return new BlurBench(REAL, kNormal_SkBlurStyle);)
103 DEF_BENCH(return new BlurBench(REAL, kSolid_SkBlurStyle);)
104 DEF_BENCH(return new BlurBench(REAL, kOuter_SkBlurStyle);)
105 DEF_BENCH(return new BlurBench(REAL, kInner_SkBlurStyle);)
115 DEF_BENCH(return new BlurBench(REAL, kNormal_SkBlurStyle, SkBlurMaskFilter::kHighQuality_BlurFlag);)
DMorphologyBench.cpp17 #define REAL 1.5f macro
93 DEF_BENCH( return new MorphologyBench(REAL, kErode_MT); )
94 DEF_BENCH( return new MorphologyBench(REAL, kDilate_MT); )
DBlurRectBench.cpp17 #define REAL 1.5f macro
186 DEF_BENCH(return new BlurRectBoxFilterBench(REAL);)
190 DEF_BENCH(return new BlurRectGaussianBench(REAL);)
194 DEF_BENCH(return new BlurRectDirectBench(REAL);)
/external/webrtc/src/modules/audio_coding/codecs/isac/main/source/
Dfft.c152 # define REAL double macro
265 static int FFTRADIX (REAL Re[], in FFTRADIX()
266 REAL Im[], in FFTRADIX()
279 REAL radf; in FFTRADIX()
280 REAL c1, c2, c3, cd, aa, aj, ak, ajm, ajp, akm, akp; in FFTRADIX()
281 REAL s1, s2, s3, sd, bb, bj, bk, bjm, bjp, bkm, bkp; in FFTRADIX()
283 REAL *Rtmp = NULL; /* temp space for real part*/ in FFTRADIX()
284 REAL *Itmp = NULL; /* temp space for imaginary part */ in FFTRADIX()
285 REAL *Cos = NULL; /* Cosine values */ in FFTRADIX()
286 REAL *Sin = NULL; /* Sine values */ in FFTRADIX()
[all …]
/external/pdfium/core/src/fxge/win32/
Dfx_win32_gdipext.cpp191 typedef GpStatus (WINGDIPAPI *FuncType_GdipSetPenDashArray)(GpPen *pen, GDIPCONST REAL *dash, INT c…
194 typedef GpStatus (WINGDIPAPI *FuncType_GdipSetPenWidth)(GpPen *pen, REAL width);
201 typedef GpStatus (WINGDIPAPI *FuncType_GdipCreatePen1)(ARGB color, REAL width, GpUnit unit, GpPen *…
202 typedef GpStatus (WINGDIPAPI *FuncType_GdipSetPenMiterLimit)(GpPen *pen, REAL miterLimit);
217 …pe_GdipFillRectangle)(GpGraphics *graphics, GpBrush *brush, REAL x, REAL y, REAL width, REAL heigh…
234 …NGDIPAPI *FuncType_GdipWidenPath)(GpPath *nativePath, GpPen *pen, GpMatrix *matrix, REAL flatness);
235 … GpStatus (WINGDIPAPI *FuncType_GdipAddPathLine)(GpPath *path, REAL x1, REAL y1, REAL x2, REAL y2);
236 …s (WINGDIPAPI *FuncType_GdipAddPathRectangle)(GpPath *path, REAL x, REAL y, REAL width, REAL heigh…
241 typedef GpStatus (WINGDIPAPI *FuncType_GdipSetPenDashOffset)(GpPen *pen, REAL offset);
244 typedef GpStatus (WINGDIPAPI *FuncType_GdipCreateFont)(GDIPCONST GpFontFamily *fontFamily, REAL emS…
[all …]
/external/compiler-rt/lib/interception/
Dinterception_win.h39 (::__interception::uptr *)&REAL(func))
44 (::__interception::uptr *)&REAL(func))
Dinterception.h153 # define REAL(x) __interception::PTR_TO_REAL(x) macro
162 # define REAL(x) x macro
/external/compiler-rt/lib/dfsan/
Ddfsan_interceptors.cc21 void *res = REAL(mmap)(addr, length, prot, flags, fd, offset); in INTERCEPTOR()
29 void *res = REAL(mmap64)(addr, length, prot, flags, fd, offset); in INTERCEPTOR()
/external/javasqlite/src/main/java/SQLite/JDBC2z/
DJDBCResultSetMetaData.java27 case Types.REAL: in getColumnClassName()
114 case Types.REAL: return "real"; in getColumnTypeName()
/external/lldb/test/lang/objc/rdar-11355592/
Dmain.m33 my_string = "Now this is a REAL string..."; // Set breakpoint here.
/external/mesa3d/src/mesa/program/
Dprogram_lexer.l341 return REAL;
345 return REAL;
349 return REAL;
353 return REAL;
/external/compiler-rt/lib/lsan/
Dlsan_interceptors.cc240 int res = REAL(pthread_create)(th, attr, __lsan_thread_start_func, &p); in INTERCEPTOR()
256 int res = REAL(pthread_join)(th, ret); in INTERCEPTOR()
/external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
DTypesTest.java54 assertEquals(REAL, 7); in testPublicStatics()
/external/clang/test/CodeGenObjC/
Dns_consume_null_check.m71 // CHECK: [[REAL:%.*]] = phi float [ [[REALCALL]], [[INVOKE_CONT]] ], [ 0.000000e+00, [[FORNUL…
75 // CHECK-NEXT: store float [[REAL]], float* [[T0]]

12