Home
last modified time | relevance | path

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

/art/runtime/verifier/
Ddex_gc_map.h52 return GetData()[2] | (GetData()[3] << 8); in NumEntries()
76 return GetData()[1] | ((GetData()[0] & ~kRegMapFormatMask) << kRegMapFormatShift); in RegWidth()
82 return GetData() + 4; in Table()
87 return static_cast<RegisterMapFormat>(GetData()[0] & kRegMapFormatMask); in Format()
109 const uint8_t* GetData() const { in GetData() function
/art/runtime/
Dleb128_test.cc98 EXPECT_EQ(UnsignedLeb128Size(uleb128_tests[i].decoded), builder.GetData().size()); in TEST()
100 const uint8_t* encoded_data_ptr = &builder.GetData()[0]; in TEST()
102 if (j < builder.GetData().size()) { in TEST()
137 const uint8_t* encoded_data_ptr = &builder.GetData()[0]; in TEST()
148 EXPECT_EQ(builder.GetData().size(), in TEST()
149 static_cast<size_t>(encoded_data_ptr - &builder.GetData()[0])); in TEST()
179 EXPECT_EQ(SignedLeb128Size(sleb128_tests[i].decoded), builder.GetData().size()); in TEST()
181 const uint8_t* encoded_data_ptr = &builder.GetData()[0]; in TEST()
183 if (j < builder.GetData().size()) { in TEST()
218 const uint8_t* encoded_data_ptr = &builder.GetData()[0]; in TEST()
[all …]
Dexception_test.cc75 const std::vector<uint8_t>& fake_vmap_table_data = fake_vmap_table_data_.GetData(); in SetUp()
76 const std::vector<uint8_t>& fake_mapping_data = fake_mapping_data_.GetData(); in SetUp()
Dleb128.h187 const std::vector<uint8_t>& GetData() const { in GetData() function
Dclass_linker_test.cc770 uintptr_t data_offset = reinterpret_cast<uintptr_t>(long_array->GetData()); in TEST_F()
775 data_offset = reinterpret_cast<uintptr_t>(double_array->GetData()); in TEST_F()
780 data_offset = reinterpret_cast<uintptr_t>(int_array->GetData()); in TEST_F()
785 data_offset = reinterpret_cast<uintptr_t>(char_array->GetData()); in TEST_F()
790 data_offset = reinterpret_cast<uintptr_t>(short_array->GetData()); in TEST_F()
Djni_internal.cc1958 const jchar* chars = s->GetCharArray()->GetData() + s->GetOffset(); in GetStringRegion()
1972 const jchar* chars = s->GetCharArray()->GetData() + s->GetOffset(); in GetStringUTFRegion()
1998 return static_cast<jchar*>(chars->GetData() + s->GetOffset()); in GetStringChars()
2007 if (chars != (s_chars->GetData() + s->GetOffset())) { in ReleaseStringChars()
2027 return static_cast<jchar*>(chars->GetData() + offset); in GetStringCritical()
2053 const uint16_t* chars = s->GetCharArray()->GetData() + s->GetOffset(); in GetStringUTFChars()
2622 memcpy(data, array->GetData(), size); in GetPrimitiveArray()
2628 return reinterpret_cast<ElementT*>(array->GetData()); in GetPrimitiveArray()
2692 ElementT* data = array->GetData(); in GetPrimitiveArrayRegion()
2712 ElementT* data = array->GetData(); in SetPrimitiveArrayRegion()
Ddebugger.cc3991 const jchar* chars = (name.Get() != NULL) ? name->GetCharArray()->GetData() : NULL; in DdmSendThreadNotification()
/art/runtime/mirror/
Dstring.cc43 const uint16_t* chars = GetCharArray()->GetData() + GetOffset(); in FastIndexOf()
72 return CountUtf8Bytes(GetCharArray()->GetData() + GetOffset(), GetLength()); in GetUtfLength()
88 memcpy(array->GetData(), utf16_data_in, utf16_length * sizeof(uint16_t)); in AllocFromUtf16()
111 const_cast<uint16_t*>(string->GetCharArray()->GetData()); in AllocFromModifiedUtf8()
194 const uint16_t* chars = GetCharArray()->GetData() + GetOffset(); in ToModifiedUtf8()
217 const uint16_t* lhsChars = lhs->GetCharArray()->GetData() + lhs->GetOffset(); in CompareTo()
218 const uint16_t* rhsChars = rhs->GetCharArray()->GetData() + rhs->GetOffset(); in CompareTo()
Darray.h118 const T* GetData() const ALWAYS_INLINE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { in GetData() function
122 T* GetData() ALWAYS_INLINE SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) { in GetData() function
130 return GetData()[i]; in GetWithoutChecks()
Darray-inl.h217 GetData()[i] = value; in SetWithoutChecks()
Dobject_test.cc66 ASSERT_TRUE(string->GetCharArray()->GetData() != NULL); in AssertString()
/art/compiler/sea_ir/code_gen/
Dcode_gen.h90 CodeGenData* GetData() { in GetData() function
/art/compiler/
Doat_writer.cc141 static const SwapVector<uint8_t>* GetData(const CompiledMethod* compiled_method) ALWAYS_INLINE { in GetData() function
163 static const SwapVector<uint8_t>* GetData(const CompiledMethod* compiled_method) ALWAYS_INLINE { in GetData() function
185 static const SwapVector<uint8_t>* GetData(const CompiledMethod* compiled_method) ALWAYS_INLINE { in GetData() function
508 const SwapVector<uint8_t>* map = DataAccess::GetData(compiled_method); in VisitMethod()
671 const SwapVector<uint8_t>* map = DataAccess::GetData(compiled_method); in VisitMethod()
Dimage_writer.cc607 const uint16_t* utf16_string = string->GetCharArray()->GetData() + string->GetOffset(); in ComputeEagerResolvedStringsCallback()
/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/compiler/optimizing/
Dcode_generator.cc368 *data = vmap_encoder.GetData(); in BuildVMapTable()
/art/compiler/dex/quick/
Dcodegen_util.cc1110 ArrayRef<const uint8_t>(vmap_encoder.GetData()), in GetCompiledMethod()