Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/regexp/
Dregexp_executor.cpp363 uint32_t stackByteSize = newStackSize * sizeof(RegExpState); in ReAllocStack() local
364 auto newStack = chunk_->NewArray<uint8_t>(stackByteSize); in ReAllocStack()
365 if (memset_s(newStack, stackByteSize, 0, stackByteSize) != EOK) { in ReAllocStack()
/arkcompiler/runtime_core/static_core/runtime/regexp/ecmascript/
Dregexp_executor.cpp318 uint32_t stackByteSize = newStackSize * stateSize_; in ReAllocStack() local
320 auto newStack = allocator->New<uint8_t[]>(stackByteSize); in ReAllocStack()
321 if (memset_s(newStack, stackByteSize, 0, stackByteSize) != EOK) { in ReAllocStack()