Home
last modified time | relevance | path

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

12345678910>>...14

/arkcompiler/ets_frontend/ets2panda/test/ast/compiler/ets/
Dimplicit_cast_boxed_expressions.ets75 …// short_byte = testShort; // Short -> Byte is not available according 6.5.2 widening table and …
81 …// short_char = testShort; // Short -> Char is not available according 6.5.2 widening table and …
91 // } // is not available according 6.5.2 widening table and CTE happens
115 …// char_byte = testChar; // Char -> Byte is not available according 6.5.2 widening table and CTE…
116 …// char_short = testChar; // Char -> Short is not available according 6.5.2 widening table and CT…
162 …// int_byte = testInt; // Int -> Byte is not available according 6.5.2 widening table and CTE ha…
163 …// int_short = testInt; // Int -> Short is not available according 6.5.2 widening table and CTE h…
168 …// int_char = testInt; // Int -> Char is not available according 6.5.2 widening table and CTE ha…
177 // } is not available according 6.5.2 widening table and CTE happens
201 …// long_byte = testLong; // Long -> Byte is not available according 6.5.2 widening table and CTE…
[all …]
Dmethod-resolution-class-and-interface-in-signatures_4.ets39 /* @@? 34:22 Error TypeError: Call to `foo` is ambiguous as `2` versions of `foo` are available: `f…
40 /* @@? 34:22 Error TypeError: Call to `foo` is ambiguous as `2` versions of `foo` are available: `f…
/arkcompiler/ets_frontend/ets2panda/test/runtime/ets/
Dimplicit_cast_boxed_expressions.ets75 …// short_byte = testShort; // Short -> Byte is not available according 6.5.2 widening table and …
81 …// short_char = testShort; // Short -> Char is not available according 6.5.2 widening table and …
91 // } // is not available according 6.5.2 widening table and CTE happens
115 …// char_byte = testChar; // Char -> Byte is not available according 6.5.2 widening table and CTE…
116 …// char_short = testChar; // Char -> Short is not available according 6.5.2 widening table and CT…
162 …// int_byte = testInt; // Int -> Byte is not available according 6.5.2 widening table and CTE ha…
163 …// int_short = testInt; // Int -> Short is not available according 6.5.2 widening table and CTE h…
168 …// int_char = testInt; // Int -> Char is not available according 6.5.2 widening table and CTE ha…
177 // } is not available according 6.5.2 widening table and CTE happens
201 …// long_byte = testLong; // Long -> Byte is not available according 6.5.2 widening table and CTE…
[all …]
/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/ets_frontend/ets2panda/linter/test/main/
Dindexable_type_element_access.ets23 getClass[0] = getClass; // Error - no $_set function available
29 setClass = setClass[0]; // Error - no $_get function available
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/17.experimental_features/06.callable_types/
Dct.params.yaml27 // CTE if both invoke and instantiate are available
40 // CTE if both invoke and instantiate are available
53 // CTE if both invoke and instantiate are available
/arkcompiler/ets_frontend/ets2panda/test/ast/parser/ets/
Dambiguous_call_2.ets30 /* @@? 27:5 Error TypeError: Call to `goo` is ambiguous as `2` versions of `goo` are available: `go…
31 /* @@? 27:5 Error TypeError: Call to `goo` is ambiguous as `2` versions of `goo` are available: `go…
/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/01.type_arguments/type_arguments_of_parameterized_declarations/
Dclass_variance_neg2.ets21 …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.ets21 …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.ets21 …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/ets_frontend/es2panda/test/parser/ts/
Dtest-class-auto-accessor-7-expected.txt1 SyntaxError: Decorators are not available for auto accessor property now. [test-class-auto-accessor…
Dtest_this_type2-expected.txt1 SyntaxError: A 'this' type is available only in a non-static member of a class or interface. [test_…
Dtest_this_type1-expected.txt1 SyntaxError: A 'this' type is available only in a non-static member of a class or interface. [test_…
/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/runtime_core/static_core/plugins/ets/stdlib/std/containers/
DBlockingQueue.ets40 …* The insert operation​. Return true upon success and false if no space is currently available,​ n…
44 * @returns T True upon success and false if no space is currently available.
/arkcompiler/ets_frontend/ets2panda/util/diagnostic/
Dfatal.yaml53 … of sourcefile, set the '--extension' option or change the file extension (available options: ets)"
85 message: "Not an available source path: {}"

12345678910>>...14