Home
last modified time | relevance | path

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

12345

/arkcompiler/ets_runtime/ecmascript/
Decma_param_configuration.h24 static constexpr size_t DEFAULT_HEAP_SIZE = 256_MB; // Recommended range: 128-256MB
51 defaultReadOnlySpaceSize_ = 256_KB; in Initialize()
61 } else if (maxHeapSize_ < HIGH_MEMORY) { // 128_MB ~ 256_MB in Initialize()
64 defaultReadOnlySpaceSize_ = 256_KB; in Initialize()
74 } else { // 256_MB in Initialize()
77 defaultReadOnlySpaceSize_ = 256_KB; in Initialize()
168 static constexpr size_t HIGH_MEMORY = 256_MB;
/arkcompiler/ets_runtime/test/aottest/exp/
Dexpect_output.txt14 256
18 256
19 256
/arkcompiler/ets_runtime/ecmascript/mem/
Dheap_region_allocator.cpp25 constexpr size_t PANDA_POOL_ALIGNMENT_IN_BYTES = 256_KB;
51 // Check that the address is 256K byte aligned in AllocateAlignedRegion()
52 …_ECMA_IF(AlignUp(mem, PANDA_POOL_ALIGNMENT_IN_BYTES) != mem, FATAL) << "region not align by 256KB"; in AllocateAlignedRegion()
Dmem_map_allocator.h29 // Regular region with length of DEFAULT_REGION_SIZE(256kb)
87 static constexpr size_t REGULAR_MMAP_SIZE = 256_KB;
93 // Non regular region with length of DEFAULT_REGION_SIZE(256kb) multiple
/arkcompiler/ets_frontend/ts2panda/tests/
DregAllocator.test.ts63 for (let i = 0; i < 256; ++i) {
84 new Mov(v[256], v[0]),
116 for (let i = 0; i < 256; ++i) {
180 for (let i = 0; i < 256; ++i) {
204 new Mov(v[256], v[0]),
/arkcompiler/ets_runtime/ecmascript/tests/
Dtemplate_map_test.cpp174 // 256: eighty-six is close to the eighth power of two in HWTEST_F_L0()
175 EXPECT_EQ(templateMap->ComputeHashTableSize(atLeastSize1), 256); in HWTEST_F_L0()
203 // Test for the TemplateMap of which the size is 256 in HWTEST_F_L0()
204 intNumElementsTempMap = 256; in HWTEST_F_L0()
242 // Test for the TemplateMap of which the size is 256 in HWTEST_F_L0()
243 intNumElementsTempMap = 256; in HWTEST_F_L0()
Djs_api_arraylist_test.cpp230 uint32_t addElementNums = 256; in HWTEST_F_L0()
268 uint32_t addElementNums = 256; in HWTEST_F_L0()
339 uint32_t addElementNums = 256; in HWTEST_F_L0()
484 uint32_t addElementNums = 256; in HWTEST_F_L0()
592 uint32_t elementsNum = 256; in HWTEST_F_L0()
626 uint32_t elementsNum = 256; in HWTEST_F_L0()
647 uint32_t elementsNums = 256; in HWTEST_F_L0()
/arkcompiler/runtime_core/runtime/tests/
Dframe_allocator_test.cpp34 panda::mem::MemConfig::Initialize(0, 256_MB, 0, 0); in FrameAllocatorTest()
47 constexpr size_t FRAME_SIZE = 256; in SmallAllocateTest()
102 constexpr size_t MAX_SIZE = 256; in AlignmentTest()
179 static constexpr size_t FRAME_SIZE = 256; in CheckAddrInsideAllocator()
Dpanda_tl_containers_test.cpp72 …// When vector size exceeds MAX_SIZE=256 bytes, we allocate it without thread-local runslots alloc… in TEST_F()
81 …// When vector size exceeds MAX_SIZE=256 bytes, we allocate it without thread-local runslots alloc… in TEST_F()
/arkcompiler/runtime_core/tests/cts-generator/cts-template/
Djmp.yaml61 lda.null ##*256
122 lda.null ##*256
/arkcompiler/runtime_core/platforms/windows/libpandabase/
Derror.cpp22 constexpr size_t BUFSIZE = 256; in ToString()
/arkcompiler/toolchain/websocket/test/
Dwebsocket_test.cpp238 sendBuf[2] = ((msgLen >> 8) & 0xff); // 8: shift right by 8 bits => res * (256^1) in ClientSendReq()
239 sendBuf[3] = (msgLen & 0xff); // 3: store len's data => res * (256^0) in ClientSendReq()
246 sendBuf[6] = ((msgLen & 0xff000000) >> 24); // 6: shift 24 bits => res * (256^3) in ClientSendReq()
247 sendBuf[7] = ((msgLen & 0x00ff0000) >> 16); // 7: shift 16 bits => res * (256^2) in ClientSendReq()
248 sendBuf[8] = ((msgLen & 0x0000ff00) >> 8); // 8: shift 8 bits => res * (256^1) in ClientSendReq()
249 sendBuf[9] = (msgLen & 0x000000ff); // 9: res * (256^0) in ClientSendReq()
/arkcompiler/toolchain/websocket/
Dwebsocket.cpp49 sendBuf[2] = ((msgLen >> 8) & 0xff); // 8: shift right by 8 bits => res * (256^1) in SendReply()
50 sendBuf[3] = (msgLen & 0xff); // 3: store len's data => res * (256^0) in SendReply()
57 sendBuf[6] = ((msgLen & 0xff000000) >> 24); // 6: shift 24 bits => res * (256^3) in SendReply()
58 sendBuf[7] = ((msgLen & 0x00ff0000) >> 16); // 7: shift 16 bits => res * (256^2) in SendReply()
59 sendBuf[8] = ((msgLen & 0x0000ff00) >> 8); // 8: shift 8 bits => res * (256^1) in SendReply()
60 sendBuf[9] = (msgLen & 0x000000ff); // 9: res * (256^0) in SendReply()
/arkcompiler/ets_runtime/ecmascript/base/tests/
Dnumber_helper_test.cpp250 EXPECT_EQ(NumberHelper::DoubleToInt(256.0, INT16_BITS), 256); in HWTEST_F_L0()
251 EXPECT_EQ(NumberHelper::DoubleToInt(256.555555555555556, INT16_BITS), 256); in HWTEST_F_L0()
268 EXPECT_EQ(NumberHelper::DoubleToInt(256.0, INT64_BITS), 256); in HWTEST_F_L0()
269 EXPECT_EQ(NumberHelper::DoubleToInt(256.555555555555556, INT64_BITS), 256); in HWTEST_F_L0()
300 EXPECT_EQ(NumberHelper::DoubleInRangeInt32(256.0), 256); in HWTEST_F_L0()
301 EXPECT_EQ(NumberHelper::DoubleInRangeInt32(-256.0), -256); in HWTEST_F_L0()
510 integerStr = NumberHelper::IntegerToString(static_cast<double>(256), radix); in HWTEST_F_L0()
Datomic_helper_test.cpp75 uint32_t bufferSize = 256; in HWTEST_F_L0()
105 uint32_t bufferSize = 256; in HWTEST_F_L0()
Dtyped_array_helper_test.cpp163 int32_t length = 256; in HWTEST_F_L0()
175 EXPECT_EQ(jsTypedArray->GetByteLength(), 256U); in HWTEST_F_L0()
177 EXPECT_EQ(jsTypedArray->GetArrayLength(), 256U); in HWTEST_F_L0()
210 uint32_t lenVal = 256; in HWTEST_F_L0()
215 EXPECT_EQ(len, 256U); in HWTEST_F_L0()
/arkcompiler/runtime_core/tests/benchmarks/
Dbitops-bits-in-byte.pa16 movi v1, 256
/arkcompiler/runtime_core/platforms/unix/libpandabase/
Derror.cpp28 constexpr size_t BUFSIZE = 256; in ToString()
/arkcompiler/ets_runtime/ecmascript/platform/unix/linux/
Dbacktrace.cpp25 static const int MAX_STACK_SIZE = 256;
/arkcompiler/runtime_core/runtime/interpreter/
Dcache.h64 static constexpr size_t N = 256;
/arkcompiler/ets_runtime/test/fuzztest/snapshotserializehugeobject_fuzzer/
Dsnapshotserializehugeobject_fuzzer.cpp35 const uint32_t hugeSize = 256 * 1024; in SnapshotSerializeHugeObjectFuzzTest()
/arkcompiler/runtime_core/isa/
Dasserts.rb36 Panda.instructions.reject(&:prefix).size + Panda.prefixes.size <= 256
49 … Panda.instructions.select { |insn| insn.prefix && (insn.prefix.name == prefix.name) }.size <= 256
/arkcompiler/runtime_core/libpandabase/tests/
Djson_parser_test.cpp152 "key_2" : -256,
169 ASSERT_EQ(*obj.GetValue<JsonObject::NumT>("key_2"), -256);
/arkcompiler/ets_frontend/ts2panda/templates/
Dirnodes.ts.erb486 this.operands[0] = new Imm(256);
487 let inc = <%= ret %> + 256 - icSize;
507 (<PandaGen>(IRNode.pg)).updateIcSize((256 - icSize));
/arkcompiler/runtime_core/runtime/
Dglobal_handle_storage.h33 static const int32_t GLOBAL_BLOCK_SIZE = 256;

12345