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

1 2 3 4

  /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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/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 */
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
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 */
  /external/pdfium/third_party/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 */
  /external/syslinux/com32/lib/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 */
  /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/ojluni/src/main/java/java/util/zip/
ZipInputStream.java 53 private static final int STORED = ZipEntry.STORED;
128 // if (entry.method == STORED) {
129 if (entry.method == STORED || entry.method == DEFLATED) {
214 case STORED:
ZipOutputStream.java 89 case STORED: return 10;
103 * Compression method for uncompressed (STORED) entries.
105 public static final int STORED = ZipEntry.STORED;
165 if (method != DEFLATED && method != STORED) {
214 case STORED:
216 // set for entries using STORED compression method
223 "STORED entry where compressed != uncompressed size");
227 "STORED entry missing size, compressed size, or crc-32");
286 case STORED
    [all...]
ZipEntry.java 66 public static final int STORED = 0;
181 * be stored into the {@code date and time fields} of the zip file
233 * the last modification time set by this method will be stored into
280 * <p> If set, the last access time will be stored into the extended
317 * <p> If set, the creation time will be stored into the extended
381 * <p> In the case of a stored entry, the compressed size will be the same
433 * @param method the compression method, either STORED or DEFLATED
440 if (method != STORED && method != DEFLATED) {
ZipFile.java 77 private static final int STORED = ZipEntry.STORED;
391 case STORED:
  /libcore/luni/src/test/java/libcore/java/util/zip/
AbstractZipFileTest.java 133 * Make sure the size used for stored zip entires is the uncompressed size.
140 // Set up a single stored entry.
145 outEntry.setMethod(ZipEntry.STORED);
268 ze.setMethod(ZipEntry.STORED);
277 ze.setMethod(ZipEntry.STORED);
287 ze.setMethod(ZipEntry.STORED);
298 ze.setMethod(ZipEntry.STORED);
308 ze.setMethod(ZipEntry.STORED);
328 ze.setMethod(ZipEntry.STORED);
348 ze.setMethod(ZipEntry.STORED);
    [all...]
OldAndroidZipStreamTest.java 124 newEntry.setMethod(ZipEntry.STORED);
  /external/desugar/java/com/google/devtools/build/android/desugar/
ZipOutputFileProvider.java 59 // Need to pre-compute checksum for STORED (uncompressed) entries)
70 result.setMethod(ZipEntry.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/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
ZipOutputStreamTest.java 167 zos.setMethod(ZipOutputStream.STORED);
212 zip.setMethod(ZipEntry.STORED);
275 zip1.setMethod(ZipOutputStream.STORED);
276 zip1.setMethod(ZipEntry.STORED);
ZipEntryTest.java 132 java.util.zip.ZipEntry.STORED, zentry.getMethod());
319 zentry.setMethod(ZipEntry.STORED);
321 ZipEntry.STORED, zentry.getMethod());
  /external/archive-patcher/shared/src/test/java/com/google/archivepatcher/shared/
UnitTestZipArchive.java 35 * contains four files, one each at compression levels 0 (stored), 1 (fastest), 6 (default), and 9
77 * The data for the fourth entry in the zip file, stored (uncompressed / level 0). Has a comment.
83 "File 4 data here, this is stored uncompressed. With comment.",
168 zipOut.setMethod(ZipOutputStream.STORED);
  /libcore/luni/src/main/java/libcore/io/
ClassPathURLStreamHandler.java 74 * Returns true if an entry with the specified name exists and is stored (not compressed),
79 return entry != null && entry.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:
  /libcore/ojluni/src/main/native/
java_util_zip_ZipFile.c 54 #define STORED 0
214 return ze->csize != 0 ? DEFLATED : STORED;
zip_util.h 142 #define STORED 0
  /packages/apps/Messaging/src/android/support/v7/mms/pdu/
PduHeaders.java 68 public static final int STORED = 0xA7;
129 * X-Mms-Stored |
371 case STORED:
  /packages/apps/Messaging/src/com/android/messaging/mmslib/pdu/
PduHeaders.java 71 public static final int STORED = 0xA7;
132 * X-Mms-Stored |
391 case STORED:

Completed in 480 milliseconds

1 2 3 4