Searched defs:k_test_val (Results 1 - 2 of 2) sorted by relevance

/external/chromium/base/
H A Datomicops_unittest.cc94 const AtomicType k_test_val = (GG_ULONGLONG(1) << local
96 value = k_test_val;
98 EXPECT_EQ(k_test_val, value);
99 EXPECT_EQ(k_test_val, prev);
101 value = k_test_val;
102 prev = base::subtle::NoBarrier_CompareAndSwap(&value, k_test_val, 5);
104 EXPECT_EQ(k_test_val, prev);
117 const AtomicType k_test_val = (GG_ULONGLONG(1) << local
119 value = k_test_val;
120 new_value = base::subtle::NoBarrier_AtomicExchange(&value, k_test_val);
[all...]
/external/chromium/base/allocator/
H A Dallocator_unittests.cc168 const AtomicType k_test_val = (GG_ULONGLONG(1) << local
170 value = k_test_val;
172 EXPECT_EQ(k_test_val, value);
173 EXPECT_EQ(k_test_val, prev);
175 value = k_test_val;
176 prev = base::subtle::NoBarrier_CompareAndSwap(&value, k_test_val, 5);
178 EXPECT_EQ(k_test_val, prev);
191 const AtomicType k_test_val = (GG_ULONGLONG(1) << local
193 value = k_test_val;
194 new_value = base::subtle::NoBarrier_AtomicExchange(&value, k_test_val);
[all...]

Completed in 74 milliseconds