| /arkcompiler/ets_runtime/ecmascript/ic/tests/ |
| D | ic_compareop_test.cpp | 349 JSTaggedValue resInSlowPath1 = SlowRuntimeStub::Greater(thread, arg1Handle.GetTaggedValue(), in HWTEST_F_L0() 351 JSTaggedValue resInSlowPath2 = SlowRuntimeStub::Greater(thread, Str1.GetTaggedValue(), in HWTEST_F_L0() 353 JSTaggedValue resInSlowPath3 = SlowRuntimeStub::Greater(thread, Str1.GetTaggedValue(), in HWTEST_F_L0() 355 JSTaggedValue resInSlowPath4 = SlowRuntimeStub::Greater(thread, Str1.GetTaggedValue(), in HWTEST_F_L0() 357 JSTaggedValue resInSlowPath5 = SlowRuntimeStub::Greater(thread, arg1Handle.GetTaggedValue(), in HWTEST_F_L0() 359 JSTaggedValue resInSlowPath9 = SlowRuntimeStub::Greater(thread, JSTaggedValue::Undefined(), in HWTEST_F_L0() 361 JSTaggedValue resInSlowPath10 = SlowRuntimeStub::Greater(thread, JSTaggedValue::Undefined(), in HWTEST_F_L0()
|
| /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() 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()
|
| D | builtins_date_time_format.cpp | 269 // 7. If x is greater than y, throw a RangeError exception. in FormatRange() 271 THROW_RANGE_ERROR_AND_RETURN(thread, "x is greater than y", JSTaggedValue::Exception()); in FormatRange() 315 // 7. If x is greater than y, throw a RangeError exception. in FormatRangeToParts() 317 THROW_RANGE_ERROR_AND_RETURN(thread, "x is greater than y", JSTaggedValue::Exception()); in FormatRangeToParts()
|
| /arkcompiler/runtime_core/tests/checked/ |
| D | compare_lenarray_with_zero.pa | 41 #! CHECKER Check if LenArray is greater than zero is not eliminated
|
| /arkcompiler/ets_runtime/ecmascript/compiler/ |
| D | operations_stub_builder.h | 41 GateRef Greater(GateRef glue, GateRef left, GateRef right);
|
| D | common_stubs.h | 33 V(Greater) \
|
| D | circuit_ir_specification.md | 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 … 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… 406 * `0010` `OGT`: ordered and greater than 407 * `0011` `OGE`: ordered and greater than or equal 414 * `1010` `UGT`: unordered or greater than 415 * `1011` `UGE`: unordered or greater than or equal
|
| /arkcompiler/runtime_core/runtime/ |
| D | compiler_queue_aged_counter_priority.h | 57 // For greater values just use preset 0 in UpdateCounterAndCheck()
|
| /arkcompiler/runtime_core/libpandabase/utils/ |
| D | regmask.h | 51 * Currently we don't support registers number greater than 32. 59 // We don't support architectures with CPU registers number, greater than 32.
|
| D | math_helpers.h | 61 * returns an integer power of two but not greater than value.
|
| /arkcompiler/ets_runtime/ecmascript/ |
| D | tagged_hash_table.h | 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()
|
| /arkcompiler/runtime_core/libpandafile/tests/ |
| D | bytecode_emitter_tests.cpp | 128 // emitter estimate length of jmp by 3 greater the it is actually 192 // emitter estimate length of jmp by 3 greater the it is actually 214 // emitter estimate length of jmp by 3 greater the it is actually 401 // emitter estimate length of jmp by 3 greater the it is actually
|
| /arkcompiler/runtime_core/compiler/optimizer/code_generator/ |
| D | operands.h | 865 GT, // greater 866 GE, // greater than or equal 870 HI, // greater 871 HS, // greater than or equal
|
| /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/ets_frontend/ts2panda/tests/expression/ |
| D | cmpBinary.test.ts | 23 Greater, 90 new Greater(new Imm(0), lhs),
|
| /arkcompiler/runtime_core/compiler/optimizer/optimizations/ |
| D | balance_expressions.h | 94 // Calculates the lowest integral power of two that is greater than `val`
|
| /arkcompiler/runtime_core/runtime/tooling/inspector/ |
| D | inspector.cpp | 86 // the last such entry for which the bytecode offset is not greater than in HandlePendingPause()
|
| /arkcompiler/ets_runtime/ecmascript/base/ |
| D | bit_helper.h | 155 // The use of security functions 'memcpy_s' here will have a greater impact on performance in bit_cast()
|
| /arkcompiler/runtime_core/tests/cts-generator/cts-template/ |
| D | f32toi64.yaml | 141 …description: If converted integer is greater than maximum value for destination type, the result i…
|
| D | f64tou32.yaml | 135 …description: If converted integer is greater than maximum value for destination type, the result i…
|
| D | f64tou64.yaml | 141 …description: If converted integer is greater than maximum value for destination type, the result i…
|
| D | f32tou32.yaml | 123 …description: If converted integer is greater than maximum value for destination type, the result i…
|
| D | f32tou64.yaml | 138 …description: If converted integer is greater than maximum value for destination type, the result i…
|
| D | ucmp.yaml | 96 # test - check greater than
|
| D | f32toi32.yaml | 149 …description: If converted integer is greater than maximum value for destination type, the result i…
|