Home
last modified time | relevance | path

Searched refs:component_shift (Results 1 – 3 of 3) sorted by relevance

/art/compiler/optimizing/
Dinstruction_simplifier_mips.cc76 size_t component_shift = DataType::SizeShift(packed_type); in TryExtractArrayAccessIndex() local
86 if (another_component_shift == component_shift) { in TryExtractArrayAccessIndex()
94 if (another_component_shift == component_shift) { in TryExtractArrayAccessIndex()
101 if (another_component_shift == component_shift) { in TryExtractArrayAccessIndex()
112 HIntConstant* shift = graph->GetIntConstant(component_shift); in TryExtractArrayAccessIndex()
Dinstruction_simplifier_shared.cc296 size_t component_shift = DataType::SizeShift(packed_type); in TryExtractVecArrayAccessAddress() local
308 if (another_data_offset == data_offset && another_component_shift == component_shift) { in TryExtractVecArrayAccessAddress()
316 if (another_data_offset == data_offset && another_component_shift == component_shift) { in TryExtractVecArrayAccessAddress()
329 HIntConstant* shift = graph->GetIntConstant(component_shift); in TryExtractVecArrayAccessAddress()
/art/runtime/mirror/
Darray.cc139 const auto component_shift = GetClass()->GetComponentSizeShift(); in CopyOf() local
140 …ObjPtr<Array> new_array = Alloc<true>(self, GetClass(), new_length, component_shift, allocator_typ… in CopyOf()
144 std::min(h_this->GetLength(), new_length) << component_shift); in CopyOf()