Home
last modified time | relevance | path

Searched refs:GetData (Results 1 – 15 of 15) sorted by relevance

/art/runtime/verifier/
Ddex_gc_map.h50 return GetData()[2] | (GetData()[3] << 8); in NumEntries()
74 return GetData()[1] | ((GetData()[0] & ~kRegMapFormatMask) << kRegMapFormatShift); in RegWidth()
80 return GetData() + 4; in Table()
85 return static_cast<RegisterMapFormat>(GetData()[0] & kRegMapFormatMask); in Format()
107 const uint8_t* GetData() const { in GetData() function
/art/runtime/mirror/
Darray.h105 const T* GetData() const { in GetData() function
110 T* GetData() { in GetData() function
119 return GetData()[i]; in Get()
124 GetData()[i] = value; in Set()
Dstring.cc40 return CountUtf8Bytes(GetCharArray()->GetData() + GetOffset(), GetLength()); in GetUtfLength()
50 const uint16_t* chars = GetCharArray()->GetData() + GetOffset(); in FastIndexOf()
155 const_cast<uint16_t*>(string->GetCharArray()->GetData()); in AllocFromModifiedUtf8()
239 const uint16_t* chars = GetCharArray()->GetData() + GetOffset(); in ToModifiedUtf8()
277 const uint16_t* lhsChars = lhs->GetCharArray()->GetData() + lhs->GetOffset(); in CompareTo()
278 const uint16_t* rhsChars = rhs->GetCharArray()->GetData() + rhs->GetOffset(); in CompareTo()
Dobject_test.cc61 ASSERT_TRUE(string->GetCharArray()->GetData() != NULL); in AssertString()
/art/runtime/
Dexception_test.cc78 method_f_->SetMappingTable(&fake_mapping_data_.GetData()[0]); in SetUp()
79 method_f_->SetVmapTable(&fake_vmap_table_data_.GetData()[0]); in SetUp()
86 method_g_->SetMappingTable(&fake_mapping_data_.GetData()[0]); in SetUp()
87 method_g_->SetVmapTable(&fake_vmap_table_data_.GetData()[0]); in SetUp()
Dclass_linker_test.cc780 uintptr_t data_offset = reinterpret_cast<uintptr_t>(long_array->GetData()); in TEST_F()
785 data_offset = reinterpret_cast<uintptr_t>(double_array->GetData()); in TEST_F()
790 data_offset = reinterpret_cast<uintptr_t>(int_array->GetData()); in TEST_F()
795 data_offset = reinterpret_cast<uintptr_t>(char_array->GetData()); in TEST_F()
800 data_offset = reinterpret_cast<uintptr_t>(short_array->GetData()); in TEST_F()
Dcommon_test.h159 MakeExecutable(code_array->GetData(), code_array->GetLength()); in MakeExecutable()
Djni_internal.cc1982 const jchar* chars = s->GetCharArray()->GetData() + s->GetOffset(); in GetStringRegion()
1996 const jchar* chars = s->GetCharArray()->GetData() + s->GetOffset(); in GetStringUTFRegion()
2010 return chars->GetData() + s->GetOffset(); in GetStringChars()
2039 const uint16_t* chars = s->GetCharArray()->GetData() + s->GetOffset(); in GetStringUTFChars()
2559 return array->GetData(); in GetPrimitiveArray()
2581 JavaT* data = array->GetData(); in GetPrimitiveArrayRegion()
2596 JavaT* data = array->GetData(); in SetPrimitiveArrayRegion()
Ddebugger.cc3021 const jchar* chars = (name.get() != NULL) ? name->GetCharArray()->GetData() : NULL; in DdmSendThreadNotification()
/art/compiler/
Dleb128_encoder.h51 const std::vector<uint8_t>& GetData() const { in GetData() function
Dimage_writer.cc219 const uint16_t* utf16_string = string->GetCharArray()->GetData() + string->GetOffset(); in ComputeEagerResolvedStringsCallback()
/art/compiler/sea_ir/code_gen/
Dcode_gen.h90 CodeGenData* GetData() { in GetData() function
/art/compiler/sea_ir/ir/
Dsea.cc403 CodeGenVisitor code_gen_visitor(code_gen_prepass_visitor.GetData(), dex_file); in GenerateLLVM()
405 CodeGenPostpassVisitor code_gen_postpass_visitor(code_gen_visitor.GetData()); in GenerateLLVM()
407 return code_gen_postpass_visitor.GetData(); in GenerateLLVM()
/art/runtime/interpreter/
Dinterpreter.cc1775 shadow_frame.SetVReg(inst->VRegA_23x(), array->GetData()[index]); in ExecuteImpl()
1793 shadow_frame.SetVReg(inst->VRegA_23x(), array->GetData()[index]); in ExecuteImpl()
1811 shadow_frame.SetVReg(inst->VRegA_23x(), array->GetData()[index]); in ExecuteImpl()
1829 shadow_frame.SetVReg(inst->VRegA_23x(), array->GetData()[index]); in ExecuteImpl()
1847 shadow_frame.SetVReg(inst->VRegA_23x(), array->GetData()[index]); in ExecuteImpl()
1865 shadow_frame.SetVRegLong(inst->VRegA_23x(), array->GetData()[index]); in ExecuteImpl()
1902 array->GetData()[index] = val; in ExecuteImpl()
1921 array->GetData()[index] = val; in ExecuteImpl()
1940 array->GetData()[index] = val; in ExecuteImpl()
1959 array->GetData()[index] = val; in ExecuteImpl()
[all …]
/art/compiler/dex/quick/
Dcodegen_util.cc533 MappingTable table(&encoded_mapping_table_.GetData()[0]); in CreateMappingTables()
1032 core_spill_mask_, fp_spill_mask_, encoded_mapping_table_.GetData(), in GetCompiledMethod()
1033 vmap_encoder.GetData(), native_gc_map_); in GetCompiledMethod()