| /arkcompiler/ets_frontend/ets2panda/test/runtime/ets/ |
| D | BigInt1.sts | 18 assert new BigInt(256).operatorBitwiseAnd(new BigInt(1)) == (0n); 20 assert new BigInt(256).operatorBitwiseAnd(new BigInt(256)) == (256n); 26 assert new BigInt(256).operatorBitwiseOr(new BigInt(1)) == (257n); 27 assert new BigInt(256).operatorBitwiseOr(new BigInt(256)) == (256n); 34 assert new BigInt(256).operatorBitwiseXor(new BigInt(1)) == (257n); 35 assert new BigInt(256).operatorBitwiseXor(new BigInt(256)) == (0n);
|
| D | recordInitWithLambdaExpression.sts | 26 256: (param: Number):string => { return "8" } 35 assert(handlerMap.get(256)!(1) == "8")
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/stdlib-templates/std/core/ |
| D | list.std_core_stringbuilder_static.yaml | 36 …param_list: {"param1": "[256 as int, Int.MAX_VALUE as int, (-256) as int, 0 as int, Int.MIN_VALUE … 37 expected_test_data: '["256", "2147483647", "-256", "0", "-2147483648"]', 49 param_list: {"param1": "[256, Long.MAX_VALUE, (-256), 0, Long.MIN_VALUE]"}, 50 expected_test_data: '["256", "9223372036854775807", "-256", "0", "-9223372036854775808"]',
|
| D | list.std_core_stringbuilder_instance.yaml | 98 param_list: {"param1": "[256 as int, (-256) as int, 256 as int, (-256) as int]"}, 105 expected_test_data: '["256", "-256", "abcd256", "abcd-256"]',
|
| D | list.std_core_typeduarrays_function1.yaml | 25 abnormalData: "[-1, 256, 257, Byte.MIN_VALUE -2, Byte.MIN_VALUE -1, Byte.MAX_VALUE + 1]" 67 abnormalData: "[-1, 256, 257, Byte.MIN_VALUE -2, Byte.MIN_VALUE -1, Byte.MAX_VALUE + 1]"
|
| /arkcompiler/ets_runtime/test/aottest/exp/ |
| D | expect_output.txt | 14 256 18 256 19 256
|
| /arkcompiler/ets_runtime/test/aottest/builtins_number2/ |
| D | pgo_expect_output.txt | 22 256 true true 48 -256 true true 64 256 true true 90 -256 true true
|
| D | expect_output.txt | 22 256 true true 48 -256 true true 64 256 true true 90 -256 true true
|
| D | builtins_number2.ts | 24 256, // 2 ** 8 50 -256, // - ( 2 ** 8 )
|
| /arkcompiler/ets_runtime/ecmascript/ |
| D | ecma_param_configuration.h | 82 defaultReadOnlySpaceSize_ = 256_KB; in Initialize() 100 stepNativeSizeInc_ = 256_MB; in Initialize() 104 } else if (maxHeapSize_ < HIGH_MEMORY) { // 128_MB ~ 256_MB in Initialize() 107 defaultReadOnlySpaceSize_ = 256_KB; in Initialize() 125 stepNativeSizeInc_ = 256_MB; in Initialize() 129 } else { // 256_MB ~ 384_MB in Initialize() 132 defaultReadOnlySpaceSize_ = 256_KB; in Initialize() 306 static constexpr size_t HIGH_MEMORY = 256_MB;
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/01.evaluation_of_expressions/03.operator_precedence/ |
| D | postfix.sts | 79 if (res != 3 || t255 != 256 || t4 != 3) return 1; 90 if (res != 259 || t255 != 256 || t4 != 3) return 1; 101 if (res != 251 || t255 != 256 || t4 != 3) return 1; 112 if (res != -5 || t255 != 256 || t4 != 3) return 1; 123 if (res != 4080 || t255 != 256 || t4 != 3) return 1; 134 if (res != 15 || t255 != 256 || t4 != 3) return 1; 145 if (res != 268435440 || t255 != 256 || t4 != 3) return 1; 186 if (res != 4 || t255 != 256 || t4 != 3) return 1; 197 if (res != 255 || t255 != 256 || t4 != 3) return 1; 208 if (res != 251 || t255 != 256 || t4 != 3) return 1;
|
| D | prefix.sts | 79 if (res != 1 || t255 != 256 || t4 != 3) return 1; 90 if (res != 259 || t255 != 256 || t4 != 3) return 1; 101 if (res != 253 || t255 != 256 || t4 != 3) return 1; 112 if (res != -3 || t255 != 256 || t4 != 3) return 1; 123 if (res != 2048 || t255 != 256 || t4 != 3) return 1; 134 if (res != 32 || t255 != 256 || t4 != 3) return 1; 145 if (res != 536870880 || t255 != 256 || t4 != 3) return 1; 186 if (res != 0 || t255 != 256 || t8 != 7) return 1; 197 if (res != 259 || t255 != 256 || t4 != 3) return 1; 208 if (res != 259 || t255 != 256 || t4 != 3) return 1;
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/07.expressions/20.unary_expressions/07.bitwise_complement/ |
| D | bitwise_complement.params.yaml | 29 - {type: short, origin: 255, dest: -256} 39 - {type: int, origin: 255, dest: -256} 49 - {type: long, origin: 255, dest: -256}
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/spec/03.types/References_Types/Bigint/ |
| D | bigint-bitwise-and-1.sts | 34 match(18446744073709552000n, -256n, 18446744073709551872n) 35 match(-256n, 18446744073709552000n, 18446744073709551872n)
|
| /arkcompiler/runtime_core/static_core/tests/vm-benchmarks/examples/benchmarks-interop-freestyle/CRC32/bu_CRC32_js_loop/ |
| D | bench_CRC32_js_loop.sts | 18 table = new int[256]; 22 for (let n: int = 0; n < 256; n++) {
|
| /arkcompiler/ets_runtime/test/jittest/bytecode_to_cir_with_insufficient_profile_005/ |
| D | bytecode_to_cir_with_insufficient_profile_005.ts | 39 // Make the slotid exceed 256. 41 var paddingArray = new Array(256); 115 var paddingArrayTwo = new Array(256);
|
| /arkcompiler/runtime_core/static_core/tests/vm-benchmarks/examples/benchmarks-interop-freestyle/CRC32/bu_CRC32_sts_state/ |
| D | bench_CRC32_sts_state.sts | 18 table = new int[256]; 22 for (let n: int = 0; n < 256; n++) {
|
| /arkcompiler/runtime_core/static_core/tests/vm-benchmarks/examples/benchmarks-interop-freestyle/CRC32/bu_CRC32_sts_loop/ |
| D | bench_CRC32_sts_loop.sts | 18 table = new int[256]; 22 for (let n: int = 0; n < 256; n++) {
|
| /arkcompiler/ets_runtime/tools/circuit_viewer/src/engine/graphics/ |
| D | XTexture.js | 34 this.textTmpRid = this.loadTexture(1024, 256); 39 this.textCvs.height = 256; 205 this.textCtx.clearRect(0, 0, 1024, 256); 209 let imgd = this.textCtx.getImageData(0, 0, 1024, 256).data; 212 let x = 256; 213 while (x === 256) {
|
| /arkcompiler/runtime_core/static_core/tests/checked/fill-const-array/ |
| D | fill-const-array-256.pa | 19 .array arr_256 i32 256 { 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 … 24 movi v3, 256
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets-templates/06.contexts_and_conversions/03.numeric_operator_contexts/unary_numeric_promotion/ |
| D | bitwise_complement.params.yaml | 18 - { type: short, val: 255, r: [5, 5, 5, -256, 255, -256] }
|
| /arkcompiler/ets_runtime/test/moduletest/typedarrayreverse/ |
| D | typedarrayreverse.js | 35 let uint16Array = new Uint16Array([65535, 0, 256, 1000, 5000]); 36 …Before reverse (Uint16Array): "+uint16Array,"Before reverse (Uint16Array): 65535,0,256,1000,5000"); 38 …("After reverse (Uint16Array): "+uint16Array,"After reverse (Uint16Array): 5000,1000,256,0,65535");
|
| /arkcompiler/runtime_core/static_core/runtime/tests/ |
| D | stack_like_allocator_test.cpp | 35 static constexpr size_t INTERNAL_MEMORY_SIZE = 256_MB; in StackLikeAllocatorTest() 89 constexpr size_t FRAME_SIZE = 256; in TEST_F() 106 constexpr size_t MAX_SIZE = 256; in AlignmentTest() 177 static constexpr size_t FRAME_SIZE = 256; in TEST_F()
|
| /arkcompiler/ets_runtime/test/moduletest/builtins/ |
| D | expect_output.txt | 105 256 128 256
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/proxies/ets_proxy/ |
| D | check_access_primitives.js | 58 testAccessors('float', 0, 1, 1.25, 0x1234 / 256, Infinity, NaN); 59 testAccessors('double', 0, 1, 1.33333, 0x123456789a / 256, Infinity, NaN);
|