Searched refs:stateStackSize_ (Results 1 – 2 of 2) sorted by relevance
362 if (stackLen > stateStackSize_) { in ReAllocStack()363 …ASSERT((static_cast<size_t>(stateStackSize_) * 2) <= static_cast<size_t>(UINT32_MAX)); // 2: doubl… in ReAllocStack()364 … uint32_t newStackSize = std::max(stateStackSize_ * 2, MIN_STACK_SIZE); // 2: double the size in ReAllocStack()374 auto stackSize = stateStackSize_ * stateSize_; in ReAllocStack()380 stateStackSize_ = newStackSize; in ReAllocStack()
719 uint32_t stateStackSize_ = 0; variable