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

123

/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_interception.h21 #undef REAL macro
22 #define REAL(x) IndirectExternCall(__interception::PTR_TO_REAL(x)) macro
/external/pdfium/core/src/fxge/Microsoft SDK/include/
H A DGdiPlusMatrix.h37 Matrix(IN REAL m11,
38 IN REAL m12,
39 IN REAL m21,
40 IN REAL m22,
41 IN REAL dx,
42 IN REAL dy)
94 Status GetElements(OUT REAL *m) const
99 Status SetElements(IN REAL m11,
100 IN REAL m12,
101 IN REAL m2
[all...]
H A DGdiPlusFlat.h106 GdipAddPathLine(GpPath *path, REAL x1, REAL y1, REAL x2, REAL y2);
112 GdipAddPathArc(GpPath *path, REAL x, REAL y, REAL width, REAL height,
113 REAL startAngle, REAL sweepAngl
[all...]
H A DGdiPlusLineCaps.h23 IN REAL baseInset
107 CustomLineCap::SetBaseInset(IN REAL inset)
112 inline REAL
115 REAL inset;
123 CustomLineCap::SetWidthScale(IN REAL widthScale)
128 inline REAL
131 REAL widthScale;
163 IN REAL height,
164 IN REAL width,
175 Status SetHeight(IN REAL heigh
[all...]
H A DGdiPlusColorMatrix.h24 REAL m[5][5];
H A DGdiPlusTypes.h77 typedef float REAL; typedef
150 SizeF(IN REAL width,
151 IN REAL height)
181 REAL Width;
182 REAL Height;
266 PointF(IN REAL x,
267 IN REAL y)
292 REAL X;
293 REAL Y;
367 RectF(IN REAL
[all...]
H A DGdiPlusGraphics.h316 Status TranslateTransform(IN REAL dx,
317 IN REAL dy,
324 Status ScaleTransform(IN REAL sx,
325 IN REAL sy,
332 Status RotateTransform(IN REAL angle,
359 Status SetPageScale(IN REAL scale)
378 REAL GetPageScale() const
380 REAL scale;
387 REAL GetDpiX() const
389 REAL dp
[all...]
H A DGdiPlusPath.h209 Status AddLine(IN REAL x1,
210 IN REAL y1,
211 IN REAL x2,
212 IN REAL y2)
258 IN REAL startAngle,
259 IN REAL sweepAngle)
265 Status AddArc(IN REAL x,
266 IN REAL y,
267 IN REAL width,
268 IN REAL heigh
[all...]
H A DGdiPlusPen.h33 IN REAL width = 1.0f)
42 IN REAL width = 1.0f)
64 Status SetWidth(IN REAL width)
69 REAL GetWidth() const
71 REAL width;
213 Status SetMiterLimit(IN REAL miterLimit)
218 REAL GetMiterLimit() const
220 REAL miterLimit;
267 Status TranslateTransform(IN REAL dx,
268 IN REAL d
[all...]
H A DGdiPlusFont.h110 IN REAL emSize,
134 IN REAL emSize,
227 inline REAL
230 REAL size;
243 inline REAL
246 REAL height;
257 inline REAL
258 Font::GetHeight(IN REAL dpi = 0) const
260 REAL height;
H A DGdiPlusMetaHeader.h117 REAL DpiX;
118 REAL DpiY;
146 REAL GetDpiX() const { return DpiX; }
149 REAL GetDpiY() const { return DpiY; }
/external/compiler-rt/lib/tsan/dd/
H A Ddd_interceptors.cc49 return REAL(pthread_mutex_destroy)(m);
55 int res = REAL(pthread_mutex_lock)(m);
62 int res = REAL(pthread_mutex_trylock)(m);
71 return REAL(pthread_mutex_unlock)(m);
76 int res = REAL(pthread_spin_destroy)(m);
84 int res = REAL(pthread_spin_lock)(m);
91 int res = REAL(pthread_spin_trylock)(m);
100 return REAL(pthread_spin_unlock)(m);
106 return REAL(pthread_rwlock_destroy)(m);
112 int res = REAL(pthread_rwlock_rdloc
[all...]
/external/compiler-rt/lib/interception/
H A Dinterception_win.h35 #func, (::__interception::uptr*)&REAL(func))
41 (::__interception::uptr*)&REAL(func))
/external/compiler-rt/lib/msan/
H A Dmsan_interceptors.cc96 SIZE_T res = REAL(fread)(ptr, size, nmemb, file);
105 SIZE_T res = REAL(fread_unlocked)(ptr, size, nmemb, file);
113 SSIZE_T res = REAL(readlink)(path, buf, bufsiz);
129 void *res = REAL(memccpy)(dest, src, c, n);
219 REAL(memset)(sret, 0, sizeof(*sret));
228 // FIXME: implement, but don't call REAL(malloc_stats)!
233 SIZE_T res = REAL(strlen)(s);
240 SIZE_T res = REAL(strnlen)(s, n);
252 SIZE_T n = REAL(strlen)(src);
253 char *res = REAL(strcp
[all...]
/external/compiler-rt/lib/asan/
H A Dasan_interceptors.cc79 if (REAL(strnlen) != 0) {
80 return REAL(strnlen)(s, maxlen);
108 if ((!INTERCEPT_FUNCTION(name) || !REAL(name))) \
123 return REAL(func)(__VA_ARGS__); \
127 return REAL(func)(__VA_ARGS__); \
147 #define COMMON_INTERCEPTOR_BLOCK_REAL(name) REAL(name)
183 REAL(pthread_attr_getdetachstate)(attr, &detached);
189 return REAL(pthread_create)(thread, attr, asan_thread_start, t);
199 return REAL(bsd_signal)(signum, handler);
207 return REAL(signa
[all...]
H A Dasan_poisoning.h49 REAL(memset)((void*)shadow_beg, value, shadow_end - shadow_beg);
55 REAL(memset)((void *)shadow_beg, 0, shadow_end - shadow_beg);
58 REAL(memset)((void *)shadow_beg, 0, page_beg - shadow_beg);
61 REAL(memset)((void *)page_end, 0, shadow_end - page_end);
/external/chromium_org/native_client_sdk/src/libraries/nacl_io/
H A Dkernel_wrap_newlib.cc27 // Macro to get the REAL function pointer
28 #define REAL(name) __nacl_irt_##name##_real macro
33 // Declare REAL function pointer.
35 typeof(__libnacl_irt_##group.name) REAL(name);
37 // Assign the REAL function pointer.
38 #define ASSIGN_REAL_PTR(group, name) REAL(name) = __libnacl_irt_##group.name;
40 // Switch IRT's pointer to the REAL pointer
42 __libnacl_irt_##group.name = (typeof(REAL(name)))REAL(name);
46 __libnacl_irt_##group.name = (typeof(REAL(nam
[all...]
H A Dkernel_wrap_bionic.cc98 // Macro to get the REAL function pointer
99 #define REAL(name) __nacl_irt_##name##_real macro
104 // Declare REAL function pointer.
105 #define DECLARE_REAL_PTR(name) typeof(__nacl_irt_##name) REAL(name);
107 // Assign the REAL function pointer.
108 #define ASSIGN_REAL_PTR(name) REAL(name) = __nacl_irt_##name;
110 // Switch IRT's pointer to the REAL pointer
111 #define USE_REAL(name) __nacl_irt_##name = (typeof(__nacl_irt_##name))REAL(name)
253 return REAL(mmap)(addr, length, prot, flags, fd, offset);
264 return REAL(munma
[all...]
H A Dkernel_wrap_glibc.cc109 // Macro to get the REAL function pointer
110 #define REAL(name) __nacl_irt_##name##_real macro
115 // Declare REAL function pointer.
116 #define DECLARE_REAL_PTR(name) typeof(__nacl_irt_##name) REAL(name);
118 // Assign the REAL function pointer.
121 REAL(name) = __nacl_irt_##name;
123 // Switch IRT's pointer to the REAL pointer
124 #define USE_REAL(name) __nacl_irt_##name = (typeof(__nacl_irt_##name))REAL(name)
268 return REAL(mmap)(addr, length, prot, flags, fd, offset);
279 return REAL(munma
[all...]
/external/chromium_org/third_party/skia/bench/
H A 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);)
H A 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); )
/external/skia/bench/
H A DBlurBench.cpp18 #define REAL 1.5f macro
96 DEF_BENCH(return new BlurBench(REAL, kNormal_SkBlurStyle);)
97 DEF_BENCH(return new BlurBench(REAL, kSolid_SkBlurStyle);)
98 DEF_BENCH(return new BlurBench(REAL, kOuter_SkBlurStyle);)
99 DEF_BENCH(return new BlurBench(REAL, kInner_SkBlurStyle);)
107 DEF_BENCH(return new BlurBench(REAL, kNormal_SkBlurStyle, SkBlurMaskFilter::kHighQuality_BlurFlag);)
H A 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); )
/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/tsan/rtl/
H A Dtsan_interceptors.cc54 // REAL(sigfillset) defined in common interceptors.
208 if (REAL(func) == 0) { \
213 return REAL(func)(__VA_ARGS__); \
220 #define BLOCK_REAL(name) (BlockingCall(thr), REAL(name))
345 int res = REAL(__cxa_atexit)(f, arg, dso);
444 REAL(longjmp)(env, val);
452 REAL(siglongjmp)(env, val);
630 return REAL(memmove)(dst, src, n);
635 char *res = REAL(strchr)(s, c);
643 char *res = REAL(strchrnu
[all...]

Completed in 8800 milliseconds

123