Searched defs:compress (Results 1 - 25 of 57) sorted by relevance

123

/external/zlib/src/
H A Dcompress.c0 /* compress.c -- compress a memory buffer
62 int ZEXPORT compress (dest, destLen, source, sourceLen) function
/external/llvm/lib/Support/
H A DCompression.cpp49 zlib::Status zlib::compress(StringRef InputBuffer, function in class:zlib
85 zlib::Status zlib::compress(StringRef InputBuffer,
H A DIntEqClasses.cpp16 // Once the classes are built, compress() will number them 0 .. M-1 and prevent
26 assert(NumClasses == 0 && "grow() called after compress().");
33 assert(NumClasses == 0 && "join() called after compress().");
47 assert(NumClasses == 0 && "findLeader() called after compress().");
53 void IntEqClasses::compress() { function in class:IntEqClasses
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dfx_zlib_compress.c0 /* compress.c -- compress a memory buffer
62 int ZEXPORT compress ( function
/external/squashfs-tools/squashfs-tools/
H A Dlzo_wrapper.h64 int (*compress) (const lzo_bytep, lzo_uint, lzo_bytep, lzo_uintp, member in struct:lzo_algorithm
H A Dcompressor.h30 int (*compress)(void *, void *, void *, int, int, int *); member in struct:compressor
58 return comp->compress(strm, dest, src, size, block_size, error);
/external/dexmaker/src/dx/java/com/android/dx/ssa/
H A DDominators.java111 * Performs path compress on the DFS info.
115 private void compress(SsaBasicBlock in) { method in class:Dominators
160 compress(v);
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
H A DUnicodeCompressor.java27 * straightforward manner to compress simple strings:</P>
31 * byte [] compressed = UnicodeCompressor.compress(s);
53 * bytesWritten = myCompressor.compress(chars, totalCharsCompressed,
296 * @param buffer The string to compress.
298 * @see #compress(char [], int, int)
301 public static byte [] compress(String buffer) method in class:UnicodeCompressor
303 return compress(buffer.toCharArray(), 0, buffer.length());
308 * @param buffer The character buffer to compress.
309 * @param start The start of the character run to compress.
310 * @param limit The limit of the character run to compress
315 public static byte [] compress(char [] buffer, method in class:UnicodeCompressor
356 public int compress(char [] charBuffer, method in class:UnicodeCompressor
[all...]
/external/freetype/src/gzip/
H A Dzconf.h32 # define compress z_compress macro
/external/glide/third_party/gif_encoder/src/main/java/com/bumptech/glide/gifencoder/
H A DLZWEncoder.java26 // Lempel-Ziv compression based on 'compress'. GIF modifications by
35 // GIF Image compression - modified 'compress'
37 // Based on: compress.c - File compression ala IEEE Computer, June 1984.
130 // table clear for block compress
145 void compress(int init_bits, OutputStream outs) throws IOException { method in class:LZWEncoder
223 compress(initCodeSize + 1, os); // compress and write the pixel data
/external/liblzf/
H A Dlzf.c61 static enum { compress, uncompress, lzcat } mode = compress; enumerator in enum:__anon8193
69 {"compress", 0, 0, 'c'},
80 "-c --compress compress\n"
88 "-c compress\n"
335 if (mode == compress)
419 if (mode == compress)
482 mode = compress;
517 if (mode == compress
[all...]
/external/ppp/pppd/include/net/
H A Dppp-comp.h71 int (*compress) __P((void *state, PACKETPTR *mret, member in struct:compressor
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowBitmap.java28 public boolean compress(Bitmap.CompressFormat format, int quality, OutputStream stream) { method in class:ShadowBitmap
/external/skia/src/core/
H A DSkFlate.cpp33 bool doFlate(bool compress, SkStream* src, SkWStream* dst) { argument
45 if (compress)
84 if (compress)
90 if (compress)
102 if (compress)
/external/tcpdump/
H A Dprint-domain.c152 register int compress = 0; local
163 compress = 0;
170 if (!compress) {
172 compress = 1;
222 if (!compress)
/external/tinycompress/
H A Dcplay.c4 * tinyplay command line player for compress audio offload in alsa
36 * tinyplay command line player for compress audio offload in alsa
138 static int print_time(struct compress *compress) argument
143 if (compress_get_hpointer(compress, &avail, &tstamp) != 0) {
145 fprintf(stderr, "ERR: %s\n", compress_get_error(compress));
204 struct compress *compress; local
251 compress = compress_open(card, device, COMPRESS_IN, &config);
252 if (!compress || !is_compress_read
[all...]
H A Dcompress.c4 * tinycompress library for compress audio offload in alsa
36 * tinycompress library for compress audio offload in alsa
84 struct compress { struct
96 static int oops(struct compress *compress, int e, const char *fmt, ...) argument
102 vsnprintf(compress->error, COMPR_ERR_MAX, fmt, ap);
104 sz = strlen(compress->error);
106 snprintf(compress->error + sz, COMPR_ERR_MAX - sz,
113 const char *compress_get_error(struct compress *compress) argument
121 is_compress_running(struct compress *compress) argument
126 is_compress_ready(struct compress *compress) argument
131 get_compress_version(struct compress *compress) argument
142 _is_codec_supported(struct compress *compress, struct compr_config *config, const struct snd_compr_caps *caps) argument
218 struct compress *compress; local
301 compress_close(struct compress *compress) argument
314 compress_get_hpointer(struct compress *compress, unsigned int *avail, struct timespec *tstamp) argument
335 compress_get_tstamp(struct compress *compress, unsigned long *samples, unsigned int *sampling_rate) argument
351 compress_write(struct compress *compress, const void *buf, unsigned int size) argument
413 compress_read(struct compress *compress, void *buf, unsigned int size) argument
474 compress_start(struct compress *compress) argument
485 compress_stop(struct compress *compress) argument
494 compress_pause(struct compress *compress) argument
503 compress_resume(struct compress *compress) argument
510 compress_drain(struct compress *compress) argument
519 compress_partial_drain(struct compress *compress) argument
532 compress_next_track(struct compress *compress) argument
546 compress_set_gapless_metadata(struct compress *compress, struct compr_gapless_mdata *mdata) argument
600 compress_set_max_poll_wait(struct compress *compress, int milliseconds) argument
605 compress_nonblock(struct compress *compress, int nonblock) argument
610 compress_wait(struct compress *compress, int timeout_ms) argument
[all...]
/external/toybox/toys/pending/
H A Dcompress.c0 /* compress.c - deflate/inflate code for zip, gzip, zlib, and raw
8 * Divergence from posix: replace obsolete/patented "compress" with mutiplexer.
18 USE_COMPRESS(NEWTOY(compress, "zcd9lrg[-cd][!zgLr]", TOYFLAG_USR|TOYFLAG_BIN))
26 bool "compress"
29 usage: compress [-zgLR19] [FILE]
47 Compess (deflate) file(s). With no files, compress stdin to stdout.
60 -v verbose (like -l, but compress files)
78 usage: compress [-zglrcd9] [FILE]
82 -c compress with -g gzip (default) -l zlib -r raw -z zip
102 Decompess (deflate) file(s). With no files, compress stdi
454 init_deflate(int compress) argument
[all...]
/external/zlib/src/contrib/pascal/
H A Dzlibpas.pas144 function compress(dest: PChar; var destLen: LongInt; function
177 {$L compress.obj}
190 function compress; external; function
/external/javassist/src/main/javassist/
H A DClassPool.java274 void compress() { method in class:ClassPool
279 ((CtClass)e.nextElement()).compress();
715 compress();
745 compress();
H A DCtClass.java1436 /* Invoked from ClassPool#compress().
1439 void compress() {} method in class:CtClass
H A DCtClassType.java76 private static final int GET_THRESHOLD = 2; // see compress()
169 classPool.compress();
222 * Invoked from ClassPool#compress().
226 void compress() { method in class:CtClassType
/external/e2fsprogs/e2fsck/
H A Drehash.c62 int compress; member in struct:fill_dir_struct
131 if (!fd->compress && ((dirent->name_len&0xFF) == 1) &&
134 if (!fd->compress && ((dirent->name_len&0xFF) == 2) &&
153 if (fd->compress)
424 outdir->num = fd->compress ? 0 : 1;
434 slack = fd->compress ? 12 :
676 ext2_ino_t ino, int compress)
699 if (compress)
741 fd.compress = 0;
744 fd.compress
674 write_directory(e2fsck_t ctx, ext2_filsys fs, struct out_dir *outdir, ext2_ino_t ino, int compress) argument
[all...]
/external/pdfium/core/include/thirdparties/zlib/
H A Dzconf.h33 # define compress z_compress macro
H A Dzlib.h37 #define compress FPDFAPI_compress macro
635 compress them better. The effect of Z_FILTERED is to force more Huffman
1193 16: NO_GZCOMPRESS -- gz* functions cannot compress (to avoid linking
1225 ZEXTERN int ZEXPORT compress OF((Bytef *dest, uLongf *destLen,
1234 compress returns Z_OK if success, Z_MEM_ERROR if there was not
1258 compress() or compress2() on sourceLen bytes. It would be used before a
1259 compress() or compress2() call to allocate the destination buffer.

Completed in 1098 milliseconds

123