Searched defs:test_val (Results 1 - 7 of 7) sorted by relevance

/external/libchrome/base/
H A Datomicops_unittest.cc141 AtomicType test_val = (static_cast<uint64_t>(1) << local
143 AtomicType value = -1 ^ test_val;
145 EXPECT_EQ(test_val, value);
149 EXPECT_EQ(-1 ^ test_val, value);
152 test_val = static_cast<uint64_t>(1) << (NUM_BITS(AtomicType) / 2);
153 value = test_val - 1;
155 EXPECT_EQ(test_val, value);
159 EXPECT_EQ(test_val - 1, value);
/external/v8/test/cctest/
H A Dtest-atomicops.cc161 AtomicType test_val = static_cast<AtomicType>(1) local
163 AtomicType value = test_val - 1;
165 CHECK_EQU(test_val, value);
169 CHECK_EQU(test_val - 1, value);
/external/valgrind/none/tests/ppc32/
H A Dtest_dfp4.c487 dfp_val_t test_val, dummy; local
500 test_val.u64_val = dfp64_vals[i];
502 test_val.u128.valu = dfp128_vals[i * 2];
503 test_val.u128.vall = dfp128_vals[(i * 2) + 1];
518 (*func)(BF, data_class_OR_group, &test_val, &dummy);
525 printf("%016llx %016llx", test_val.u128.valu, test_val.u128.vall);
527 printf("%016llx", test_val.u64_val);
H A Dtest_dfp5.c411 dfp_val_t test_val; local
423 test_val.u64_val = dfp64_vals[i];
425 test_val.u128.valu = dfp128_vals[i * 2];
426 test_val.u128.vall = dfp128_vals[(i * 2) + 1];
437 result = (*func)(SP, &test_val);
440 printf("%016llx ==> %016llx\n", test_val.u64_val, result.u64_val);
443 test_val.u128.valu, test_val.u128.vall,
463 dfp_val_t test_val; local
493 test_val
[all...]
/external/valgrind/none/tests/ppc64/
H A Dtest_dfp4.c487 dfp_val_t test_val, dummy; local
500 test_val.u64_val = dfp64_vals[i];
502 test_val.u128.valu = dfp128_vals[i * 2];
503 test_val.u128.vall = dfp128_vals[(i * 2) + 1];
518 (*func)(BF, data_class_OR_group, &test_val, &dummy);
525 printf("%016llx %016llx", test_val.u128.valu, test_val.u128.vall);
527 printf("%016llx", test_val.u64_val);
H A Dtest_dfp5.c411 dfp_val_t test_val; local
423 test_val.u64_val = dfp64_vals[i];
425 test_val.u128.valu = dfp128_vals[i * 2];
426 test_val.u128.vall = dfp128_vals[(i * 2) + 1];
437 result = (*func)(SP, &test_val);
440 printf("%016llx ==> %016llx\n", test_val.u64_val, result.u64_val);
443 test_val.u128.valu, test_val.u128.vall,
463 dfp_val_t test_val; local
493 test_val
[all...]
/external/mesa3d/src/glsl/
H A Dast_to_hir.cpp3612 ir_rvalue *const test_val = local
3616 state->switch_state.test_var = new(ctx) ir_variable(test_val->type,
3623 instructions->push_tail(new(ctx) ir_assignment(deref_test_var, test_val));

Completed in 209 milliseconds