/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/ |
tgmath.h | 84 # define __TGMATH_BINARY_FIRST_REAL_ONLY(Val1, Val2, Fct) \ 85 (__extension__ ((sizeof (Val1) == sizeof (double) \ 86 || __builtin_classify_type (Val1) != 8) \ 87 ? (__tgmath_real_type (Val1)) Fct (Val1, Val2) \ 88 : (sizeof (Val1) == sizeof (float)) \ 89 ? (__tgmath_real_type (Val1)) Fct##f (Val1, Val2) \ 90 : (__tgmath_real_type (Val1)) __tgml(Fct) (Val1, Val2)) [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/lib/gcc/i686-linux/4.6.x-google/include-fixed/ |
tgmath.h | 93 # define __TGMATH_BINARY_FIRST_REAL_ONLY(Val1, Val2, Fct) \ 94 (__extension__ ((sizeof (Val1) == sizeof (double) \ 95 || __builtin_classify_type (Val1) != 8) \ 96 ? (__tgmath_real_type (Val1)) Fct (Val1, Val2) \ 97 : (sizeof (Val1) == sizeof (float)) \ 98 ? (__tgmath_real_type (Val1)) Fct##f (Val1, Val2) \ 99 : (__tgmath_real_type (Val1)) __tgml(Fct) (Val1, Val2)) [all...] |
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/ |
tgmath.h | 84 # define __TGMATH_BINARY_FIRST_REAL_ONLY(Val1, Val2, Fct) \ 85 (__extension__ ((sizeof (Val1) == sizeof (double) \ 86 || __builtin_classify_type (Val1) != 8) \ 87 ? (__tgmath_real_type (Val1)) Fct (Val1, Val2) \ 88 : (sizeof (Val1) == sizeof (float)) \ 89 ? (__tgmath_real_type (Val1)) Fct##f (Val1, Val2) \ 90 : (__tgmath_real_type (Val1)) __tgml(Fct) (Val1, Val2)) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/lib/gcc/x86_64-linux/4.6.x-google/include-fixed/ |
tgmath.h | 93 # define __TGMATH_BINARY_FIRST_REAL_ONLY(Val1, Val2, Fct) \ 94 (__extension__ ((sizeof (Val1) == sizeof (double) \ 95 || __builtin_classify_type (Val1) != 8) \ 96 ? (__tgmath_real_type (Val1)) Fct (Val1, Val2) \ 97 : (sizeof (Val1) == sizeof (float)) \ 98 ? (__tgmath_real_type (Val1)) Fct##f (Val1, Val2) \ 99 : (__tgmath_real_type (Val1)) __tgml(Fct) (Val1, Val2)) [all...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/ |
tgmath.h | 84 # define __TGMATH_BINARY_FIRST_REAL_ONLY(Val1, Val2, Fct) \ 85 (__extension__ ((sizeof (Val1) == sizeof (double) \ 86 || __builtin_classify_type (Val1) != 8) \ 87 ? (__tgmath_real_type (Val1)) Fct (Val1, Val2) \ 88 : (sizeof (Val1) == sizeof (float)) \ 89 ? (__tgmath_real_type (Val1)) Fct##f (Val1, Val2) \ 90 : (__tgmath_real_type (Val1)) __tgml(Fct) (Val1, Val2)) [all...] |
/external/chromium_org/third_party/re2/util/ |
logging.h | 20 #define DCHECK_EQ(val1, val2) assert((val1) == (val2)) 21 #define DCHECK_NE(val1, val2) assert((val1) != (val2)) 22 #define DCHECK_LE(val1, val2) assert((val1) <= (val2)) 23 #define DCHECK_LT(val1, val2) assert((val1) < (val2)) 24 #define DCHECK_GE(val1, val2) assert((val1) >= (val2) [all...] |
/external/regex-re2/util/ |
logging.h | 15 #define DCHECK_EQ(val1, val2) assert((val1) == (val2)) 16 #define DCHECK_NE(val1, val2) assert((val1) != (val2)) 17 #define DCHECK_LE(val1, val2) assert((val1) <= (val2)) 18 #define DCHECK_LT(val1, val2) assert((val1) < (val2)) 19 #define DCHECK_GE(val1, val2) assert((val1) >= (val2) [all...] |
/external/chromium_org/third_party/tcmalloc/chromium/src/base/ |
logging.h | 139 #define CHECK_OP(op, val1, val2) \ 141 if (!((val1) op (val2))) { \ 142 fprintf(stderr, "Check failed: %s %s %s\n", #val1, #op, #val2); \ 147 #define CHECK_EQ(val1, val2) CHECK_OP(==, val1, val2) 148 #define CHECK_NE(val1, val2) CHECK_OP(!=, val1, val2) 149 #define CHECK_LE(val1, val2) CHECK_OP(<=, val1, val2) 150 #define CHECK_LT(val1, val2) CHECK_OP(< , val1, val2 [all...] |
/external/chromium_org/third_party/tcmalloc/vendor/src/base/ |
logging.h | 134 #define CHECK_OP(op, val1, val2) \ 136 if (!((val1) op (val2))) { \ 137 fprintf(stderr, "Check failed: %s %s %s\n", #val1, #op, #val2); \ 142 #define CHECK_EQ(val1, val2) CHECK_OP(==, val1, val2) 143 #define CHECK_NE(val1, val2) CHECK_OP(!=, val1, val2) 144 #define CHECK_LE(val1, val2) CHECK_OP(<=, val1, val2) 145 #define CHECK_LT(val1, val2) CHECK_OP(< , val1, val2 [all...] |
/external/llvm/test/CodeGen/AArch64/ |
floatdp_2source.ll | 8 %val1 = load float* @varfloat 10 %val2 = fadd float %val1, %val1 13 %val3 = fmul float %val2, %val1 16 %val4 = fdiv float %val3, %val1 25 %val6 = fmul float %val1, %val2 36 %val1 = load double* @vardouble 38 %val2 = fadd double %val1, %val1 41 %val3 = fmul double %val2, %val1 [all...] |
floatdp_1source.ll | 30 %val1 = load volatile float* @varfloat 32 %valabs = call float @fabsf(float %val1) 36 %valneg = fsub float -0.0, %val1 40 %valsqrt = call float @llvm.sqrt.f32(float %val1) 44 %valceil = call float @ceilf(float %val1) 48 %valfloor = call float @floorf(float %val1) 52 %valtrunc = call float @truncf(float %val1) 56 %valrint = call float @rintf(float %val1) 60 %valnearbyint = call float @nearbyintf(float %val1) 69 %val1 = load volatile double* @vardoubl [all...] |
logical_shifted_reg.ll | 11 %val1 = load i32* @var1_32 17 %and_noshift = and i32 %val1, %val2 20 %bic_noshift = and i32 %neg_val2, %val1 24 %or_noshift = or i32 %val1, %val2 27 %orn_noshift = or i32 %neg_val2, %val1 31 %xor_noshift = xor i32 %val1, %val2 34 %xorn_noshift = xor i32 %neg_val2, %val1 42 %and_lsl31 = and i32 %val1, %operand_lsl31 45 %bic_lsl31 = and i32 %val1, %neg_operand_lsl31 49 %or_lsl31 = or i32 %val1, %operand_lsl3 [all...] |
/external/llvm/test/CodeGen/X86/ |
atomic-load-store.ll | 4 define void @test1(i32* %ptr, i32 %val1) { 7 store atomic i32 %val1, i32* %ptr seq_cst, align 4 11 define void @test2(i32* %ptr, i32 %val1) { 14 store atomic i32 %val1, i32* %ptr release, align 4
|
atomic-load-store-wide.ll | 6 define void @test1(i64* %ptr, i64 %val1) { 10 store atomic i64 %val1, i64* %ptr seq_cst, align 8
|
/external/llvm/test/Transforms/ObjCARC/ |
intrinsic-use.ll | 25 ; CHECK-NEXT: [[VAL1:%.*]] = load i8** %temp0 27 ; CHECK-NEXT: @objc_retain(i8* [[VAL1]]) 29 ; CHECK-NEXT: store i8* [[VAL1]], i8** %temp1 32 ; CHECK-NEXT: call void (...)* @clang.arc.use(i8* [[VAL1]]) 34 ; CHECK-NEXT: @objc_release(i8* [[VAL1]]) 50 %val1 = load i8** %temp0 51 %2 = call i8* @objc_retain(i8* %val1) nounwind 54 store i8* %val1, i8** %temp1 58 call void (...)* @clang.arc.use(i8* %val1) nounwind 59 call void @objc_release(i8* %val1) nounwin [all...] |
/external/ceres-solver/internal/ceres/miniglog/glog/ |
logging.h | 53 // CHECK_EQ(val1, val2) val1 == val2 54 // CHECK_NE(val1, val2) val1 != val2 55 // CHECK_GT(val1, val2) val1 > val2 56 // CHECK_GE(val1, val2) val1 >= val2 57 // CHECK_LT(val1, val2) val1 < val [all...] |
/external/valgrind/main/memcheck/tests/darwin/ |
env.c | 10 char* val1 = "x"; local 14 setenv("MYVAR", val1, /*overwrite*/0); // makes a copy which is later leaked 15 assert( 0 == strcmp(getenv("MYVAR"), val1) );
|
/prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/asm/ |
msr.h | 28 #define rdmsr(msr,val1,val2) __asm__ __volatile__("rdmsr" : "=a" (val1), "=d" (val2) : "c" (msr)) 32 #define wrmsr(msr,val1,val2) __asm__ __volatile__("wrmsr" : : "c" (msr), "a" (val1), "d" (val2)) 46 #define write_tsc(val1,val2) wrmsr(0x10, val1, val2)
|
/prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/asm/ |
msr.h | 28 #define rdmsr(msr,val1,val2) __asm__ __volatile__("rdmsr" : "=a" (val1), "=d" (val2) : "c" (msr)) 32 #define wrmsr(msr,val1,val2) __asm__ __volatile__("wrmsr" : : "c" (msr), "a" (val1), "d" (val2)) 46 #define write_tsc(val1,val2) wrmsr(0x10, val1, val2)
|
/prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/asm/ |
msr.h | 28 #define rdmsr(msr,val1,val2) __asm__ __volatile__("rdmsr" : "=a" (val1), "=d" (val2) : "c" (msr)) 32 #define wrmsr(msr,val1,val2) __asm__ __volatile__("wrmsr" : : "c" (msr), "a" (val1), "d" (val2)) 46 #define write_tsc(val1,val2) wrmsr(0x10, val1, val2)
|
/prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/asm/ |
msr.h | 28 #define rdmsr(msr,val1,val2) __asm__ __volatile__("rdmsr" : "=a" (val1), "=d" (val2) : "c" (msr)) 32 #define wrmsr(msr,val1,val2) __asm__ __volatile__("wrmsr" : : "c" (msr), "a" (val1), "d" (val2)) 46 #define write_tsc(val1,val2) wrmsr(0x10, val1, val2)
|
/prebuilts/ndk/7/platforms/android-9/arch-x86/usr/include/asm/ |
msr.h | 28 #define rdmsr(msr,val1,val2) __asm__ __volatile__("rdmsr" : "=a" (val1), "=d" (val2) : "c" (msr)) 32 #define wrmsr(msr,val1,val2) __asm__ __volatile__("wrmsr" : : "c" (msr), "a" (val1), "d" (val2)) 46 #define write_tsc(val1,val2) wrmsr(0x10, val1, val2)
|
/external/clang/test/SemaTemplate/ |
enum-argument.cpp | 18 Val1 = get_size<T>::value, 20 SumOfValues = Val1 + Val2
|
/external/llvm/test/CodeGen/PowerPC/ |
2008-06-23-LiveVariablesCrash.ll | 14 %val1 = phi i32 [ 0, %bb1 ], [ %val2, %bb2 ] 15 %val2 = select i1 %tmp2, i32 -1, i32 %val1
|
/external/chromium/testing/ |
gtest_mac.h | 38 #define EXPECT_NSNE(val1, val2) \ 39 EXPECT_PRED_FORMAT2(::testing::internal::CmpHelperNSNE, val1, val2) 43 #define ASSERT_NSNE(val1, val2) \ 44 ASSERT_PRED_FORMAT2(::testing::internal::CmpHelperNSNE, val1, val2)
|