Home
last modified time | relevance | path

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

/ark/js_runtime/ecmascript/
Djs_serializer.cpp34 constexpr size_t INITIAL_CAPACITY = 64; variable
151 if (bytes < INITIAL_CAPACITY) { in AllocateBuffer()
152 buffer_ = reinterpret_cast<uint8_t *>(malloc(INITIAL_CAPACITY)); in AllocateBuffer()
154 bufferCapacity_ = INITIAL_CAPACITY; in AllocateBuffer()