Home
last modified time | relevance | path

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

12345678910

/arkcompiler/ets_frontend/ets2panda/test/runtime/ets/
DBigInt1.sts18 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);
/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"]',
Dlist.std_core_typeduarrays_function1.yaml20 abnormalData: "[-1, 256, 257, Byte.MIN_VALUE -2, Byte.MIN_VALUE -1, Byte.MAX_VALUE + 1]"
47 abnormalData: "[-1, 256, 257, Byte.MIN_VALUE -2, Byte.MIN_VALUE -1, Byte.MAX_VALUE + 1]"
/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.h82 defaultReadOnlySpaceSize_ = 256_KB; in Initialize()
101 stepNativeSizeInc_ = 256_MB; in Initialize()
105 } else if (maxHeapSize_ < HIGH_MEMORY) { // 128_MB ~ 256_MB in Initialize()
108 defaultReadOnlySpaceSize_ = 256_KB; in Initialize()
127 stepNativeSizeInc_ = 256_MB; in Initialize()
131 } else { // 256_MB ~ 384_MB in Initialize()
134 defaultReadOnlySpaceSize_ = 256_KB; in Initialize()
314 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.sts79 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.sts79 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/
Dbitwise_complement.params.yaml29 - {type: short, origin: 255, dest: -256}
39 - {type: int, origin: 255, dest: -256}
49 - {type: long, origin: 255, dest: -256}
/arkcompiler/ets_frontend/test/scripts/sdk_test/
Dutils.py138 runtime_picture.thumbnail((256, 256))
139 picture_reference_path.thumbnail((256, 256))
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/examples/benchmarks-interop-freestyle/CRC32/bu_CRC32_js_loop/
Dbench_CRC32_js_loop.sts18 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.sts18 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_state/
Dbench_CRC32_sts_state.sts18 table = new int[256];
22 for (let n: int = 0; n < 256; n++) {
/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/mem/
Dheap_region_allocator.cpp22 constexpr size_t PANDA_POOL_ALIGNMENT_IN_BYTES = 256_KB;
75 // Check that the address is 256K byte aligned in AllocateAlignedRegion()
76 …_ECMA_IF(AlignUp(mem, PANDA_POOL_ALIGNMENT_IN_BYTES) != mem, FATAL) << "region not align by 256KB"; in AllocateAlignedRegion()
/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/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()
177 static constexpr size_t FRAME_SIZE = 256; in TEST_F()
Dframe_allocator_test.cpp34 static constexpr size_t INTERNAL_SIZE = 256_MB; in FrameAllocatorTest()
35 static constexpr size_t FRAME_SIZE = 256_MB; in FrameAllocatorTest()
52 constexpr size_t FRAME_SIZE = 256; in SmallAllocateTest()
107 constexpr size_t MAX_SIZE = 256; in AlignmentTest()
184 static constexpr size_t FRAME_SIZE = 256; in CheckAddrInsideAllocator()
/arkcompiler/runtime_core/static_core/tests/vm-benchmarks/tests/
Dtest_gc_ark_pause.py31 'G1 GC freed 4234(4MB), 0(0B) LOS objects, 82% free, 46MB/256MB, ' \
46 self.assertEqual(256 * 1024 * 1024, pev.mem_total, 'memory total is correct')
/arkcompiler/runtime_core/static_core/plugins/ets/tests/interop_js/tests/proxies/ets_proxy/
Dcheck_access_primitives.js58 testAccessors('float', 0, 1, 1.25, 0x1234 / 256, Infinity, NaN);
59 testAccessors('double', 0, 1, 1.33333, 0x123456789a / 256, Infinity, NaN);

12345678910