| /arkcompiler/runtime_core/tests/checked/ |
| D | compare_lenarray_with_zero.pa | 14 #! 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/ |
| D | balance_expressions.h | 94 // 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/ |
| D | circuit_ir_specification.md | 65 …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/ |
| D | builtins_global.cpp | 221 // 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/ |
| D | design-of-interpreter.md | 33 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
|
| D | debugger-vscode-communication.md | 17 * Client runs a server than waiting for a TCP socket
|
| /arkcompiler/ets_runtime/ecmascript/base/tests/ |
| D | number_helper_test.cpp | 293 // 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/ |
| D | js_map.cpp | 71 …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()
|
| D | tagged_hash_table.h | 66 // 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/ |
| D | shared_mm.cpp | 78 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/ |
| D | balance_expressions_doc.md | 38 - 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…
|
| D | interface_inline_cache.md | 104 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%
|
| D | if_conversion_doc.md | 58 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/ |
| D | native_area_allocator.cpp | 26 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()
|
| D | native_area_allocator.h | 108 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/ |
| D | es5_tests.txt | 154 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/ |
| D | imtable_builder.cpp | 35 // (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/ |
| D | js_api_tree_map.cpp | 55 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/ |
| D | diff_check_values.sh | 15 # At the moment, the script is nothing more than `diff` execution.
|
| /arkcompiler/runtime_core/bytecode_optimizer/tests/benchmark/ |
| D | compare.py | 58 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/ |
| D | panda_or_std.h | 39 // much simpler than trying to reproduce the full API
|
| /arkcompiler/runtime_core/tests/cts-generator/cts-template/ |
| D | f32toi64.yaml | 118 …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…
|
| D | f64tou32.yaml | 112 …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…
|
| D | f64tou64.yaml | 115 …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…
|
| D | f32tou32.yaml | 100 …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…
|