/arkcompiler/ets_runtime/ecmascript/ |
D | tagged_list.cpp | 55 value.Update(GetElement(i)); in CopyArray() 101 dataIndex = GetElement(dataIndex + NEXT_PTR_OFFSET).GetInt(); in Clear() 147 int nextDataIndex = GetElement(dataIndex + NEXT_PTR_OFFSET).GetInt(); in FindIndexByElement() 151 JSTaggedValue data = GetElement(dataIndex); in FindIndexByElement() 152 nextDataIndex = GetElement(nextDataIndex + NEXT_PTR_OFFSET).GetInt(); in FindIndexByElement() 165 int nextIndex = GetElement(dataIndex + NEXT_PTR_OFFSET).GetInt(); in FindLastIndexByElement() 170 JSTaggedValue data = GetElement(dataIndex); in FindLastIndexByElement() 174 nextIndex = GetElement(nextIndex + NEXT_PTR_OFFSET).GetInt(); in FindLastIndexByElement() 184 int nextIndex = GetElement(dataIndex + NEXT_PTR_OFFSET).GetInt(); in FindDataIndexByNodeIndex() 191 nextIndex = GetElement(nextIndex + NEXT_PTR_OFFSET).GetInt(); in FindDataIndexByNodeIndex() [all …]
|
D | tagged_list.h | 63 int firstDataIndex = GetElement(ELEMENTS_START_INDEX + NEXT_PTR_OFFSET).GetInt(); in GetFirst() 64 return GetElement(firstDataIndex); in GetFirst() 69 int lastDataIndex = GetElement(TAIL_TABLE_INDEX).GetInt(); in GetLast() 70 return GetElement(lastDataIndex); in GetLast() 86 inline JSTaggedValue GetElement(int index) const in GetElement() function 116 dataIndex = GetElement(dataIndex + NEXT_PTR_OFFSET).GetInt(); in GetNextDataIndex()
|
D | linked_hash_table.h | 91 for (JSTaggedValue entry = GetElement(BucketToIndex(bucket)); !entry.IsHole(); in FindElement() 162 return GetElement(index); in GetKey() 168 return GetElement(index); in GetValue() 227 JSTaggedValue key = GetElement(fromIndex); in Rehash() 244 newTable->SetElement(thread, desIndex + j, GetElement(fromIndex + j)); in Rehash() 253 inline JSTaggedValue GetElement(int index) const in GetElement() function 280 return GetElement(index); in GetNextEntry() 308 JSTaggedValue previousEntry = GetElement(bucketIndex); in InsertNewEntry()
|
D | tagged_tree.h | 83 return GetElement(index); in GetKey() 89 return GetElement(index); in GetValue() 98 JSTaggedValue color = GetElement(index); in GetColor() 214 JSTaggedValue parent = GetElement(index); in GetParent() 257 inline JSTaggedValue GetElement(int index) const in GetElement() function
|
D | dump.cpp | 1367 GetElement(5).D(); in Dump() 1370 GetElement(6).D(); in Dump() 1373 int next = GetElement(5).GetInt(); in Dump() 1376 GetElement(next).DumpTaggedValue(os); in Dump() 1379 GetElement(next + 1).D(); in Dump() 1382 GetElement(next + 2).D(); in Dump() 1384 next = GetElement(next + 1).GetInt(); in Dump() 1395 GetElement(5).D(); in Dump() 1398 int next = GetElement(5).GetInt(); in Dump() 1401 GetElement(next).DumpTaggedValue(os); in Dump() [all …]
|
D | object_factory.h | 336 dataIndex = list->GetElement(dataIndex + Derived::NEXT_PTR_OFFSET).GetInt(); in ConvertListToArray() 337 dstElements->Set(thread, i, list->GetElement(dataIndex)); in ConvertListToArray()
|
/arkcompiler/runtime_core/compiler/optimizer/optimizations/ |
D | vn.cpp | 83 if (GetElement(i) != obj->GetElement(i)) { in Compare()
|
D | vn.h | 50 uint64_t GetElement(uint32_t index) const in GetElement() function
|
/arkcompiler/ets_runtime/ecmascript/jspandafile/ |
D | method_literal.cpp | 53 panda_file::AnnotationDataAccessor::Elem adae = ada.GetElement(i); in Initialize() 62 panda_file::AnnotationDataAccessor::Elem adae = ada.GetElement(i); in Initialize()
|
D | type_literal_extractor.cpp | 52 panda_file::AnnotationDataAccessor::Elem adae = ada.GetElement(i); in GetMethodAnnoOffset()
|
/arkcompiler/runtime_core/libpandafile/ |
D | annotation_data_accessor.cpp | 36 AnnotationDataAccessor::Elem AnnotationDataAccessor::GetElement(size_t i) const in GetElement() function in panda::panda_file::AnnotationDataAccessor
|
D | annotation_data_accessor.h | 92 Elem GetElement(size_t i) const;
|
D | method_data_accessor-inl.h | 344 AnnotationDataAccessor::Elem adae = ada.GetElement(i); in GetNumericalAnnotation()
|
D | file_reader.cpp | 211 AnnotationDataAccessor::Elem ann_elem = ann_acc.GetElement(i); in CreateAnnotationItem()
|
/arkcompiler/runtime_core/compiler/tests/ |
D | compiler_optimizations_test.cpp | 63 EXPECT_EQ(vn_obj.GetElement(0), 1);
|
/arkcompiler/ets_runtime/ecmascript/debugger/ |
D | debugger_api.cpp | 1033 currentValue.Update(doubleList->GetElement(valueNode)); in GetLinkedListValue() 1053 currentValue.Update(singleList->GetElement(valueNode)); in GetListValue()
|
/arkcompiler/ets_runtime/ecmascript/containers/ |
D | containers_list.cpp | 334 JSTaggedValue value = singleList->GetElement(valueNode); in ForEach()
|
D | containers_linked_list.cpp | 565 JSTaggedValue value = doubleList->GetElement(valueNode); in ForEach()
|