Searched refs:GetRawStorage (Results 1 – 5 of 5) sorted by relevance
/art/runtime/base/ |
D | bit_vector.h | 74 : 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
|
D | bit_vector_test.cc | 40 EXPECT_EQ(0U, *bv.GetRawStorage()); in TEST() 56 EXPECT_EQ(0x80000001U, *bv.GetRawStorage()); in TEST() 77 EXPECT_EQ(bits, bv.GetRawStorage()); in TEST()
|
D | bit_vector-inl.h | 75 (memcmp(storage_, src->GetRawStorage(), storage_size_ * sizeof(uint32_t)) == 0); in Equal()
|
D | bit_vector.cc | 89 return (memcmp(storage_, src->GetRawStorage(), our_highest_index * kWordBytes) == 0); in SameBitsSet() 305 memcpy(storage_, src->GetRawStorage(), kWordBytes * size); in Copy()
|
/art/compiler/ |
D | oat_writer.cc | 2454 if (!out->WriteFully(method_bitmap_->GetRawStorage(), method_bitmap_size_)) { in Write()
|