HomeSort by relevance Sort by last modified time
    Searched refs:REAL (Results 1 - 25 of 41) sorted by null

1 2

  /external/compiler-rt/lib/asan/
asan_interceptors.cc 89 if (REAL(strnlen) != 0) {
90 return REAL(strnlen)(s, maxlen);
114 return REAL(pthread_create)(thread, attr, asan_thread_start, t);
121 return REAL(signal)(signum, handler);
129 return REAL(sigaction)(signum, act, oldact);
134 // We need to have defined REAL(sigaction) on posix systems.
141 REAL(longjmp)(env, val);
147 REAL(_longjmp)(env, val);
154 REAL(siglongjmp)(env, val);
160 CHECK(REAL(__cxa_throw))
    [all...]
asan_stats.cc 24 CHECK(REAL(memset) != 0);
25 REAL(memset)(this, 0, sizeof(AsanStats));
asan_poisoning.cc 27 CHECK(REAL(memset) != 0);
28 REAL(memset)((void*)shadow_beg, value, shadow_end - shadow_beg);
112 REAL(memset)(beg.chunk, kAsanUserPoisonedMemoryMagic, end.chunk - beg.chunk);
145 REAL(memset)(beg.chunk, 0, end.chunk - beg.chunk);
asan_mac.cc 102 !REAL(strstr)(dyld_insert_libraries, info.dli_fname)) {
341 return REAL(dispatch_x_f)(dq, (void*)asan_ctxt, \
358 return REAL(dispatch_after_f)(when, dq, (void*)asan_ctxt,
372 REAL(dispatch_group_async_f)(group, dq, (void*)asan_ctxt,
408 REAL(dispatch_async)(dq, asan_block);
414 REAL(dispatch_group_async)(dg, dq, asan_block);
420 REAL(dispatch_after)(when, queue, asan_block);
426 REAL(dispatch_source_set_cancel_handler)(ds, asan_block);
432 REAL(dispatch_source_set_event_handler)(ds, asan_block);
468 return REAL(pthread_workqueue_additem_np)(workq, wrap_workitem_func
    [all...]
asan_malloc_win.cc 125 REAL(memset)(crt_malloc, 0xCC /* int 3 */, 16); // just in case.
129 REAL(memcpy)(crt_malloc + 1, &jmp_offset, sizeof(jmp_offset));
asan_posix.cc 41 REAL(memset)(&sigact, 0, sizeof(sigact));
45 CHECK(0 == REAL(sigaction)(signum, &sigact, 0));
asan_allocator.h 48 CHECK(REAL(memset));
49 REAL(memset)(this, 0, sizeof(AsanThreadLocalMallocStorage));
91 // stack instead of the real stack. The fake stack is not really a stack but
asan_malloc_linux.cc 78 // Hack: dlsym calls calloc before REAL(calloc) is retrieved from dlsym.
120 REAL(memset)(&res, 0, sizeof(res));
asan_allocator.cc 649 Printf("Allocate align: %zu size: %zu class: %u real: %zu\n",
709 REAL(memset)((void*)addr, 0, rounded_size);
781 CHECK(REAL(memcpy) != 0);
782 REAL(memcpy)(new_ptr, old_ptr, memcpy_size);
828 REAL(memset)(ptr, 0, nmemb * size);
896 CHECK(REAL(memset) != 0);
897 REAL(memset)(this, 0, sizeof(*this));
1043 // TSD is gone, use the real stack.
  /external/compiler-rt/lib/interception/
interception_win.h 35 #func, (::__interception::uptr*)&REAL(func))
41 (::__interception::uptr*)&REAL(func))
interception_linux.h 27 uptr real, uptr wrapper);
32 #func, (::__interception::uptr*)&REAL(func), \
interception_mac.h 45 (::__interception::uptr*)&REAL(old_func))
interception.h 43 // You can access original function by calling REAL(foo)(bar, baz).
44 // By default, REAL(foo) will be visible only inside your interceptor, and if
65 // with same names in our library and then obtain the real function pointers
116 # define REAL(x) __interception::PTR_TO_REAL(x)
125 # define REAL(x) x
148 // macros does its job. In exceptional cases you may need to call REAL(foo)
  /external/compiler-rt/lib/tsan/rtl/
tsan_interceptors.cc 172 return REAL(func)(__VA_ARGS__); \
183 return REAL(func)(__VA_ARGS__); \
292 REAL(usleep)(flags()->atexit_sleep_ms * 1000);
448 void *res = REAL(memchr)(s, c, n);
457 return REAL(memrchr)(s, c, n);
464 return REAL(memmove)(dst, src, n);
469 char *res = REAL(strchr)(s, c);
477 char *res = REAL(strchrnul)(s, c);
486 return REAL(strrchr)(s, c);
494 return REAL(strcpy)(dst, src); // NOLIN
    [all...]
  /libcore/luni/src/main/java/java/sql/
Types.java 141 * The type code that identifies the SQL type {@code REAL}.
143 public static final int REAL = 7;
  /external/skia/bench/
BlurBench.cpp 17 #define REAL SkFloatToScalar(1.5f)
83 static SkBenchmark* Fact20(void* p) { return new BlurBench(p, REAL, SkBlurMaskFilter::kNormal_BlurStyle); }
84 static SkBenchmark* Fact21(void* p) { return new BlurBench(p, REAL, SkBlurMaskFilter::kSolid_BlurStyle); }
85 static SkBenchmark* Fact22(void* p) { return new BlurBench(p, REAL, SkBlurMaskFilter::kOuter_BlurStyle); }
86 static SkBenchmark* Fact23(void* p) { return new BlurBench(p, REAL, SkBlurMaskFilter::kInner_BlurStyle); }
  /tools/motodev/src/plugins/db.core/src/com/motorolamobility/studio/android/db/core/model/
Field.java 56 INTEGER("INTEGER"), TEXT("TEXT"), REAL("REAL"), BLOB("BLOB"); //$NON-NLS-1$ //$NON-NLS-2$ //$NON-NLS-3$ //$NON-NLS-4$
205 if (!type.equals(DataType.INTEGER) && !type.equals(DataType.REAL) //$NON-NLS-1$ //$NON-NLS-2$
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TypesTest.java 54 assertEquals(REAL, 7);
  /prebuilts/gcc/darwin-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
real.h 56 #define REAL_EXP(REAL) \
57 ((int)((REAL)->uexp ^ (unsigned int)(1 << (EXP_BITS - 1))) \
59 #define SET_REAL_EXP(REAL, EXP) \
60 ((REAL)->uexp = ((unsigned int)(EXP) & (unsigned int)((1 << EXP_BITS) - 1)))
223 /* Declare functions in real.c. */
305 /* Target formats defined in real.c. */
372 /* Real values to IEEE 754 decimal floats. */
422 /* Constant real values 0, 1, 2, -1 and 0.5. */
434 /* Function to return the real value special constant 'e'. */
443 /* Function to return a real value (not a tree node
    [all...]
  /prebuilts/gcc/darwin-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
real.h 56 #define REAL_EXP(REAL) \
57 ((int)((REAL)->uexp ^ (unsigned int)(1 << (EXP_BITS - 1))) \
59 #define SET_REAL_EXP(REAL, EXP) \
60 ((REAL)->uexp = ((unsigned int)(EXP) & (unsigned int)((1 << EXP_BITS) - 1)))
223 /* Declare functions in real.c. */
305 /* Target formats defined in real.c. */
372 /* Real values to IEEE 754 decimal floats. */
422 /* Constant real values 0, 1, 2, -1 and 0.5. */
434 /* Function to return the real value special constant 'e'. */
443 /* Function to return a real value (not a tree node
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-eabi-4.6/lib/gcc/arm-eabi/4.6.x-google/plugin/include/
real.h 56 #define REAL_EXP(REAL) \
57 ((int)((REAL)->uexp ^ (unsigned int)(1 << (EXP_BITS - 1))) \
59 #define SET_REAL_EXP(REAL, EXP) \
60 ((REAL)->uexp = ((unsigned int)(EXP) & (unsigned int)((1 << EXP_BITS) - 1)))
223 /* Declare functions in real.c. */
305 /* Target formats defined in real.c. */
372 /* Real values to IEEE 754 decimal floats. */
422 /* Constant real values 0, 1, 2, -1 and 0.5. */
434 /* Function to return the real value special constant 'e'. */
443 /* Function to return a real value (not a tree node
    [all...]
  /prebuilts/gcc/linux-x86/arm/arm-linux-androideabi-4.6/lib/gcc/arm-linux-androideabi/4.6.x-google/plugin/include/
real.h 56 #define REAL_EXP(REAL) \
57 ((int)((REAL)->uexp ^ (unsigned int)(1 << (EXP_BITS - 1))) \
59 #define SET_REAL_EXP(REAL, EXP) \
60 ((REAL)->uexp = ((unsigned int)(EXP) & (unsigned int)((1 << EXP_BITS) - 1)))
223 /* Declare functions in real.c. */
305 /* Target formats defined in real.c. */
372 /* Real values to IEEE 754 decimal floats. */
422 /* Constant real values 0, 1, 2, -1 and 0.5. */
434 /* Function to return the real value special constant 'e'. */
443 /* Function to return a real value (not a tree node
    [all...]
  /external/javasqlite/src/main/java/SQLite/JDBC2z/
JDBCResultSetMetaData.java 27 case Types.REAL:
114 case Types.REAL: return "real";
  /frameworks/av/media/libstagefright/codecs/common/include/
voIndex.h 70 _MAKE_SOURCE_ID (0x040000, REAL)
  /external/webkit/LayoutTests/storage/
sql-data-types.js 17 real: 101.444,
38 i = "real"; shouldBeSameTypeAndValue(i, testValues[i], rs[i]);
60 tx.executeSql("INSERT INTO DataTypeTestTable (id, real, timestamp, text, blob) VALUES (?,?,?,?,?)",
61 [testValues.id, testValues.real, testValues.timestamp, testValues.text, testValues.blob],
70 tx.executeSql("CREATE TABLE IF NOT EXISTS DataTypeTestTable (id INTEGER UNIQUE, real REAL, timestamp INTEGER, text TEXT, blob BLOB)", [],

Completed in 729 milliseconds

1 2