/arkcompiler/ets_frontend/es2panda/compiler/base/ |
H A D | catchTable.h | 46 return try_.Begin(); in TryBegin() 56 return catch_.Begin(); in CatchBegin()
|
/arkcompiler/ets_frontend/ets2panda/compiler/base/ |
H A D | catchTable.h | 46 return try_.Begin(); in TryBegin() 56 return catch_.Begin(); in CatchBegin()
|
/arkcompiler/ets_frontend/ets2panda/compiler/core/ |
H A D | labelPair.h | 28 Label *Begin() const in Begin() function in ark::es2panda::compiler::LabelPair
|
H A D | dynamicContext.cpp | 245 etsg->SetLabel(tryStmt_, labelPair.Begin()); in EmitFinalizerInsertion()
|
H A D | ETSCompiler.cpp | 1656 etsg->SetLabel(st, tryLabelPair.Begin()); in Compile() 1673 auto trycatchLabelPair = compiler::LabelPair(tryLabelPair.Begin(), statementEnd); in Compile()
|
/arkcompiler/ets_frontend/es2panda/compiler/core/ |
H A D | labelPair.h | 27 Label *Begin() const in Begin() function in panda::es2panda::compiler::LabelPair
|
/arkcompiler/runtime_core/static_core/runtime/mem/ |
H A D | region_space-inl.h | 104 auto curPtr = Begin(); in IterateOverObjects() 147 ASAN_POISON_MEMORY_REGION(ToVoidPtr(region->Begin()), region->End() - region->Begin()); in FreeRegion()
|
H A D | region_space.cpp | 103 ASSERT(Begin() != 0); in CreateTLAB() 104 ASSERT(Top() == Begin()); in CreateTLAB() 407 ASAN_POISON_MEMORY_REGION(ToVoidPtr(region->Begin()), region->End() - region->Begin()); in NewRegion()
|
H A D | region_space.h | 77 uintptr_t Begin() const in Begin() function in ark::mem::Region 275 return reinterpret_cast<ObjectHeader *>(Begin()); in GetLargeObject() 409 out << std::hex << "[0x" << std::setw(POINTER_PRINT_WIDTH) << std::setfill('0') << region.Begin() << "-0x" in DumpRegionRange()
|
H A D | region_allocator-inl.h | 83 AllocConfigT::OnInitYoungRegion({region->Begin(), region->End()}); in CreateAndSetUpNewRegion()
|
/arkcompiler/runtime_core/static_core/runtime/mem/gc/g1/ |
H A D | card_handler.h | 91 region->GetLiveBitmap()->CallForMarkedChunkInHumongousRegion<true>(ToVoidPtr(region->Begin()), remsetBuilder); in Handle()
|
H A D | g1-evacuate-regions-worker-state-inl.h | 205 bitmap->CallForMarkedChunkInHumongousRegion<false>(ToVoidPtr(region->Begin()), wrapper); in IterateRefsInMemRange()
|
H A D | g1-allocator.cpp | 431 GetYoungRanges().emplace_back(r->Begin(), r->End()); in UpdateSpaceData()
|
H A D | g1-gc.cpp | 275 bitmap->CallForMarkedChunkInHumongousRegion<false>(ToVoidPtr(region->Begin()), visitor); in IterateOverRefsInMemRange() 1414 [&memRanges](const Region *region) { memRanges.emplace_back(region->Begin(), region->End()); }); in CollectVerificationInfo() 1429 aliveMemRange.emplace_back(region->Begin(), region->End()); in VerifyCollectAndMove() 2375 cardTable->MarkCardsAsYoung(MemRange(region->Begin(), region->End())); in RestoreYoungCards()
|
/arkcompiler/ets_runtime/ecmascript/ |
H A D | builtin_entries.h | 95 uintptr_t Begin() in Begin() function
|
H A D | js_thread.cpp | 359 Root::ROOT_VM, ObjectSlot(glueData_.builtinEntries_.Begin()), ObjectSlot(glueData_.builtinEntries_.End())); in Iterate()
|
/arkcompiler/runtime_core/static_core/libpandafile/ |
H A D | file.cpp | 391 static ClassIdxIterator Begin(const File &file, const Span<const uint32_t> &span) in Begin() function in ark::panda_file::ClassIdxIterator 591 auto it = std::lower_bound(ClassIdxIterator::Begin(*this, classIdx), ClassIdxIterator::End(*this, classIdx), in GetClassId()
|
/arkcompiler/runtime_core/libpandafile/ |
H A D | file.cpp | 450 static ClassIdxIterator Begin(const File &file, const Span<const uint32_t> &span) in Begin() function in panda::panda_file::ClassIdxIterator 727 auto it = std::lower_bound(ClassIdxIterator::Begin(*this, class_idx), ClassIdxIterator::End(*this, class_idx), in GetClassId()
|
/arkcompiler/runtime_core/static_core/runtime/tests/ |
H A D | region_allocator_test.cpp | 360 ASSERT_EQ(region1->Top() - region1->Begin(), 3U * DEFAULT_ALIGNMENT_IN_BYTES); in TEST_F()
|
H A D | g1gc_test.cpp | 1332 if (region->Begin() <= ToUintPtr(nonmovableObj) && ToUintPtr(nonmovableObj) < region->End()) { in TEST_F()
|