Searched refs:GetRawStorage (Results 1 – 10 of 10) sorted by relevance
/art/runtime/base/ |
D | bit_vector.h | 88 : 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
|
D | bit_vector_test.cc | 39 EXPECT_EQ(0U, *bv.GetRawStorage()); in TEST() 55 EXPECT_EQ(0x80000001U, *bv.GetRawStorage()); in TEST() 76 EXPECT_EQ(bits, bv.GetRawStorage()); in TEST()
|
D | bit_vector.cc | 134 return (memcmp(storage_, src->GetRawStorage(), our_highest_index * kWordBytes) == 0); in SameBitsSet() 368 memcpy(storage_, src->GetRawStorage(), kWordBytes * size); in Copy()
|
/art/compiler/utils/ |
D | growable_array.h | 200 T* GetRawStorage() const { return elem_list_; } in GetRawStorage() function
|
/art/compiler/dex/ |
D | mir_analysis.cc | 1169 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()
|
D | mir_graph.h | 664 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()
|
D | ssa_transformation.cc | 449 dest->GetRawStorage()[idx] |= src1->GetRawStorageWord(idx) & ~(src2->GetRawStorageWord(idx)); in ComputeSuccLineIn()
|
D | local_value_numbering_test.cc | 174 cu_.mir_graph->sfield_lowering_infos_.GetRawStorage()[sfield_index].flags_ &= in MakeSFieldUninitialized()
|
/art/compiler/optimizing/ |
D | code_generator.cc | 251 return block_labels_.GetRawStorage() + block->GetBlockId(); in GetLabelOf()
|
/art/compiler/ |
D | oat_writer.cc | 1243 oat_header->UpdateChecksum(method_bitmap_->GetRawStorage(), method_bitmap_size_); in UpdateChecksum() 1270 if (!out->WriteFully(method_bitmap_->GetRawStorage(), method_bitmap_size_)) { in Write()
|