Home
last modified time | relevance | path

Searched refs:maxSize (Results 1 – 3 of 3) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/mem/
Dmem_controller.cpp28 size_t MemController::CalculateAllocLimit(size_t currentSize, size_t minSize, size_t maxSize, size_… in CalculateAllocLimit() argument
36 const uint64_t halfToMaxSize = (static_cast<uint64_t>(currentSize) + maxSize) / 2; in CalculateAllocLimit()
38 result = static_cast<size_t>(std::min(result, maxSize)); in CalculateAllocLimit()
Dmem_controller.h50 …size_t CalculateAllocLimit(size_t currentSize, size_t minSize, size_t maxSize, size_t newSpaceCapa…
/arkcompiler/ets_runtime/ecmascript/tests/
Djs_bigint_test.cpp272 uint32_t maxSize = maxSafeIntPlusOne->GetLength(); in HWTEST_F_L0() local
273 JSHandle<BigInt> subOneRes = BigInt::BitwiseSubOne(thread, maxSafeIntPlusOne, maxSize); in HWTEST_F_L0()