Home
last modified time | relevance | path

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

/art/runtime/base/
Dbit_vector.h74 : bit_storage_(bit_vector->GetRawStorage()), in IndexIterator()
79 : bit_storage_(bit_vector->GetRawStorage()), in IndexIterator()
229 uint32_t* GetRawStorage() { in GetRawStorage() function
233 const uint32_t* GetRawStorage() const { in GetRawStorage() function
Dbit_vector_test.cc40 EXPECT_EQ(0U, *bv.GetRawStorage()); in TEST()
56 EXPECT_EQ(0x80000001U, *bv.GetRawStorage()); in TEST()
77 EXPECT_EQ(bits, bv.GetRawStorage()); in TEST()
Dbit_vector-inl.h75 (memcmp(storage_, src->GetRawStorage(), storage_size_ * sizeof(uint32_t)) == 0); in Equal()
Dbit_vector.cc89 return (memcmp(storage_, src->GetRawStorage(), our_highest_index * kWordBytes) == 0); in SameBitsSet()
305 memcpy(storage_, src->GetRawStorage(), kWordBytes * size); in Copy()
/art/compiler/
Doat_writer.cc2454 if (!out->WriteFully(method_bitmap_->GetRawStorage(), method_bitmap_size_)) { in Write()