| /arkcompiler/ets_runtime/ecmascript/ |
| D | ecma_param_configuration.h | 24 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/ |
| D | expect_output.txt | 14 256 18 256 19 256
|
| /arkcompiler/ets_runtime/ecmascript/mem/ |
| D | heap_region_allocator.cpp | 25 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()
|
| D | mem_map_allocator.h | 29 // 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/ |
| D | regAllocator.test.ts | 63 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/ |
| D | template_map_test.cpp | 174 // 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()
|
| D | js_api_arraylist_test.cpp | 230 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/ |
| D | frame_allocator_test.cpp | 34 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()
|
| D | panda_tl_containers_test.cpp | 72 …// 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/ |
| D | jmp.yaml | 61 lda.null ##*256 122 lda.null ##*256
|
| /arkcompiler/runtime_core/platforms/windows/libpandabase/ |
| D | error.cpp | 22 constexpr size_t BUFSIZE = 256; in ToString()
|
| /arkcompiler/toolchain/websocket/test/ |
| D | websocket_test.cpp | 238 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/ |
| D | websocket.cpp | 49 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/ |
| D | number_helper_test.cpp | 250 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()
|
| D | atomic_helper_test.cpp | 75 uint32_t bufferSize = 256; in HWTEST_F_L0() 105 uint32_t bufferSize = 256; in HWTEST_F_L0()
|
| D | typed_array_helper_test.cpp | 163 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/ |
| D | bitops-bits-in-byte.pa | 16 movi v1, 256
|
| /arkcompiler/runtime_core/platforms/unix/libpandabase/ |
| D | error.cpp | 28 constexpr size_t BUFSIZE = 256; in ToString()
|
| /arkcompiler/ets_runtime/ecmascript/platform/unix/linux/ |
| D | backtrace.cpp | 25 static const int MAX_STACK_SIZE = 256;
|
| /arkcompiler/runtime_core/runtime/interpreter/ |
| D | cache.h | 64 static constexpr size_t N = 256;
|
| /arkcompiler/ets_runtime/test/fuzztest/snapshotserializehugeobject_fuzzer/ |
| D | snapshotserializehugeobject_fuzzer.cpp | 35 const uint32_t hugeSize = 256 * 1024; in SnapshotSerializeHugeObjectFuzzTest()
|
| /arkcompiler/runtime_core/isa/ |
| D | asserts.rb | 36 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/ |
| D | json_parser_test.cpp | 152 "key_2" : -256, 169 ASSERT_EQ(*obj.GetValue<JsonObject::NumT>("key_2"), -256);
|
| /arkcompiler/ets_frontend/ts2panda/templates/ |
| D | irnodes.ts.erb | 486 this.operands[0] = new Imm(256); 487 let inc = <%= ret %> + 256 - icSize; 507 (<PandaGen>(IRNode.pg)).updateIcSize((256 - icSize));
|
| /arkcompiler/runtime_core/runtime/ |
| D | global_handle_storage.h | 33 static const int32_t GLOBAL_BLOCK_SIZE = 256;
|