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

1 2

  /external/compiler-rt/lib/asan/interception/
interception_win.h 34 ::__interception::GetRealFunctionAddress(#func, (void**)&REAL(func))
38 (void**)&REAL(func))
interception_linux.h 30 ::__interception::GetRealFunctionAddress(#func, (void**)&REAL(func))
interception_mac.h 43 (void**)&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
95 #define REAL(x) __interception::PTR_TO_REAL(x)
118 // macros does its job. In exceptional cases you may need to call REAL(foo)
  /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/compiler-rt/lib/asan/
asan_interceptors.cc 230 if (REAL(strnlen) != NULL) {
231 return REAL(strnlen)(s, maxlen);
337 return REAL(pthread_create)(thread, attr, asan_thread_start, t);
344 return REAL(signal)(signum, handler);
352 return REAL(sigaction)(signum, act, oldact);
357 // We need to have defined REAL(sigaction) on posix systems.
364 REAL(longjmp)(env, val);
370 REAL(_longjmp)(env, val);
375 REAL(siglongjmp)(env, val);
385 CHECK(REAL(__cxa_throw))
    [all...]
asan_stats.cc 24 CHECK(REAL(memset) != NULL);
25 REAL(memset)(this, 0, sizeof(AsanStats));
asan_poisoning.cc 27 CHECK(REAL(memset) != NULL);
28 REAL(memset)((void*)shadow_beg, value, shadow_end - shadow_beg);
111 REAL(memset)(beg.chunk, kAsanUserPoisonedMemoryMagic, end.chunk - beg.chunk);
143 REAL(memset)(beg.chunk, 0, end.chunk - beg.chunk);
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_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_mac.cc 254 REAL(strncpy)(filename, _dyld_get_image_name(current_image_),
524 return REAL(dispatch_async_f)(dq, (void*)asan_ctxt,
537 return REAL(dispatch_sync_f)(dq, (void*)asan_ctxt,
550 return REAL(dispatch_after_f)(when, dq, (void*)asan_ctxt,
563 REAL(dispatch_barrier_async_f)(dq, (void*)asan_ctxt,
577 REAL(dispatch_group_async_f)(group, dq, (void*)asan_ctxt,
613 return REAL(pthread_workqueue_additem_np)(workq, wrap_workitem_func,
655 return REAL(CFStringCreateCopy)(alloc, str);
asan_posix.cc 46 REAL(memset)(&sigact, 0, sizeof(sigact));
50 CHECK(0 == REAL(sigaction)(signum, &sigact, 0));
asan_malloc_linux.cc 74 // Hack: dlsym calls calloc before REAL(calloc) is retrieved from dlsym.
108 REAL(memset)(&res, 0, sizeof(res));
asan_allocator.cc 635 Printf("Allocate align: %zu size: %zu class: %u real: %zu\n",
692 REAL(memset)((void*)addr, 0, rounded_size);
768 CHECK(REAL(memcpy) != NULL);
769 REAL(memcpy)(new_ptr, old_ptr, memcpy_size);
819 REAL(memset)(ptr, 0, nmemb * size);
895 CHECK(REAL(memset) != NULL);
896 REAL(memset)(this, 0, sizeof(*this));
1042 // TSD is gone, use the real stack.
    [all...]
asan_stack.cc 143 CHECK(0 == REAL(memcmp)(check_stack.trace, stack->trace,
  /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); }
  /external/apache-harmony/sql/src/test/java/org/apache/harmony/sql/tests/java/sql/
TypesTest.java 54 assertEquals(REAL, 7);
  /prebuilt/linux-x86/toolchain/arm-eabi-4.4.3/lib/gcc/arm-eabi/4.4.3/plugin/include/
real.h 60 #define REAL_EXP(REAL) \
61 ((int)((REAL)->uexp ^ (unsigned int)(1 << (EXP_BITS - 1))) \
63 #define SET_REAL_EXP(REAL, EXP) \
64 ((REAL)->uexp = ((unsigned int)(EXP) & (unsigned int)((1 << EXP_BITS) - 1)))
202 /* Declare functions in real.c. */
284 /* Target formats defined in real.c. */
349 /* Real values to IEEE 754 decimal floats. */
405 /* Constant real values 0, 1, 2, -1 and 0.5. */
417 /* Function to return the real value special constant 'e'. */
426 /* 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)", [],
  /external/opencv/ml/src/
mlboost.cpp 56 boost_type = CvBoost::REAL;
732 assert( boost_type == CvBoost::REAL );
879 if( params.boost_type != DISCRETE && params.boost_type != REAL &&
892 if( params.boost_type == REAL &&
    [all...]

Completed in 638 milliseconds

1 2