Searched refs:ZLIB_HEADERSIZE (Results 1 - 1 of 1) sorted by relevance

/freebsd-12-stable/sys/contrib/zstd/zlibWrapper/
H A Dzstd_zlibwrapper.c33 #define ZLIB_HEADERSIZE 4 macro
667 if (zwd->totalInBytes < ZLIB_HEADERSIZE) {
668 if (zwd->totalInBytes == 0 && strm->avail_in >= ZLIB_HEADERSIZE) {
688 } else { /* ! (zwd->totalInBytes == 0 && strm->avail_in >= ZLIB_HEADERSIZE) */
689 size_t const srcSize = MIN(strm->avail_in, ZLIB_HEADERSIZE - zwd->totalInBytes);
695 if (zwd->totalInBytes < ZLIB_HEADERSIZE) return Z_OK;
713 strm->avail_in = ZLIB_HEADERSIZE;
738 } } } /* if ! (zwd->totalInBytes == 0 && strm->avail_in >= ZLIB_HEADERSIZE) */
739 } /* (zwd->totalInBytes < ZLIB_HEADERSIZE) */

Completed in 101 milliseconds