HomeSort by relevance Sort by last modified time
    Searched refs:STORED (Results 1 - 25 of 63) sorted by null

1 2 3

  /external/zlib/src/contrib/infback9/
inflate9.h 14 STORED, /* i: waiting for stored size (length and complement) */
27 TYPE -> STORED or TABLE or LEN or DONE
28 STORED -> TYPE
infback9.c 238 unsigned long copy; /* number of stored or match bytes to copy */
286 case 0: /* stored block */
287 Tracev((stderr, "inflate: stored block%s\n",
289 mode = STORED;
312 case STORED:
313 /* get and verify stored block length */
317 strm->msg = (char *)"invalid stored block lengths";
322 Tracev((stderr, "inflate: stored length %lu\n",
326 /* copy stored block from input to output */
340 Tracev((stderr, "inflate: stored end\n"))
    [all...]
  /libcore/luni/src/main/java/java/util/zip/
ZipOutputStream.java 37 * Use {@link ZipEntry#setMethod} or {@link #setMethod} with the {@link ZipEntry#STORED} flag.
70 public static final int STORED = 0;
140 // Verify values for STORED types
141 if (currentEntry.getMethod() == STORED) {
152 if (currentEntry.getMethod() != STORED) {
161 int flags = currentEntry.getMethod() == STORED ? 0 : ZipFile.GPBF_DATA_DESCRIPTOR_FLAG;
272 // If the method is STORED, check that the ZipEntry was configured appropriately.
273 if (method == STORED) {
280 throw new ZipException("STORED entry missing CRC");
283 throw new ZipException("STORED entry missing size")
    [all...]
ZipEntry.java 66 * Zip entry state: Stored.
68 public static final int STORED = 0;
142 * @return the compression method, either {@code DEFLATED}, {@code STORED}
249 * Sets the compression method for this entry to either {@code DEFLATED} or {@code STORED}.
251 * set automatically, and the entry's data to be compressed. If you switch to {@code STORED}
256 * when value is not {@code DEFLATED} or {@code STORED}.
259 if (value != STORED && value != DEFLATED) {
ZipInputStream.java 306 if (currentEntry.compressionMethod == ZipEntry.STORED) {
  /external/chromium_org/third_party/zlib/
inflate.h 34 STORED, /* i: waiting for stored size (length and complement) */
36 COPY, /* i/o: waiting for input or output to copy stored block */
68 TYPE -> TYPEDO -> STORED or TABLE or LEN_ or CHECK
69 STORED -> COPY_ -> COPY -> TYPE
100 /* for string and stored block copying */
infback.c 254 unsigned copy; /* number of stored or match bytes to copy */
294 case 0: /* stored block */
295 Tracev((stderr, "inflate: stored block%s\n",
297 state->mode = STORED;
317 case STORED:
318 /* get and verify stored block length */
322 strm->msg = (char *)"invalid stored block lengths";
327 Tracev((stderr, "inflate: stored length %u\n",
331 /* copy stored block from input to output */
345 Tracev((stderr, "inflate: stored end\n"))
    [all...]
  /external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
inflate.h 34 STORED, /* i: waiting for stored size (length and complement) */
36 COPY, /* i/o: waiting for input or output to copy stored block */
68 TYPE -> TYPEDO -> STORED or TABLE or LEN_ or CHECK
69 STORED -> COPY_ -> COPY -> TYPE
100 /* for string and stored block copying */
fx_zlib_infback.c 263 unsigned copy; /* number of stored or match bytes to copy */
303 case 0: /* stored block */
304 Tracev((stderr, "inflate: stored block%s\n",
306 state->mode = STORED;
326 case STORED:
327 /* get and verify stored block length */
331 strm->msg = (char *)"invalid stored block lengths";
336 Tracev((stderr, "inflate: stored length %u\n",
340 /* copy stored block from input to output */
354 Tracev((stderr, "inflate: stored end\n"))
    [all...]
  /external/qemu/distrib/zlib-1.2.8/
inflate.h 34 STORED, /* i: waiting for stored size (length and complement) */
36 COPY, /* i/o: waiting for input or output to copy stored block */
68 TYPE -> TYPEDO -> STORED or TABLE or LEN_ or CHECK
69 STORED -> COPY_ -> COPY -> TYPE
100 /* for string and stored block copying */
infback.c 263 unsigned copy; /* number of stored or match bytes to copy */
303 case 0: /* stored block */
304 Tracev((stderr, "inflate: stored block%s\n",
306 state->mode = STORED;
326 case STORED:
327 /* get and verify stored block length */
331 strm->msg = (char *)"invalid stored block lengths";
336 Tracev((stderr, "inflate: stored length %u\n",
340 /* copy stored block from input to output */
354 Tracev((stderr, "inflate: stored end\n"))
    [all...]
  /external/zlib/src/
inflate.h 34 STORED, /* i: waiting for stored size (length and complement) */
36 COPY, /* i/o: waiting for input or output to copy stored block */
68 TYPE -> TYPEDO -> STORED or TABLE or LEN_ or CHECK
69 STORED -> COPY_ -> COPY -> TYPE
100 /* for string and stored block copying */
  /libcore/luni/src/test/java/libcore/java/util/zip/
ZipFileTest.java 130 * Make sure the size used for stored zip entires is the uncompressed size.
137 // Set up a single stored entry.
142 outEntry.setMethod(ZipEntry.STORED);
266 ze.setMethod(ZipEntry.STORED);
275 ze.setMethod(ZipEntry.STORED);
285 ze.setMethod(ZipEntry.STORED);
296 ze.setMethod(ZipEntry.STORED);
306 ze.setMethod(ZipEntry.STORED);
326 ze.setMethod(ZipEntry.STORED);
346 ze.setMethod(ZipEntry.STORED);
    [all...]
OldAndroidZipStreamTest.java 124 newEntry.setMethod(ZipEntry.STORED);
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
ZipOutputStreamTest.java 152 zos.setMethod(ZipOutputStream.STORED);
193 zip.setMethod(ZipEntry.STORED);
251 zip1.setMethod(ZipOutputStream.STORED);
252 zip1.setMethod(ZipEntry.STORED);
ZipEntryTest.java 124 java.util.zip.ZipEntry.STORED, zentry.getMethod());
290 zentry.setMethod(ZipEntry.STORED);
292 ZipEntry.STORED, zentry.getMethod());
  /system/core/libzipfile/
zipfile.c 74 STORED = 0,
120 case STORED:
  /external/freetype/src/gzip/
infutil.h 16 LENS, /* get lengths for stored */
17 STORED, /* processing stored block */
35 uInt left; /* if STORED, bytes left to copy */
infblock.c 144 case 0: /* stored */
145 Tracev((stderr, "inflate: stored block%s\n",
150 s->mode = LENS; /* get length of stored block */
190 z->msg = (char*)"invalid stored block lengths";
196 Tracev((stderr, "inflate: stored length %u\n", s->sub.left));
197 s->mode = s->sub.left ? STORED : (s->last ? DRY : TYPE);
199 case STORED:
211 Tracev((stderr, "inflate: stored end, %lu total out\n",
  /libcore/luni/src/main/java/java/util/jar/
StrictJarFile.java 166 if (ze.getMethod() == ZipEntry.STORED) {
  /frameworks/opt/telephony/src/java/com/google/android/mms/pdu/
PduHeaders.java 70 public static final int STORED = 0xA7;
131 * X-Mms-Stored |
373 case STORED:
  /external/chromium_org/content/browser/appcache/
appcache_update_job.h 69 // TODO(michaeln): Rework the set of states vs update types vs stored states.
94 STORED,
325 // Response ids stored by this update job, used to cleanup in
336 // Whether we've stored the resulting group/cache yet.
  /external/mockito/cglib-and-asm/src/org/mockito/cglib/transform/
AbstractTransformTask.java 169 if(outEntry.getMethod() == ZipEntry.STORED){
  /external/eigen/blas/
drotmg.f 24 * VALUE OF DPARAM(1) ARE NOT STORED IN DPARAM.)
srotmg.f 24 * VALUE OF SPARAM(1) ARE NOT STORED IN SPARAM.)

Completed in 5029 milliseconds

1 2 3