Home
last modified time | relevance | path

Searched refs:kTestVal (Results 1 – 1 of 1) sorted by relevance

/frameworks/libs/binary_translation/runtime_primitives/
Dmemory_region_reservation_test.cc32 constexpr uint32_t kTestVal = 0xf1234567; in TEST() local
34 Reservation reservation = kTestVal; in TEST()
42 MemoryRegionReservation::Store<uint32_t>(&cpu, addr, kTestVal, std::memory_order_seq_cst)); in TEST()
44 ASSERT_EQ(reservation, (Reservation(kTestVal) << 32) | kTestVal); in TEST()
48 MemoryRegionReservation::Store<uint32_t>(&cpu, addr, ~kTestVal, std::memory_order_seq_cst)); in TEST()
50 ASSERT_EQ(reservation, (Reservation(kTestVal) << 32) | kTestVal); in TEST()