Home
last modified time | relevance | path

Searched refs:entries_ (Results 1 - 14 of 14) sorted by relevance

/arkcompiler/runtime_core/static_core/plugins/ets/runtime/interop_js/ets_proxy/
H A Dets_method_set.cpp40 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 Dets_method_set.h57 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 DsourceLocation.cpp45 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 DsourceLocation.h112 std::vector<OffsetEntry> entries_; member in ark::es2panda::lexer::LineIndex
/arkcompiler/ets_runtime/ecmascript/compiler/
H A Dvalue_numbering.cpp31 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 Dvalue_numbering.h28 : 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 Daot_file_info.h44 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 Dstub_file_info.cpp35 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 Dan_file_info.cpp33 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 Daot_file_info.cpp24 entries_.clear(); in Destroy()
/arkcompiler/runtime_core/libpandabase/utils/
H A Dbit_table.h527 : 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 Dbit_table.h548 : 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 Dpt_types.h2611 return &entries_; in GetEntries()
2616 entries_ = std::move(entries); in SetEntries()
2626 std::vector<std::unique_ptr<TypeProfileEntry>> entries_ {};
H A Dpt_types.cpp3131 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()

Completed in 17 milliseconds