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

1 2

  /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;
134 // Verify values for STORED types
135 if (currentEntry.getMethod() == STORED) {
146 if (currentEntry.getMethod() != STORED) {
155 int flags = currentEntry.getMethod() == STORED ? 0 : ZipFile.GPBF_DATA_DESCRIPTOR_FLAG;
270 // If the method is STORED, check that the ZipEntry was configured appropriately.
271 if (method == STORED) {
278 throw new ZipException("STORED entry missing CRC");
281 throw new ZipException("STORED entry missing size")
    [all...]
ZipEntry.java 63 * Zip entry state: Stored.
65 public static final int STORED = 0;
124 * @return the compression method, either {@code DEFLATED}, {@code STORED}
234 * Sets the compression method for this entry to either {@code DEFLATED} or {@code STORED}.
236 * set automatically, and the entry's data to be compressed. If you switch to {@code STORED}
241 * when value is not {@code DEFLATED} or {@code STORED}.
244 if (value != STORED && value != DEFLATED) {
ZipInputStream.java 301 if (currentEntry.compressionMethod == ZipEntry.STORED) {
ZipFile.java 304 if (entry.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...]
inflate.c 60 * - Fixed stored blocks bug in inflateBack()
566 complete that state. Those states are copying stored data, writing a
600 unsigned copy; /* number of stored or match bytes to copy */
822 case 0: /* stored block */
823 Tracev((stderr, "inflate: stored block%s\n",
825 state->mode = STORED;
848 case STORED:
852 strm->msg = (char *)"invalid stored block lengths";
857 Tracev((stderr, "inflate: stored length %u\n",
878 Tracev((stderr, "inflate: stored end\n"))
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
inflate.h 34 STORED, /* i: waiting for stored size (length and complement) */
35 COPY, /* i/o: waiting for input or output to copy stored block */
65 TYPE -> STORED or TABLE or LEN or CHECK
66 STORED -> COPY -> TYPE
96 /* 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/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 */
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...]
  /libcore/luni/src/test/java/libcore/java/util/zip/
ZipFileTest.java 122 * Make sure the size used for stored zip entires is the uncompressed size.
129 // Set up a single stored entry.
134 outEntry.setMethod(ZipEntry.STORED);
256 ze.setMethod(ZipEntry.STORED);
265 ze.setMethod(ZipEntry.STORED);
275 ze.setMethod(ZipEntry.STORED);
286 ze.setMethod(ZipEntry.STORED);
296 ze.setMethod(ZipEntry.STORED);
316 ze.setMethod(ZipEntry.STORED);
336 ze.setMethod(ZipEntry.STORED);
    [all...]
OldAndroidZipStreamTest.java 124 newEntry.setMethod(ZipEntry.STORED);
  /external/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
ZipOutputStreamTest.java 159 zos.setMethod(ZipOutputStream.STORED);
200 zip.setMethod(ZipEntry.STORED);
258 zip1.setMethod(ZipOutputStream.STORED);
259 zip1.setMethod(ZipEntry.STORED);
ZipEntryTest.java 147 java.util.zip.ZipEntry.STORED, zentry.getMethod());
313 zentry.setMethod(ZipEntry.STORED);
315 ZipEntry.STORED, zentry.getMethod());
  /system/core/libzipfile/
zipfile.c 74 STORED = 0,
121 case STORED:
  /frameworks/opt/mms/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/webkit/browser/appcache/
appcache_update_job.h 58 // TODO(michaeln): Rework the set of states vs update types vs stored states.
83 STORED,
300 // Response ids stored by this update job, used to cleanup in
311 // Whether we've stored the resulting group/cache yet.
appcache_update_job.cc 645 // TODO(michaeln): defer until the updated cache has been stored
774 stored_state_ = STORED;
    [all...]
  /frameworks/base/core/java/com/android/internal/content/
PackageHelper.java 265 if (zipEntry.getMethod() == ZipEntry.STORED) {
266 // Preserve the STORED method of the input entry.
  /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.)
  /external/jmonkeyengine/engine/src/core-plugins/com/jme3/asset/plugins/
HttpZipLocator.java 213 if (method != ZipEntry.DEFLATED && method != ZipEntry.STORED){

Completed in 671 milliseconds

1 2