Home
last modified time | relevance | path

Searched defs:next (Results 1 – 25 of 71) sorted by relevance

123

/arkcompiler/ets_runtime/ecmascript/
Decma_global_storage.h93 void Reset([[maybe_unused]] JSThread *thread, Node *next, JSTaggedType value, bool isUsing) in Reset()
112 void Reset(JSThread *thread, Node *next, JSTaggedType value, bool isUsing) in Reset()
322 inline void SetNext(NodeList *next) in SetNext()
340 inline void SetFreeNext(NodeList<T> *next) in SetFreeNext()
361 T *next = usedList_; in IterateUsageGlobal() local
411 auto *next = topGlobalNodes_; in ~EcmaGlobalStorage() local
473 NodeList<T> *next = topGlobalNodes_; in IterateUsageGlobal() local
486 NodeList<WeakNode> *next = topWeakGlobalNodes_; in IterateWeakUsageGlobal() local
549 auto next = (*freeList)->GetFreeNext(); in NewGlobalHandleImplement() local
Djs_iterator.cpp118 JSHandle<JSTaggedValue> next(JSObject::GetMethod(thread, iter, key)); in IteratorNext() local
138 JSHandle<JSTaggedValue> next(JSObject::GetMethod(thread, iter, key)); in IteratorNext() local
159 JSHandle<JSTaggedValue> next(thread, iter->GetNextMethod()); in IteratorNext() local
179 JSHandle<JSTaggedValue> next(thread, iter->GetNextMethod()); in IteratorNext() local
Djs_async_generator_object.cpp65 JSHandle<AsyncGeneratorRequest> next(thread, queue->Front()); in AsyncGeneratorResolve() local
99 JSHandle<AsyncGeneratorRequest> next = JSHandle<AsyncGeneratorRequest>::Cast(val); in AsyncGeneratorReject() local
139 JSHandle<AsyncGeneratorRequest> next(thread, queue->Front()); in AsyncGeneratorResumeNext() local
Dgenerator_helper.cpp30 JSTaggedValue next = EcmaInterpreter::GeneratorReEnterInterpreter(thread, genContext); in Next() local
Djs_finalization_registry.cpp133 JSHandle<JSFinalizationRegistry> next(thread, obj->GetNext()); in CleanFinRegLists() local
246 void JSFinalizationRegistry::AddFinRegLists(JSThread *thread, JSHandle<JSFinalizationRegistry> next) in AddFinRegLists()
Dtagged_node.h85 JSHandle<JSTaggedValue> value, JSHandle<LinkedNode> next) in InitLinkedNode()
/arkcompiler/runtime_core/compiler/optimizer/code_generator/
Dspill_fill_encoder.cpp77 auto next = std::next(it); in SortSpillFillData() local
114 SpillFillData *next = next_it == end ? nullptr : &(*next_it); in EncodeSpillFill() local
175 size_t SpillFillEncoder::EncodeRegisterToX(const SpillFillData &sf, const SpillFillData *next, int … in EncodeRegisterToX()
215 size_t SpillFillEncoder::EncodeStackToX(const SpillFillData &sf, const SpillFillData *next, int con… in EncodeStackToX()
/arkcompiler/ets_runtime/ecmascript/mem/
Dfree_object_list.cpp62 FreeObjectSet *next = nullptr; in Allocate() local
101 FreeObjectSet *next = nullptr; in LookupSuitableFreeObject() local
276 FreeObjectSet *next = current->next_; in EnumerateSets() local
Dspace-inl.h49 auto next = current->GetNext(); in EnumerateRegions() local
Darea.h46 void LinkNext(Area *next) in LinkNext()
Decma_list.h94 T *next = node->GetNext(); in RemoveNode() local
Dspace.cpp91 Region *next = currentRegion->GetNext(); in Sweep() local
/arkcompiler/runtime_core/runtime/mem/
Dhumongous_obj_allocator.h183 MemoryPoolHeader *next = next_; in GetNext() local
197 void SetNext(MemoryPoolHeader *next) in SetNext()
Dfreelist_allocator.h203 MemoryPoolHeader *next = next_; in GetNext() local
217 void SetNext(MemoryPoolHeader *next) in SetNext()
Dhumongous_obj_allocator-inl.h157 MemoryPoolHeader *next = current_pool->GetNext(); in IterateOverObjects() local
309 size_t size, MemoryPoolHeader *prev, MemoryPoolHeader *next) in Initialize()
482 MemoryPoolHeader *next = cur->GetNext(); in SortedInsert() local
Drunslots.h56 void SetNext(FreeSlot *next) in SetNext()
144 RunSlots *next = next_runslot_; in GetNextRunSlots() local
Dfreelist.h212 … auto next = static_cast<MemoryBlockHeader *>(ToVoidPtr(ToUintPtr(GetRawMemory()) + GetSize())); in GetNextHeader() local
234 MemoryBlockHeader *next = GetNextHeader(); in GetNextUsedHeader() local
Dfreelist_allocator-inl.h352 MemoryPoolHeader *next = current_pool->GetNext(); in VisitAndRemoveFreePools() local
584 size_t size, MemoryPoolHeader *prev, MemoryPoolHeader *next) in Initialize()
722 FreeListHeader *next = current->GetNextFree(); in FindTheMostSuitableBlockInOrderedList() local
/arkcompiler/ets_runtime/ecmascript/compiler/builtins/
Dcontainers_stub_builder.cpp43 Label next(env); in ContainersCommonFuncCall() local
161 Label next(env); in QueueCommonFuncCall() local
267 Label next(env); in DequeCommonFuncCall() local
375 Label next(env); in ContainersLightWeightCall() local
487 Label next(env); in ContainersHashCall() local
619 Label next(env); in ContainersLinkedListCall() local
/arkcompiler/runtime_core/libpandafile/
Dhelpers.h181 …e std::optional<T> GetOptionalTaggedValue(Span<const uint8_t> sp, E tag, Span<const uint8_t> *next) in GetOptionalTaggedValue()
202 …e void EnumerateTaggedValues(Span<const uint8_t> sp, E tag, Callback cb, Span<const uint8_t> *next) in EnumerateTaggedValues()
/arkcompiler/runtime_core/libpandafile/tests/
Dbytecode_instruction_tests.cpp253 BytecodeInstruction next = inst.JumpTo(2); in TEST() local
705 BytecodeInstructionSafe next = inst.JumpTo(2); in TEST() local
712 BytecodeInstructionSafe next = inst.JumpTo(4); in TEST() local
719 BytecodeInstructionSafe next = inst.JumpTo(-1); in TEST() local
/arkcompiler/ets_runtime/ecmascript/compiler/trampoline/aarch64/
Dcommon_call.cpp99 Register argv, Register op, Register currentSlot, Label *next, Label *stackOverflow) in PushArgsWithArgv()
118 Register currentSlot, Label *next, Label *stackOverflow) in PushUndefinedWithArgc()
/arkcompiler/toolchain/tooling/backend/
Djs_single_stepper.cpp97 auto next = it + 1; in GetStepRanges() local
/arkcompiler/runtime_core/libpandabase/mem/
Darena_allocator.cpp132 Arena *next = arenas_->GetNextArena(); in Resize() local
/arkcompiler/ets_runtime/ecmascript/ts_types/
Dlib_ark_builtins.d.ts40 next(...args: [] | [any]): IteratorYieldResult | IteratorReturnResult; method

123