Lines Matching refs:pDest
1529 …void InitUncompressContextDeflateCommon( UncompContextDeflate* pContext, void* pDest, size_t destS… in InitUncompressContextDeflateCommon() argument
1532 NN_POINTER_TASSERT_(pDest); in InitUncompressContextDeflateCommon()
1545 s.next_out = reinterpret_cast<nncxZlib_Bytef*>(pDest); in InitUncompressContextDeflateCommon()
1590 void InitUncompContextDeflate( UncompContextDeflate* pContext, void* pDest, size_t destSize ) in InitUncompContextDeflate() argument
1593 NN_POINTER_TASSERT_(pDest); in InitUncompContextDeflate()
1596 InitUncompressContextDeflateCommon(pContext, pDest, destSize, wbits); in InitUncompContextDeflate()
1599 void InitUncompContextGzip( UncompContextGzip* pContext, void* pDest, size_t destSize ) in InitUncompContextGzip() argument
1602 NN_POINTER_TASSERT_(pDest); in InitUncompContextGzip()
1605 InitUncompressContextDeflateCommon(pContext, pDest, destSize, wbits); in InitUncompContextGzip()
1608 void InitUncompContextZlib( UncompContextZlib* pContext, void* pDest, size_t destSize ) in InitUncompContextZlib() argument
1611 NN_POINTER_TASSERT_(pDest); in InitUncompContextZlib()
1613 InitUncompressContextDeflateCommon(pContext, pDest, destSize, MAX_WBITS); in InitUncompContextZlib()