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.cc93 return (memcmp(storage_, src->GetRawStorage(), our_highest_index * kWordBytes) == 0); in SameBitsSet()
309 memcpy(storage_, src->GetRawStorage(), kWordBytes * size); in Copy()
399 GetRawData().GetRawStorage() + ((dest_row * num_columns_) / BitVector::kWordBits); in UnionRows()
400 uint32_t* source = GetRawData().GetRawStorage() + ((other * num_columns_) / BitVector::kWordBits); in UnionRows()
Dbit_vector_test.cc43 EXPECT_EQ(0U, *bv.GetRawStorage()); in TEST()
59 EXPECT_EQ(0x80000001U, *bv.GetRawStorage()); in TEST()
106 EXPECT_EQ(bits, bv.GetRawStorage()); in TEST()
352 ASSERT_TRUE(bv.GetRawStorage() != nullptr); in TEST()
356 ASSERT_TRUE(bv.GetRawStorage() == nullptr); in TEST()
Dbit_vector.h222 uint32_t* GetRawStorage() { in GetRawStorage() function
226 const uint32_t* GetRawStorage() const { in GetRawStorage() function
/art/compiler/optimizing/
Dstack_map_stream.cc78 stack_masks_.Dedup(stack_mask->GetRawStorage(), stack_mask->GetNumberOfBits()); in EndMethod()
282 dex_register_masks_.Dedup(temp_dex_register_mask_.GetRawStorage(), in CreateDexRegisterMap()
/art/dex2oat/linker/
Doat_writer.cc4059 if (!out->WriteFully(method_bitmap_->GetRawStorage(), method_bitmap_->GetSizeOf())) { in Write()