/arkcompiler/runtime_core/static_core/plugins/ets/runtime/interop_js/ets_proxy/ |
H A D | ets_method_set.cpp | 40 if (other.entries_.size() > entries_.size()) { in MergeWith() 41 entries_.resize(other.entries_.size()); in MergeWith() 43 for (uint32_t i = 0; i < other.entries_.size(); ++i) { in MergeWith() 44 EtsMethod *newMethod = other.entries_[i]; in MergeWith() 48 if (nullptr == entries_[i]) { in MergeWith() 49 entries_[i] = other.entries_[i]; in MergeWith()
|
H A D | ets_method_set.h | 57 if (LIKELY(parametersNum < entries_.size())) { in GetMethod() 58 if (LIKELY(entries_[parametersNum] != nullptr)) { in GetMethod() 59 return entries_[parametersNum]; in GetMethod() 63 for (size_t params = std::min(static_cast<size_t>(parametersNum), entries_.size() - 1); params > 0; params--) { in GetMethod() 64 if (entries_[params] != nullptr && entries_[params]->GetPandaMethod()->HasVarArgs()) { in GetMethod() 65 return entries_[params]; in GetMethod() 68 return entries_.front(); in GetMethod() 74 for (auto m : entries_) { in EnumerateMethods() 104 entries_(PandaVecto in EtsMethodSet() 118 PandaVector<EtsMethod *> entries_; global() member in ark::ark::ets::interop::js::ets_proxy::EtsMethodSet [all...] |
/arkcompiler/ets_frontend/ets2panda/lexer/token/ |
H A D | sourceLocation.cpp | 45 entries_.emplace_back(0); 62 entries_.emplace_back(iter.Index()); 66 entries_.back().AddCol(iter.Index()); 79 if (line > entries_.size()) { 83 if (line == entries_.size()) { 87 const auto &entry = entries_[line];
|
H A D | sourceLocation.h | 112 std::vector<OffsetEntry> entries_; member in ark::es2panda::lexer::LineIndex
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | value_numbering.cpp | 31 if (entries_ == nullptr) { in VisitGate() 41 GateRef entry = entries_[i]; in VisitGate() 44 entries_[dead] = gate; in VisitGate() 47 entries_[i] = gate; in VisitGate() 88 GateRef *const oldEntries = entries_; in Grow() 101 GateRef entry = entries_[j]; in Grow() 106 entries_[j] = oldEnrty; in Grow() 120 entries_ = chunk_->NewArray<int32_t>(initSize); in InitEntries() 122 entries_[i] = Circuit::NullGate(); in InitEntries()
|
H A D | value_numbering.h | 28 : PassVisitor(circuit, chunk, visitor), entries_(nullptr), useNewGVN_(useNewGVN), in ValueNumbering() 48 entries_[hash & (entriesLength_ - 1)] = gate; in SetEntry() 55 GateRef* entries_; member in panda::ecmascript::kungfu::ValueNumbering
|
/arkcompiler/ets_runtime/ecmascript/compiler/aot_file/ |
H A D | aot_file_info.h | 44 return entries_[index]; in GetStubDes() 49 return entries_.size(); in GetEntrySize() 54 return entries_; in GetStubs() 97 entries_.emplace_back(des); 148 std::vector<FuncEntryDes> entries_ {};
|
H A D | stub_file_info.cpp | 35 SetStubNum(entries_.size()); in Save() 39 uint64_t funcEntryAddr = reinterpret_cast<uint64_t>(entries_.data()); in Save() 96 entries_.assign(entryDes, entryDes + entryNum_); in MmapLoad() 102 for (auto &entry : entries_) { in MmapLoad() 137 entries_.assign(entryDes, entryDes + entryNum_); in Load() 143 for (auto &entry : entries_) { in Load()
|
H A D | an_file_info.cpp | 33 SetStubNum(entries_.size()); in Save() 138 entries_.assign(entryDes, entryDes + entryNum_); in ParseFunctionEntrySection() 146 size_t len = entries_.size(); in UpdateFuncEntries() 148 FuncEntryDes &funcDes = entries_[i]; in UpdateFuncEntries() 212 uint64_t funcEntryAddr = reinterpret_cast<uint64_t>(entries_.data()); in AddFuncEntrySec()
|
H A D | aot_file_info.cpp | 24 entries_.clear(); in Destroy()
|
/arkcompiler/runtime_core/libpandabase/utils/ |
H A D | bit_table.h | 527 : entries_(allocator->Adapter()), dedup_map_(allocator->Adapter()) 533 return entries_.size(); 538 return entries_.back(); 543 return entries_[index]; 548 return entries_.size(); 553 entries_.emplace_back(entry); 567 if (entries.size() + row <= entries_.size() && 568 std::equal(entries.begin(), entries.end(), entries_.begin() + row)) { 573 entries_.insert(entries_ [all...] |
/arkcompiler/runtime_core/static_core/libpandabase/utils/ |
H A D | bit_table.h | 548 : entries_(allocator->Adapter()), dedupMap_(allocator->Adapter()) 554 return entries_.size(); 559 return entries_.back(); 564 return entries_[index]; 569 return entries_.size(); 574 entries_.emplace_back(entry); 588 if (entries.size() + row <= entries_.size() && 589 std::equal(entries.begin(), entries.end(), entries_.begin() + row)) { 594 entries_.insert(entries_ [all...] |
/arkcompiler/toolchain/tooling/base/ |
H A D | pt_types.h | 2611 return &entries_; in GetEntries() 2616 entries_ = std::move(entries); in SetEntries() 2626 std::vector<std::unique_ptr<TypeProfileEntry>> entries_ {};
|
H A D | pt_types.cpp | 3131 scriptTypeProfile->entries_.emplace_back(std::move(pEntries)); in Create() 3154 size_t len = entries_.size(); in ToJson() 3156 ASSERT(entries_[i] != nullptr); in ToJson() 3157 entries->Push(entries_[i]->ToJson()); in ToJson()
|