Lines Matching defs:miniz

92 // Use embedded miniz or not to decode ZIP format pixel. Linking with zlib
563 namespace miniz {
603 /* miniz.c v1.15 - public domain deflate/inflate, zlib-subset, ZIP
610 Most API's defined in miniz.c are optional. For example, to disable the
667 - Ran all examples, miniz.c, and tinfl.c through MSVC 2008's /analyze
676 - Ran miniz.c and tinfl.c through another series of regression testing on
682 are too large (a limitation of the examples, not miniz itself).
721 miniz.c implements a fairly large subset of zlib. There's enough
738 there are no guarantees that miniz.c pulls this off perfectly.
841 below header, or create miniz.h, #define MINIZ_HEADER_FILE_ONLY, and then
842 include miniz.c from it.
851 including miniz.c to ensure miniz
862 // Defines to completely disable specific portions of miniz.c:
950 // For more compatibility with zlib, miniz.c uses unsigned long for some
1065 // Returns the version string of miniz.c.
1089 // mem_level must be between [1, 9] (it's checked but ignored by miniz.c)
1191 // Redefine zlib-compatible names to miniz equivalents, so miniz.c can be used
1192 // as a drop-in replacement for the subset of zlib that miniz.c supports.
4725 // alignment and platform endian issues, miniz.c doesn't use structs for any of
6990 // ---------------------- end of miniz ----------------------------------------
6996 } // namespace miniz
7151 // Reuse MINIZ_LITTLE_ENDIAN flag from miniz.
7573 // Compress the data using miniz
7576 miniz::mz_ulong outSize = miniz::mz_compressBound(src_size);
7577 int ret = miniz::mz_compress(
7580 TEXR_ASSERT(ret == miniz::MZ_OK);
7613 miniz::mz_uncompress(&tmpBuf.at(0), uncompressed_size, src, src_size);
7614 if (miniz::MZ_OK != ret) {
12368 std::vector<unsigned char> block(tinyexr::miniz::mz_compressBound(