Home
last modified time | relevance | path

Searched refs:lower (Results 1 – 25 of 69) sorted by relevance

123

/arkcompiler/runtime_core/static_core/plugins/ets/tests/stdlib-templates/regression/
D12581_box_type_array.ets35 let {{.item.box_type|lower}}Array = arrayProvider.getBoxObjectArray();
38 if ({{.item.box_type|lower}}Array.length != ARRAY_SIZE) return 1;
39 for (let i = 0; i< {{.item.box_type|lower}}Array.length; i++) {
40 if ({{.item.box_type|lower}}Array[i] instanceof {{.item.box_type|capitalize}}) return 1;
43 {{.item.box_type|lower}}Array[i] = new {{.item.box_type}}(inputData[i]);
46 if ({{.item.box_type|lower}}Array[i] != expectedData[i]) return 1;
/arkcompiler/runtime_core/static_core/plugins/ets/templates/stdlib/
Dsearch.ets.j218 // (lower|upper)BoundSearch([1, 1, 2, 2, 2, 3, 3], 2, 0, 7)
22 // lower bound
26 * tries to find a lower bound of a key in sorted arr.
28 …t element, where (element < key) is false. If no such element is found than lower bound is endIndex
30 …* @param arr array to find a lower bound of a key. Has to be sorted, otherwise the answer is imple…
32 * @param key a value to find lower bound of
64 * tries to find a lower bound of a key in sorted arr.
66 …element, where (element < key) is false. If no such element is found than lower bound is arr.length
68 …* @param arr array to find a lower bound of a key. Has to be sorted, otherwise the answer is imple…
70 * @param key a value to find lower bound of
[all …]
/arkcompiler/ets_runtime/ecmascript/compiler/
Darray_bounds_check_elimination.cpp41 ArrayBoundsCheckElimination::Bound::Bound(int lower, GateRef lowerGate, int upper, GateRef upperGat… in Bound() argument
43 lower_ = lower; in Bound()
225 int lower = bound->Lower(); in DoBinaryArithmeticOp() local
227 int newLower = lower + constValue; in DoBinaryArithmeticOp()
229 bool overflow = ((constValue < 0 && (newLower > lower)) || in DoBinaryArithmeticOp()
268 int lower = bound->Lower(); in DoUnaryArithmeticOp() local
270 int newLower = lower + constValue; in DoUnaryArithmeticOp()
272 bool overflow = ((constValue < 0 && (newLower > lower)) || in DoUnaryArithmeticOp()
595 bool ArrayBoundsCheckElimination::CheckLoop(GateRef array, GateRef lowerGate, int lower, GateRef up… in CheckLoop() argument
603 if (lower >= 0) { in CheckLoop()
[all …]
Darray_bounds_check_elimination.h41 Bound(int lower, GateRef lowerGate, int upper, GateRef upperGate);
130 bool CheckLoop(GateRef array, GateRef lowerGate, int lower, GateRef upperGate, int upper);
141 … void LoopInvariantMotionForIndexCheck(GateRef array, GateRef length, GateRef lowerGate, int lower,
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/
Dutils.py138 … if enum_value.value.lower() == item_name.lower() or str(enum_value).lower() == item_name.lower():
Dplugins_registry.py67 … [cls for cls in classes if cls.startswith("Runner") and cls.lower().endswith(plugin_name.lower())]
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/06.contexts_and_conversions/01.kinds_of_contexts/04.casting_contexts/
Dnarrowing_refs2.ets24 let d{{loop.index}}: {{t.dtype|lower}} = s{{loop.index}} as {{t.dtype|lower}};
Dunboxing.ets24 let d{{loop.index}}: {{t.type|lower}} = s{{loop.index}} as {{t.type|lower}};
/arkcompiler/ets_runtime/ecmascript/compiler/codegen/maple/maple_be/include/cg/aarch64/
Daarch64_cc.def21 CONDCODE(LO, 0x3) /* Unsigned lower (== CC) */
27 CONDCODE(LS, 0x9) /* unsigned lower or same */
/arkcompiler/runtime_core/static_core/plugins/ets/stdlib/std/core/
DChar.ets415 * isLowerCase(char) checks whether the char is a lower case letter.
419 * @returns true if the char is a lower case letter.
424 * isLowerCase() checks whether the underlying char is a lower case letter.
426 * @returns true if the char is a lower case letter.
433 …* toUpperCase(char) converts the char to upper case if it is in lower case, otherwise the char ret…
437 …* @returns if char is in lower case then an upper case of it is returned, otherwise the argument i…
442 …* toUpperCase() converts the underlying char to upper case if it is in lower case, otherwise the c…
449 …* toLowerCase(char) converts the char to lower case if it is in upper case, otherwise the char ret…
453 …* @returns if char is in lower case then an upper case of it is returned, otherwise the argument i…
458 …* toLowerCase() converts the underlying char to a lower case if it is in upper case, otherwise the…
/arkcompiler/ets_frontend/ets2panda/linter-4.2/test/
Dfunction_overload.ts39 const lower = xs.toLowerCase(); constant
/arkcompiler/ets_frontend/ets2panda/linter/test/
Dfunction_overload.ts39 const lower = xs.toLowerCase(); constant
/arkcompiler/runtime_core/static_core/compiler/optimizer/optimizations/
Dchecks_elimination.cpp967 …imination::TryInsertDeoptimizationForLargeStep(ConditionCode cc, Inst *resultLenArray, Inst *lower, in TryInsertDeoptimizationForLargeStep() argument
972 if (!lower->IsDominate(insertDeoptAfter)) { in TryInsertDeoptimizationForLargeStep()
973 if (lower->GetBasicBlock() == block) { in TryInsertDeoptimizationForLargeStep()
974 insertDeoptAfter = lower; in TryInsertDeoptimizationForLargeStep()
979 auto subValue = lower; in TryInsertDeoptimizationForLargeStep()
981 …subValue = GetGraph()->CreateInstAdd(DataType::INT32, INVALID_PC, lower, GetGraph()->FindOrCreateC… in TryInsertDeoptimizationForLargeStep()
1006 …auto [countable_loop_info, ss, lower, upper, cc, is_head_loop_exit, has_pre_header_compare] = loop… in TryInsertDeoptimization()
1011 auto lowerRange = bri->FindBoundsRange(header, lower); in TryInsertDeoptimization()
1021 bool insertLowerDeopt = lower->IsDominate(ss); in TryInsertDeoptimization()
1059 …} else if (!TryInsertDeoptimizationForLargeStep(cc, resultLenArray, lower, upper, maxAdd, insertDe… in TryInsertDeoptimization()
[all …]
/arkcompiler/runtime_core/static_core/tests/tests-u-runner/runner/options/
Ddecorator_value.py135 return cli_value.lower() == "true"
149 if isinstance(cli_value, str) and cli_value.lower() == "all":
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/28.assignment/02.compound_assignment_operators/
Dops_boxed.ets27 if ((v {{c.op}} q) as {{c.type.lower()}} != (v {{c.op}}= q)) {
/arkcompiler/ets_runtime/ecmascript/
Ddate_parse.h27 static bool IsBetween(int n, int lower, int hign) in IsBetween() argument
29 if (n < lower || n > hign) { in IsBetween()
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/02.evaluation_of_expressions/04.operator_precedence/
Dnull_coalescing.ets17 desc: null-coalescing operator with other lower precedence operators
Dinstanceof.ets17 desc: instanceof operator with other lower precedence operators
Dternary.ets17 desc: ternary operator with other lower precedence operators
/arkcompiler/ets_runtime/test/workloadtest/
Dwork_load.py45 if value.lower() in ('true', '1'):
47 elif value.lower() in ('false', '0'):
/arkcompiler/ets_runtime/test/jsperftest/
Drun_js_test.py94 main_key = '/'.join([elements[0], elements[1] + '.js', elements[2]]).lower()
279 main_key = '/'.join([js_file_name, scene]).lower()
325 key = js_case_name.lower()
571 main_key = '/'.join([js_case, scene]).lower()
610 key_str = '/'.join([js_case_name + '.js', scene]).lower()
/arkcompiler/runtime_core/static_core/libllvmbackend/transforms/
Dpipeline_irtoc.cfg16 lower-expect, # Lower expect intrinsic
116 lower-constant-intrinsics, # Lower constant intrinsics
/arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/05.generics/06.type_arguments/type_arguments_of_parameterized_declarations/
Dclass_variance_neg2.ets22 …Consequently, a contravariant type argument (or a wildcard with a lower bound) is signified by the…
Dclass_variance.ets22 …Consequently, a contravariant type argument (or a wildcard with a lower bound) is signified by the…
Dinterface_variance_neg2.ets22 …Consequently, a contravariant type argument (or a wildcard with a lower bound) is signified by the…

123