Home
last modified time | relevance | path

Searched full:available (Results 1 – 25 of 273) sorted by relevance

1234567891011

/arkcompiler/ets_runtime/ecmascript/mem/
Dfree_object_set.cpp85 if (freeObject_->Available() >= size) { in ObtainSmallFreeObject()
89 available_ -= curFreeObject->Available(); in ObtainSmallFreeObject()
91 ASAN_UNPOISON_MEMORY_REGION(curFreeObject, curFreeObject->Available()); in ObtainSmallFreeObject()
109 if (curFreeObject->Available() >= size) { in ObtainLargeFreeObject()
117 available_ -= curFreeObject->Available(); in ObtainLargeFreeObject()
118 ASAN_UNPOISON_MEMORY_REGION(curFreeObject, curFreeObject->Available()); in ObtainLargeFreeObject()
127 …// When looking up suitable freeobject fails, available free size should update to a value less th… in ObtainLargeFreeObject()
140 if (freeObject_->Available() >= size) { in LookupSmallFreeObject()
160 if (curFreeObject->Available() >= size) { in LookupLargeFreeObject()
Dtlab_allocator-inl.h39 if (youngAllocator_.Available() != 0) { in Finalize()
40 FreeObject::FillFreeObject(heap_, youngAllocator_.GetTop(), youngAllocator_.Available()); in Finalize()
115 if (youngAllocator_.Available() != 0) { in ExpandYoung()
116 … FreeObject::FillFreeObject(heap_, youngAllocator_.GetTop(), youngAllocator_.Available()); in ExpandYoung()
125 if (youngAllocator_.Available() != 0) { in ExpandYoung()
126 … FreeObject::FillFreeObject(heap_, youngAllocator_.GetTop(), youngAllocator_.Available()); in ExpandYoung()
Dthread_local_allocation_buffer.h42 size_t Available() const in Available() function
44 return bpAllocator_.Available(); in Available()
77 if (bpAllocator_.Available() >= tlabWasteLimit_) { in NeedNewTlab()
Dallocator-inl.h132 if (remainSize <= bpAllocator_.Available()) { in Allocate()
147 auto size = bpAllocator_.Available(); in FreeBumpPoint()
158 size_t size = bpAllocator_.Available(); in FillBumpPointer()
253 return freeList_->GetFreeObjectSize() + bpAllocator_.Available(); in GetAvailableSize()
/arkcompiler/ets_runtime/test/aotjsperftest/
Drun_js_perf_test.sh68 check_command_exist git || { echo "git is not available"; return $ret_error; }
69 check_command_exist unzip || { echo "unzip is not available"; return $ret_error; }
70 check_command_exist jq || { echo "jq is not available"; return $ret_error; }
71 check_command_exist python3 || { echo "python3 is not available"; return $ret_error; }
/arkcompiler/ets_runtime/ecmascript/
Dfree_object.h38 return Available() == 0; in IsEmpty()
48 return reinterpret_cast<uintptr_t>(this) + Available(); in GetEnd()
58 uint32_t Available() const;
/arkcompiler/runtime_core/tests/checked/
Dbasics_aot.pa15 …itten in pure PandaAssembly i.e. some features are not available e.g. inheritance (it is available
Dinline_external.pa15 …itten in pure PandaAssembly i.e. some features are not available e.g. inheritance (it is available
/arkcompiler/runtime_core/static_core/docs/
Dtask_manager.md47 1. Getting available `WorkerThread` from the pool of available worker threads
48 1. Returning `WorkerThread` back to the pool of available worker threads
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/05.generics/02.generic_instantiations/02.type_arguments/type_arguments_of_parameterized_declarations/
Dclass_variance_neg2.sts21 …It restricts available methods so it is only allowed to access methods that do not use T or do use…
24 …It restricts available methods so it is only allowed to access methods that do not use T or do use…
Dclass_variance.sts21 …It restricts available methods so it is only allowed to access methods that do not use T or do use…
24 …It restricts available methods so it is only allowed to access methods that do not use T or do use…
Dinterface_variance.sts21 …It restricts available methods so it is only allowed to access methods that do not use T or do use…
24 …It restricts available methods so it is only allowed to access methods that do not use T or do use…
Dinterface_variance_2.sts21 …It restricts available methods so it is only allowed to access methods that do not use T or do use…
24 …It restricts available methods so it is only allowed to access methods that do not use T or do use…
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/regalloc/
Dreg_map.h27 …* Since the set of available codegen's registers can be sparse, we create local regalloc registers…
32 * - there are 3 available registers: r16, r18, r20;
/arkcompiler/runtime_core/compiler/optimizer/optimizations/regalloc/
Dreg_map.h27 …* Since the set of available codegen's registers can be sparse, we create local regalloc registers…
32 * - there are 3 available registers: r16, r18, r20;
/arkcompiler/ets_frontend/es2panda/test/parser/ts/
Dtest_this_type1-expected.txt1 SyntaxError: A 'this' type is available only in a non-static member of a class or interface. [test_…
Dtest_this_type2-expected.txt1 SyntaxError: A 'this' type is available only in a non-static member of a class or interface. [test_…
Dtest-class-auto-accessor-7-expected.txt1 SyntaxError: Decorators are not available for auto accessor property now. [test-class-auto-accessor…
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_bigint.h25 …u::BuiltinsStubCSigns::stubIndex refers to the builtin stub index, or INVALID if no stub available.
34 …u::BuiltinsStubCSigns::stubIndex refers to the builtin stub index, or INVALID if no stub available.
/arkcompiler/ets_frontend/ets2panda/test/ast/parser/ts/
Dtest_this_type1.ts18 /* @@? 17:8 Error SyntaxError: A 'this' type is available only in a non-static member of a class or…
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/13.compilation_units_packages_and_modules/09.export_directives/04.re-export_directive/
Dre-export_all_by_old_names.sts17 desc: Re-export directive, old names also should be available
Dre-export_all.sts17 desc: Re-export directive, all names should be available
/arkcompiler/ets_frontend/ets2panda/test/ast/parser/ets/
Dthis_type_function_parameter_invalid.sts18 /* @@? 16:31 Error SyntaxError: A 'this' type is available only as return type in a non-static meth…
Dthis_type_class_field_invalid.sts21 /* @@? 18:13 Error SyntaxError: A 'this' type is available only as return type in a non-static meth…
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/13.compilation_units_packages_and_modules/09.export_directives/03.export_type_directive/
Dnegative_export_as_by_old_name.sts17 desc: Export type directive, ClassA is exported as ClassB, therefore is not available

1234567891011