Searched refs:stackSize (Results 1 – 2 of 2) sorted by relevance
/arkcompiler/ets_runtime/ecmascript/regexp/ |
D | regexp_executor.cpp | 39 uint32_t stackSize = sizeof(uintptr_t) * nStack_; in Execute() local 40 stateSize_ = sizeof(RegExpState) + captureResultSize + stackSize; in Execute() 50 if (stackSize != 0) { in Execute() 52 if (memset_s(stack_, stackSize, 0, stackSize) != EOK) { in Execute() 322 size_t stackSize = sizeof(uintptr_t) * nStack_; in PushRegExpState() local 323 if (memcpy_s(stackStart, stackSize, stack_, stackSize) != EOK) { in PushRegExpState() 348 size_t stackSize = sizeof(uintptr_t) * nStack_; in PopRegExpState() local 349 if (memcpy_s(stack_, stackSize, stackStart, stackSize) != EOK) { in PopRegExpState() 374 auto stackSize = stateStackSize_ * stateSize_; in ReAllocStack() local 375 if (memcpy_s(newStack, stackSize, stateStack_, stackSize) != EOK) { in ReAllocStack()
|
/arkcompiler/ets_runtime/ecmascript/stackmap/ |
D | llvm_stackmap_type.h | 125 uint64_t stackSize; member 130 LOG_COMPILER(DEBUG) << " stackSize:0x" << std::hex << stackSize; in Print()
|