Home
last modified time | relevance | path

Searched full:256 (Results 1 – 25 of 310) sorted by relevance

12345678910>>...13

/arkcompiler/ets_frontend/ets2panda/test/runtime/ets/
DBigInt1.ets18 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))
DrecordInitWithLambdaExpression.ets26 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/
Dlist.std_core_stringbuilder_static.yaml36 …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"]',
Dlist.std_core_stringbuilder_instance.yaml98 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/
Dexpect_output.txt14 256
18 256
19 256
/arkcompiler/ets_runtime/test/aottest/builtins_number2/
Dpgo_expect_output.txt22 256 true true
48 -256 true true
64 256 true true
90 -256 true true
Dexpect_output.txt22 256 true true
48 -256 true true
64 256 true true
90 -256 true true
Dbuiltins_number2.ts24 256, // 2 ** 8
50 -256, // - ( 2 ** 8 )
/arkcompiler/ets_runtime/ecmascript/
Decma_param_configuration.h92 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/
Dpostfix.ets79 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;
Dprefix.ets79 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/
Dnonconcurrent_signed_unsigned_test.ets18 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/
Dbigint-bitwise-and-1.ets34 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/
Dbench_CRC32_js_loop.ets18 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/
Dbytecode_to_cir_with_insufficient_profile_005.ts39 // 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/
Dbench_CRC32_sts_state.ets18 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/
Dbench_CRC32_sts_loop.ets18 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/
Dbitwise_complement.params.yaml29 - {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/
Dstack_like_allocator_test.cpp35 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/
DXTexture.js34 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/
Dfill-const-array-256.pa19 .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/
Dbitwise_complement.params.yaml18 - { type: short, val: 255, r: [5, 5, 5, -256, 255, -256] }
/arkcompiler/ets_runtime/ecmascript/compiler/baseline/
Dbaseline_compiler.h35 ASSERT(nativePc - prevNativePc < 256); // 256: the max number can be presented by uint8_t in AddPosition()
/arkcompiler/ets_frontend/ets2panda/bindings/src/generated/
DEs2pandaEnums.ts54 RESOLVE_BINDING_OPTIONS_ALL = 256,
82 CHECKER_STATUS_IN_CONSTRUCTOR = 256,
/arkcompiler/ets_runtime/common_components/common/
Drun_type.h34 // this supports a maximum of (256 * 8 == 2048 byte) run
36 static constexpr uint32_t MAX_NUM_OF_RUN_TYPES = 256;

12345678910>>...13