Home
last modified time | relevance | path

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

/art/libartbase/base/
Dbit_vector-inl.h71 : bit_storage_(bit_vector->GetRawStorage()), in IndexIterator()
76 : bit_storage_(bit_vector->GetRawStorage()), in IndexIterator()
95 (memcmp(storage_, src->GetRawStorage(), storage_size_ * sizeof(uint32_t)) == 0); in Equal()
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.h217 uint32_t* GetRawStorage() { in GetRawStorage() function
221 const uint32_t* GetRawStorage() const { in GetRawStorage() function
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/optimizing/
Dstack_map_stream.cc66 stack_masks_.Dedup(stack_mask->GetRawStorage(), stack_mask->GetNumberOfBits()); in EndMethod()
256 dex_register_masks_.Dedup(temp_dex_register_mask_.GetRawStorage(), in CreateDexRegisterMap()
/art/dex2oat/linker/
Doat_writer.cc4205 if (!out->WriteFully(method_bitmap_->GetRawStorage(), method_bitmap_size_)) { in Write()