Lines Matching refs:currentSize
335 currentSize(0),
348 currentSize(0),
397 ncvAssertPrintCheck(currentSize == 0, "NCVMemStackAllocator dtor:: not all objects were deallocated properly, forcing destruction");
427 this->currentSize += size;
428 this->_maxSize = std::max(this->_maxSize, this->currentSize);
452 currentSize -= seg.size;
503 currentSize(0),
512 ncvAssertPrintCheck(currentSize == 0, "NCVMemNativeAllocator dtor:: detected memory leak");
535 this->currentSize += alignUp(static_cast<Ncv32u>(size), this->_alignment);
536 this->_maxSize = std::max(this->_maxSize, this->currentSize);
551 ncvAssertReturn(currentSize >= alignUp(static_cast<Ncv32u>(seg.size), this->_alignment), NCV_ALLOCATOR_BAD_DEALLOC);
552 currentSize -= alignUp(static_cast<Ncv32u>(seg.size), this->_alignment);