/external/chromium_org/base/ |
atomicops_unittest.cc | 134 AtomicType test_val = (static_cast<uint64_t>(1) << local 136 AtomicType value = -1 ^ test_val; 138 EXPECT_EQ(test_val, value); 142 EXPECT_EQ(-1 ^ test_val, value); 145 test_val = static_cast<uint64_t>(1) << (NUM_BITS(AtomicType) / 2); 146 value = test_val - 1; 148 EXPECT_EQ(test_val, value); 152 EXPECT_EQ(test_val - 1, value);
|
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/ |
atomicops_unittest.cc | 163 AtomicType test_val = GG_ULONGLONG(1) << (NUM_BITS(AtomicType) / 2); local 164 AtomicType value = test_val - 1; 166 ASSERT_EQ(test_val, value); 170 ASSERT_EQ(test_val - 1, value);
|
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/ |
atomicops_unittest.cc | 163 AtomicType test_val = GG_ULONGLONG(1) << (NUM_BITS(AtomicType) / 2); local 164 AtomicType value = test_val - 1; 166 ASSERT_EQ(test_val, value); 170 ASSERT_EQ(test_val - 1, value);
|
/external/chromium_org/v8/test/cctest/ |
test-atomicops.cc | 161 AtomicType test_val = local 163 AtomicType value = -1 ^ test_val; 165 CHECK_EQU(test_val, value); 169 CHECK_EQU(-1 ^ test_val, value); 172 test_val = static_cast<AtomicType>(1) << (NUM_BITS(AtomicType) / 2); 173 value = test_val - 1; 175 CHECK_EQU(test_val, value); 179 CHECK_EQU(test_val - 1, value);
|
/art/runtime/interpreter/ |
interpreter_common.h | 288 int32_t test_val = shadow_frame.GetVReg(inst->VRegA_31t(inst_data)); local 297 int32_t index = test_val - first_key; 313 int32_t test_val = shadow_frame.GetVReg(inst->VRegA_31t(inst_data)); local 326 if (test_val < foundVal) { 328 } else if (test_val > foundVal) {
|
/external/chromium_org/components/nacl/loader/nonsfi/ |
nonsfi_sandbox_unittest.cc | 88 int test_val = 42; local 89 BPF_ASSERT_EQ(0, pthread_create(&th, NULL, &SetValueInThread, &test_val)); 91 BPF_ASSERT_EQ(kExpectedValue, test_val);
|
/external/chromium_org/base/allocator/ |
allocator_unittest.cc | 207 AtomicType test_val = static_cast<uint64_t>(1) << (NUM_BITS(AtomicType) / 2); local 208 AtomicType value = test_val - 1; 210 EXPECT_EQ(test_val, value); 214 EXPECT_EQ(test_val - 1, value);
|
/external/valgrind/main/none/tests/ppc32/ |
test_dfp4.c | 482 dfp_val_t test_val, dummy; local 495 test_val.u64_val = dfp64_vals[i]; 497 test_val.u128.valu = dfp128_vals[i * 2]; 498 test_val.u64_val = test_val.u128.valu; 499 test_val.u128.vall = dfp128_vals[(i * 2) + 1]; 508 (*func)(BF, data_class_OR_group, test_val, dummy); 513 test_def.op, test_val.u64_val); 515 printf(" %016llx", test_val.u128.vall);
|
test_dfp5.c | 406 dfp_val_t test_val; local 418 test_val.u64_val = dfp64_vals[i]; 420 test_val.u128.valu = dfp128_vals[i * 2]; 421 test_val.u64_val = test_val.u128.valu; 422 test_val.u128.vall = dfp128_vals[(i * 2) + 1]; 427 result = (*func)(SP, test_val); 429 test_def.op, test_val.u64_val); 431 printf(" %016llx", test_val.u128.vall); 454 dfp_val_t test_val; local [all...] |
/external/chromium_org/third_party/mesa/src/src/glsl/ |
ast_to_hir.cpp | 3612 ir_rvalue *const test_val = local [all...] |
/external/mesa3d/src/glsl/ |
ast_to_hir.cpp | 3612 ir_rvalue *const test_val = local [all...] |