Searched refs:GetRawStorage (Results 1 – 6 of 6) sorted by relevance
/art/libartbase/base/ |
D | bit_vector-inl.h | 71 : 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()
|
D | bit_vector.cc | 93 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()
|
D | bit_vector_test.cc | 43 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()
|
D | bit_vector.h | 222 uint32_t* GetRawStorage() { in GetRawStorage() function 226 const uint32_t* GetRawStorage() const { in GetRawStorage() function
|
/art/compiler/optimizing/ |
D | stack_map_stream.cc | 78 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/ |
D | oat_writer.cc | 4059 if (!out->WriteFully(method_bitmap_->GetRawStorage(), method_bitmap_->GetSizeOf())) { in Write()
|