| /arkcompiler/ets_frontend/ets2panda/test/runtime/ets/ |
| D | BigInt1.ets | 18 assertEQ(new BigInt(256).operatorBitwiseAnd(new BigInt(1)), (0n)) 20 assertEQ(new BigInt(256).operatorBitwiseAnd(new BigInt(256)), (256n)) 26 assertEQ(new BigInt(256).operatorBitwiseOr(new BigInt(1)), (257n)) 27 assertEQ(new BigInt(256).operatorBitwiseOr(new BigInt(256)), (256n)) 34 assertEQ(new BigInt(256).operatorBitwiseXor(new BigInt(1)), (257n)) 35 assertEQ(new BigInt(256).operatorBitwiseXor(new BigInt(256)), (0n))
|
| D | recordInitWithLambdaExpression.ets | 26 256: (param: Number):string => { return "8" } 35 assertEQ(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"]',
|
| /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 | 92 defaultReadOnlySpaceSize_ = 256_KB; in Initialize() 110 stepNativeSizeInc_ = 256_MB; in Initialize() 114 } else if (maxHeapSize_ < HIGH_MEMORY) { // 128_MB ~ 256_MB in Initialize() 117 defaultReadOnlySpaceSize_ = 256_KB; in Initialize() 135 stepNativeSizeInc_ = 256_MB; in Initialize() 139 } else { // 256_MB ~ 384_MB in Initialize() 142 defaultReadOnlySpaceSize_ = 256_KB; in Initialize() 316 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.ets | 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.ets | 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-common-tests/atomics/ |
| D | nonconcurrent_signed_unsigned_test.ets | 18 let ab = new ArrayBuffer(256); 29 let bab = new ArrayBuffer(256);
|
| /arkcompiler/runtime_core/static_core/plugins/ets/tests/ets_func_tests/spec/03.types/References_Types/Bigint/ |
| D | bigint-bitwise-and-1.ets | 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.ets | 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.ets | 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.ets | 18 table = new int[256]; 22 for (let n: int = 0; n < 256; n++) {
|
| /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} 40 - {type: int, origin: 255, dest: -256} 51 - {type: long, origin: 255, dest: -256}
|
| /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() 146 constexpr size_t FRAME_SIZE = 256; in TEST_F() 184 static constexpr size_t FRAME_SIZE = 256; in TEST_F()
|
| /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/ecmascript/compiler/baseline/ |
| D | baseline_compiler.h | 35 ASSERT(nativePc - prevNativePc < 256); // 256: the max number can be presented by uint8_t in AddPosition()
|
| /arkcompiler/ets_frontend/ets2panda/bindings/src/generated/ |
| D | Es2pandaEnums.ts | 54 RESOLVE_BINDING_OPTIONS_ALL = 256, 82 CHECKER_STATUS_IN_CONSTRUCTOR = 256,
|
| /arkcompiler/ets_runtime/common_components/common/ |
| D | run_type.h | 34 // this supports a maximum of (256 * 8 == 2048 byte) run 36 static constexpr uint32_t MAX_NUM_OF_RUN_TYPES = 256;
|