Home
last modified time | relevance | path

Searched full:middle (Results 1 – 25 of 54) sorted by relevance

123

/arkcompiler/runtime_core/static_core/plugins/ets/templates/stdlib/
DArray_builtin_algorithms.sts.j258 let middle: int = left + half;
60 if (arr[middle] < key) {
61 left = middle + 1;
111 let middle: int = left + half;
113 if (arr[middle] <= key) {
114 left = middle + 1;
164 let middle: int = left + half;
166 if (arr[middle] == false && key == true) {
167 left = middle + 1;
217 let middle: int = left + half;
[all …]
DArray_escompat.erb452 // this: [left middle right], we must replace middle with `items`
476 // insert middle part
/arkcompiler/runtime_core/static_core/plugins/ets/stdlib/std/core/
DBuiltinArrayAlgorithms.sts54 let middle: int = left + half;
56 if (arr[middle] == false && key == true) {
57 left = middle + 1;
107 let middle: int = left + half;
109 if (arr[middle] == false && key == true || arr[middle] == key) {
110 left = middle + 1;
220 let middle: int = left + half;
222 if (arr[middle] < key) {
223 left = middle + 1;
273 let middle: int = left + half;
[all …]
/arkcompiler/runtime_core/static_core/libpandabase/os/
Dcpu_affinity.h94 enum CpuPower : uint8_t { BEST = 1U, MIDDLE = 1U << 1U, WEAK = 1U << 2U, ANY = 0U, ALL = BEST | MID… enumerator
146 /// @return const reference on best + middle cpu-set in system
/arkcompiler/ets_frontend/es2panda/lexer/
DkeywordsUtil.cpp268 int middle = end / 2; in ScanIdContinueMaybeKeyword() local
271 const auto &kws = map[middle]; in ScanIdContinueMaybeKeyword()
279 start = middle + 1; in ScanIdContinueMaybeKeyword()
281 end = middle; in ScanIdContinueMaybeKeyword()
284 middle = (start + end) / 2; in ScanIdContinueMaybeKeyword()
/arkcompiler/ets_frontend/ets2panda/lexer/
DkeywordsUtil.cpp264 size_t middle = end / 2; in ScanIdContinueMaybeKeyword() local
267 const auto &kw = map[middle]; in ScanIdContinueMaybeKeyword()
276 start = middle + 1; in ScanIdContinueMaybeKeyword()
278 end = middle; in ScanIdContinueMaybeKeyword()
281 middle = (start + end) / 2U; in ScanIdContinueMaybeKeyword()
/arkcompiler/ets_runtime/test/perform/string/
Dexpect_output.txt32 string replace into string.replace searchtag in the middle of the input parameter : 59
Dstring.js229 …print("string replace into string.replace searchtag in the middle of the input parameter : " + tim…
/arkcompiler/runtime_core/static_core/compiler/optimizer/code_generator/
Dmethod_properties.cpp26 // Calls may be in the middle of method in MethodProperties()
/arkcompiler/ets_frontend/test262/
Dignored-test262-fastverify-x64-aot-pgo.txt47 test262/data/test_es2021/language/expressions/template-literal/middle-list-many-expr-primitive.js
/arkcompiler/ets_frontend/test/scripts/utils/commit_message/
Dresult.py76 vertical-align: middle;
/arkcompiler/ets_runtime/tools/ap_file_viewer/src/ap/component/search/
DSearch.html.js39 vertical-align:middle;
/arkcompiler/ets_runtime/ecmascript/shared_objects/
Djs_shared_array.cpp522 int32_t middle = (left + right) / 2; in IncludeInSortedValue() local
523 JSHandle<JSTaggedValue> vv = JSSharedArray::FastGetPropertyByValue(thread, obj, middle); in IncludeInSortedValue()
528 left = middle + 1; in IncludeInSortedValue()
530 right = middle - 1; in IncludeInSortedValue()
/arkcompiler/ets_runtime/tools/ap_file_viewer/src/ap/
DApApplicationPublicFunc.js93 vertical-align:middle;
/arkcompiler/ets_runtime/ecmascript/
Djs_array.cpp685 int32_t middle = (left + right) / 2; in IncludeInSortedValue() local
686 JSHandle<JSTaggedValue> vv = JSArray::FastGetPropertyByValue(thread, obj, middle); in IncludeInSortedValue()
691 left = middle + 1; in IncludeInSortedValue()
693 right = middle - 1; in IncludeInSortedValue()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/mempool/include/
Dmempool.h94 // memory middle end
/arkcompiler/runtime_core/static_core/platforms/unix/libpandabase/
Dcpu_affinity.cpp272 if ((powerFlags & CpuPower::MIDDLE) != 0) { in SetAffinityForThread()
/arkcompiler/runtime_core/static_core/runtime/mem/gc/
Dgc.h649 /// Set GC Threads on best and middle cores before GC
652 /// Set GC Threads on best and middle cores after concurrent phase
Dgc.cpp230 // Try to use best + middle for preventing issues when best core is used in another thread, in SetupCpuAffinity()
232 …(!os::CpuAffinityManager::SetAffinityForCurrentThread(os::CpuPower::BEST | os::CpuPower::MIDDLE)) { in SetupCpuAffinity()
246 os::CpuAffinityManager::SetAffinityForCurrentThread(os::CpuPower::BEST | os::CpuPower::MIDDLE); in SetupCpuAffinityAfterConcurrent()
/arkcompiler/runtime_core/static_core/runtime/include/mem/
Dallocator.h630 …locator = RunSlotsAllocator<ObjectAllocConfig>; // Allocator used for middle size allocations
804 …RunSlotsAllocator<ObjectAllocConfigWithCrossingMap>; // Allocator used for middle size allocations
/arkcompiler/runtime_core/static_core/patches/asmjit/
D0002-Add-Panda-Allocator.patch151 // Since cur can be in the middle of the double-linked list, we have to
/arkcompiler/runtime_core/static_core/runtime/tests/
Dallocator_test_base.h129 // Set middle part of memory in SetBytesFromByteArray()
158 // Compare middle part of memory in CompareBytesWithByteArray()
304 * and one in the middle; call iteration over free pools
/arkcompiler/ets_frontend/ets2panda/compiler/lowering/ets/
DdefaultParameterLowering.cpp360 // middle of walking through it in Perform()
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/src/be/
Dswitch_lowerer.cpp310 * add or subtract lowestTag divide 2 to get middle tag. in BuildCodeForSwitchItems()
/arkcompiler/runtime_core/static_core/verification/
Dmessages.yaml581 Invalid jump into middle of instruction.

123