Home
last modified time | relevance | path

Searched full:than (Results 1 – 25 of 218) sorted by relevance

123456789

/arkcompiler/runtime_core/tests/checked/
Dcompare_lenarray_with_zero.pa14 #! CHECKER Check if LenArray is not less than zero is eliminated
41 #! CHECKER Check if LenArray is greater than zero is not eliminated
/arkcompiler/runtime_core/compiler/optimizer/optimizations/
Dbalance_expressions.h94 // Calculates the lowest integral power of two that is greater than `val`
121 // If x is not 0 or 1, calculates the largest integral power of two that is less than `val`
122 // Same as std::bit_floor() introduced in C++20, except that return strictly less than `val`
/arkcompiler/ets_runtime/ecmascript/compiler/
Dcircuit_ir_specification.md65 …S_STRING>, b:<JS_ARRAY>)`), thus the secondary types will be more precise than initially set at th…
380 …* `0010` `UGT`: interprets the operands as unsigned values and yields true if op1 is greater than
381 …* `0011` `UGE`: interprets the operands as unsigned values and yields true if op1 is greater than
382 …* `0100` `ULT`: interprets the operands as unsigned values and yields true if op1 is less than op2.
383 …* `0101` `ULE`: interprets the operands as unsigned values and yields true if op1 is less than or …
385 …* `1010` `SGT`: interprets the operands as signed values and yields true if op1 is greater than op…
386 …* `1011` `SGE`: interprets the operands as signed values and yields true if op1 is greater than or…
387 * `1100` `SLT`: interprets the operands as signed values and yields true if op1 is less than op2.
388 …* `1101` `SLE`: interprets the operands as signed values and yields true if op1 is less than or eq…
406 * `0010` `OGT`: ordered and greater than
[all …]
/arkcompiler/ets_runtime/ecmascript/builtins/
Dbuiltins_global.cpp221 // i. If the code unit value of C is not less than 0xDC00 and not greater than 0xDFFF, in Encode()
228 // ii. If the code unit value of C is less than 0xD800 or greater than 0xDBFF, then in Encode()
234 … // 4. If kChar is less than 0xDC00 or greater than 0xDFFF, throw a URIError exception. in Encode()
334 // ii. If k + 2 is greater than or equal to strLen, throw a URIError exception. in Decode()
390 if (n > 4) // 4 : 4 means less than 4 in Decode()
393 // 2. If n equals 1 or n is greater than 4, throw a URIError exception. in Decode()
394 if ((n == 1) || (n > 4)) { // 4: means greater than 4 in Decode()
401 … // 5. If k + (3 × (n – 1)) is greater than or equal to strLen, throw a URIError exception. in Decode()
/arkcompiler/runtime_core/docs/
Ddesign-of-interpreter.md33 1. Bytecode should allow the interpreter to run no slower than state of the art interpreters.
106 operating by 9% faster than `gzip`.
116 1. Interpreter should run no slower than state of the art interpreters.
132 1. Interpreters are by nature slower than native code execution. Slowdown can be explained by:
181 redundant memory consumption is cheaper than ongoing runtime penalties on garbage collector
Ddebugger-vscode-communication.md17 * Client runs a server than waiting for a TCP socket
/arkcompiler/ets_runtime/ecmascript/base/tests/
Dnumber_helper_test.cpp293 // more than INT_MAX in HWTEST_F_L0()
295 // less than INT_MIN in HWTEST_F_L0()
378 …* of number based on ten is less than zero and radix Digit is more than zero or it is gr…
379 …* and radix Digit is less than MAX_EXPONENT_DIGIT call the DoubleToFixed function.other …
415 …* of number based on ten is less than zero and radix Digit is more than zero or it is gr…
416 …* and radix Digit is less than MAX_EXPONENT_DIGIT call the DoubleToFixed function.other …
/arkcompiler/ets_runtime/ecmascript/
Djs_map.cpp71 …ASSERT_PRINT(entry >= 0 && entry < GetSize(), "entry must be non-negative integer less than capaci… in GetKey()
77 …ASSERT_PRINT(entry >= 0 && entry < GetSize(), "entry must be non-negative integer less than capaci… in GetValue()
Dtagged_hash_table.h66 // if deleted entries are more than half of the free entries, rehash to clear holes.
89 ASSERT_PRINT((entriesCount > 0), "the size must be greater than zero"); in Create()
132 // When the filled entries is greater than a quart of currentSize in RecalculateTableSize()
139 ASSERT_PRINT(newSize > atLeastSize, "new size must greater than atLeastSize"); in RecalculateTableSize()
140 // Don't go lower than room for MIN_SHRINK_SIZE elements. in RecalculateTableSize()
/arkcompiler/ets_runtime/ecmascript/shared_mm/
Dshared_mm.cpp78 LOG_ECMA_MEM(FATAL) << "size must have a size bigger than 0"; in AllocateBuffer()
82 LOG_ECMA_MEM(FATAL) << "size must be less than the maximum"; in AllocateBuffer()
/arkcompiler/runtime_core/compiler/docs/
Dbalance_expressions_doc.md38 - Else calculate `split_idx` so that `split_idx` is strictly less than `last_idx` and size of `firs…
105 // As soon as v10 has more than one users it has side-effects, so the algorithm considers it as a t…
128 // As soon as v10 has more than one users it has side-effects, so the algorithm considers it as a t…
Dinterface_inline_cache.md104 1. `Interface Inline Cache` will reduce `RESOLVE_VIRTUAL_CALL_AOT` calls by more than 90%
105 2. benchmark test case: ImtConflicts100 -- runing time will accelerate by more than 300%
Dif_conversion_doc.md58 5. The number of instructions in `JBB`(and `JBB 2` for Diamond) less than the limit(set by the opti…
59 …fferent inputs from corresponding predecessor blocks, should also be less than the limit(each of t…
/arkcompiler/ets_runtime/ecmascript/mem/
Dnative_area_allocator.cpp26 LOG_ECMA_MEM(FATAL) << "capacity must have a size not less than sizeof Area."; in AllocateArea()
94 LOG_ECMA_MEM(FATAL) << "size must have a size bigger than 0"; in AllocateBuffer()
Dnative_area_allocator.h108 LOG_ECMA_MEM(FATAL) << "size must have a size bigger than 0"; in Allocate()
125 LOG_ECMA_MEM(FATAL) << "capacity must have a size not less than sizeof Area."; in AllocateSpace()
/arkcompiler/ets_frontend/test262/
Des5_tests.txt154 language/expressions/greater-than/bigint-and-bigint.js
155 language/expressions/greater-than/bigint-and-boolean.js
156 language/expressions/greater-than/bigint-and-incomparable-string.js
157 language/expressions/greater-than/bigint-and-non-finite.js
158 language/expressions/greater-than/bigint-and-number-extremes.js
159 language/expressions/greater-than/bigint-and-number.js
160 language/expressions/greater-than/bigint-and-string.js
161 language/expressions/greater-than/bigint-and-symbol.js
162 language/expressions/greater-than-or-equal/bigint-and-bigint.js
163 language/expressions/greater-than-or-equal/bigint-and-incomparable-string.js
[all …]
/arkcompiler/runtime_core/runtime/
Dimtable_builder.cpp35 // (1) as interface methods number when it's smaller than fixed IMTABLE_SIZE in Build()
37 …// (3) as 0 when it's much more bigger than fixed IMTABLE_SIZE, since conflict probability is high… in Build()
/arkcompiler/ets_runtime/ecmascript/js_api/
Djs_api_tree_map.cpp55 ASSERT_PRINT(entry < GetSize(), "entry must less than capacity"); in GetKey()
62 ASSERT_PRINT(entry < GetSize(), "entry must less than capacity"); in GetValue()
/arkcompiler/runtime_core/cross_values/
Ddiff_check_values.sh15 # At the moment, the script is nothing more than `diff` execution.
/arkcompiler/runtime_core/bytecode_optimizer/tests/benchmark/
Dcompare.py58 de_optimized_files = 0 # code_item section is bigger than baseline
113 \n Files that are bigger than baseline: {:d}\
/arkcompiler/runtime_core/verification/util/
Dpanda_or_std.h39 // much simpler than trying to reproduce the full API
/arkcompiler/runtime_core/tests/cts-generator/cts-template/
Df32toi64.yaml118 …description: If converted integer is less than minimal value for destination type, the result is m…
141 …description: If converted integer is greater than maximum value for destination type, the result i…
Df64tou32.yaml112 …description: If converted integer is less than minimal value for destination type, the result is m…
135 …description: If converted integer is greater than maximum value for destination type, the result i…
Df64tou64.yaml115 …description: If converted integer is less than minimal value for destination type, the result is m…
141 …description: If converted integer is greater than maximum value for destination type, the result i…
Df32tou32.yaml100 …description: If converted integer is less than minimal value for destination type, the result is m…
123 …description: If converted integer is greater than maximum value for destination type, the result i…

123456789