Home
last modified time | relevance | path

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

/art/runtime/base/
Dbit_vector.h88 : bit_storage_(bit_vector->GetRawStorage()), in IndexIterator()
93 : bit_storage_(bit_vector->GetRawStorage()), in IndexIterator()
172 (memcmp(storage_, src->GetRawStorage(), storage_size_ * sizeof(uint32_t)) == 0); in Equal()
193 uint32_t* GetRawStorage() { return storage_; } in GetRawStorage() function
194 const uint32_t* GetRawStorage() const { return storage_; } in GetRawStorage() function
Dbit_vector_test.cc39 EXPECT_EQ(0U, *bv.GetRawStorage()); in TEST()
55 EXPECT_EQ(0x80000001U, *bv.GetRawStorage()); in TEST()
76 EXPECT_EQ(bits, bv.GetRawStorage()); in TEST()
Dbit_vector.cc134 return (memcmp(storage_, src->GetRawStorage(), our_highest_index * kWordBytes) == 0); in SameBitsSet()
368 memcpy(storage_, src->GetRawStorage(), kWordBytes * size); in Copy()
/art/compiler/utils/
Dgrowable_array.h200 T* GetRawStorage() const { return elem_list_; } in GetRawStorage() function
/art/compiler/dex/
Dmir_analysis.cc1169 ifield_lowering_infos_.GetRawStorage(), ifield_pos); in DoCacheFieldLoweringInfo()
1181 sfield_lowering_infos_.GetRawStorage(), max_refs - sfield_pos); in DoCacheFieldLoweringInfo()
1296 method_lowering_infos_.GetRawStorage(), count); in DoCacheMethodLoweringInfo()
Dmir_graph.h664 return ifield_lowering_infos_.GetRawStorage()[mir->meta.ifield_lowering_info]; in GetIFieldLoweringInfo()
669 return sfield_lowering_infos_.GetRawStorage()[mir->meta.sfield_lowering_info]; in GetSFieldLoweringInfo()
676 return method_lowering_infos_.GetRawStorage()[mir->meta.method_lowering_info]; in GetMethodLoweringInfo()
Dssa_transformation.cc449 dest->GetRawStorage()[idx] |= src1->GetRawStorageWord(idx) & ~(src2->GetRawStorageWord(idx)); in ComputeSuccLineIn()
Dlocal_value_numbering_test.cc174 cu_.mir_graph->sfield_lowering_infos_.GetRawStorage()[sfield_index].flags_ &= in MakeSFieldUninitialized()
/art/compiler/optimizing/
Dcode_generator.cc251 return block_labels_.GetRawStorage() + block->GetBlockId(); in GetLabelOf()
/art/compiler/
Doat_writer.cc1243 oat_header->UpdateChecksum(method_bitmap_->GetRawStorage(), method_bitmap_size_); in UpdateChecksum()
1270 if (!out->WriteFully(method_bitmap_->GetRawStorage(), method_bitmap_size_)) { in Write()