Searched defs:uncompress (Results 1 - 25 of 28) sorted by relevance

12

/external/opencv3/3rdparty/zlib/
H A Duncompr.c20 uncompress returns Z_OK if success, Z_MEM_ERROR if there was not
24 int ZEXPORT uncompress (dest, destLen, source, sourceLen) function
/external/zlib/src/
H A Duncompr.c20 uncompress returns Z_OK if success, Z_MEM_ERROR if there was not
24 int ZEXPORT uncompress (dest, destLen, source, sourceLen) function
H A Dzconf.h117 # define uncompress z_uncompress macro
/external/archive-patcher/shared/src/main/java/com/google/archivepatcher/shared/
H A DUncompressor.java22 * An interface for implementing a streaming uncompressor. An uncompressor may be used to uncompress
35 public void uncompress(InputStream compressedIn, OutputStream uncompressedOut) throws IOException; method in interface:Uncompressor
H A DDeflateUncompressor.java38 * {@link #uncompress(InputStream, OutputStream)}.
44 * {@link #uncompress(InputStream, OutputStream)}.
69 * {@link #uncompress(InputStream, OutputStream)}.
78 * {@link #uncompress(InputStream, OutputStream)}.
90 * {@link #uncompress(InputStream, OutputStream)}.
99 * {@link #uncompress(InputStream, OutputStream)}.
167 public void uncompress(InputStream compressedIn, OutputStream uncompressedOut) method in class:DeflateUncompressor
/external/pdfium/third_party/zlib_v128/
H A Duncompr.c20 uncompress returns Z_OK if success, Z_MEM_ERROR if there was not
24 int ZEXPORT uncompress ( function
H A Dzconf.h117 # define uncompress z_uncompress macro
H A Dzlib.h70 #define uncompress FPDFAPI_uncompress macro
1266 ZEXTERN int ZEXPORT uncompress OF((Bytef *dest, uLongf *destLen,
1277 uncompress returns Z_OK if success, Z_MEM_ERROR if there was not
1280 the case where there is not enough room, uncompress() will fill the output
/external/llvm/lib/Support/
H A DCompression.cpp65 zlib::Status zlib::uncompress(StringRef InputBuffer, function in class:zlib
69 Status Res = encodeZlibReturnValue(::uncompress(
90 zlib::Status zlib::uncompress(StringRef InputBuffer,
H A DIntEqClasses.cpp60 void IntEqClasses::uncompress() { function in class:IntEqClasses
/external/opencv3/3rdparty/openexr/IlmImf/
H A DImfZipCompressor.cpp168 ZipCompressor::uncompress (const char *inPtr, function in class:Imf::ZipCompressor
189 if (Z_OK != ::uncompress ((Bytef *)_tmpBuffer, &outSize,
H A DImfRleCompressor.cpp258 RleCompressor::uncompress (const char *inPtr, function in class:Imf::RleCompressor
H A DImfPizCompressor.cpp278 PizCompressor::uncompress (const char *inPtr, function in class:Imf::PizCompressor
283 return uncompress (inPtr,
297 return uncompress (inPtr, inSize, range, outPtr);
484 PizCompressor::uncompress (const char *inPtr, function in class:Imf::PizCompressor
H A DImfPxr24Compressor.cpp255 Pxr24Compressor::uncompress (const char *inPtr, function in class:Imf::Pxr24Compressor
260 return uncompress (inPtr,
274 return uncompress (inPtr, inSize, range, outPtr);
413 Pxr24Compressor::uncompress (const char *inPtr, function in class:Imf::Pxr24Compressor
426 if (Z_OK != ::uncompress ((Bytef *)_tmpBuffer,
H A DImfB44Compressor.cpp487 // compress() and uncompress() functions, below, and determine
598 B44Compressor::uncompress (const char *inPtr, function in class:Imf::B44Compressor
603 return uncompress (inPtr,
617 return uncompress (inPtr, inSize, range, outPtr);
864 B44Compressor::uncompress (const char *inPtr, function in class:Imf::B44Compressor
/external/squashfs-tools/squashfs-tools/
H A Dcompressor.h31 int (*uncompress)(void *, void *, int, int, int *); member in struct:compressor
65 return comp->uncompress(dest, src, size, block_size, error);
/external/freetype/src/gzip/
H A Dzconf.h34 # define uncompress z_uncompress macro
/external/libgdx/extensions/gdx-freetype/jni/freetype-2.6.2/src/gzip/
H A Dzconf.h34 # define uncompress z_uncompress macro
/external/liblzf/
H A Dlzf.c61 static enum { compress, uncompress, lzcat } mode = compress; enumerator in enum:__anon10177
71 {"uncompress", 0, 0, 'd'},
468 mode = uncompress;
485 mode = uncompress;
512 if ((mode == uncompress || mode == lzcat) && isatty (0))
/external/libvncserver/webclients/novnc/include/
H A Djsunzip.js146 var result = tinf.uncompress(this.data, fileInfo.localFileContent);
614 this.uncompress = function(source, offset) function
/external/zlib/src/contrib/pascal/
H A Dzlibpas.pas150 function uncompress(dest: PChar; var destLen: LongInt; function
223 function uncompress; external; function
/external/eigen/Eigen/src/SparseCore/
H A DSparseMatrix.h478 void uncompress() function in class:Eigen::SparseMatrix
/external/zlib/
H A Dzconf.h117 # define uncompress z_uncompress macro
/external/bzip2/
H A Dbzip2.c1314 void uncompress ( Char *name ) function
1326 panic ( "uncompress: bad modes\n" );
1459 panic ( "uncompress: bad srcMode" );
1852 /*-- Determine what to do (compress/uncompress/test/cat). --*/
1977 uncompress ( NULL );
1984 uncompress ( aa->name );
/external/selinux/libsemanage/src/
H A Ddirect_api.c439 char* uncompress = NULL; local
462 uncompress = malloc(size);
463 if (uncompress == NULL) {
473 tmpalloc = realloc(uncompress, size);
478 uncompress = tmpalloc;
480 memcpy(&uncompress[total], buf, nBuf);
490 *data = uncompress;
496 free(uncompress);
502 * If the file is bzip compressed map_file will uncompress
510 char *uncompress; local
[all...]

Completed in 1973 milliseconds

12