Home
last modified time | relevance | path

Searched refs:MAX_WBITS (Results 1 – 4 of 4) sorted by relevance

/CTR-SDK-4.2.8-20130828/include/
Dzconf.h249 #ifndef MAX_WBITS
250 # define MAX_WBITS 15 /* 32K LZ77 window */ macro
/CTR-SDK-4.2.8-20130828/sources/libraries/cx/
Dcx_Compression.cpp1304 + (1 << (MAX_WBITS + 2)) in ZlibStaticAssert()
1308 NN_STATIC_ASSERT( MAX_WBITS == 15 ); in ZlibStaticAssert()
1367 const int wbits = MAX_WBITS + 16; // Specify +16 = gzip format in CompressGzip()
1377 return CompressDeflateCommon(pDest, destSize, pSrc, srcSize, pWork, MAX_WBITS); in CompressZlib()
1408 const int wbits = - MAX_WBITS; // Specify - = raw deflate format in CompressDeflate()
Dcx_Uncompression.cpp1133 const int wbits = MAX_WBITS + 16; // Specify +16 = gzip format in UncompressGzip()
1143 return UncompressDeflateCommon(pDest, destSize, pSrc, srcSize, pWork, MAX_WBITS); in UncompressZlib()
1156 const int wbits = - MAX_WBITS; // Specify - = raw deflate format in UncompressDeflate()
Dcx_StreamingUncompression.cpp31 static const size_t WORK_SIZE = UNCOMPRESS_GZIP_WORK_SIZE + (1 << MAX_WBITS);
1595 const int wbits = - MAX_WBITS; // Specify - = raw deflate format in InitUncompContextDeflate()
1604 const int wbits = MAX_WBITS + 16; // Specify +16 = gzip format in InitUncompContextGzip()
1613 InitUncompressContextDeflateCommon(pContext, pDest, destSize, MAX_WBITS); in InitUncompContextZlib()