• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/zip30/

Lines Matching refs:siz

992 /* updates the len, siz and off members of zlist with the corresponding values of   */
993 /* the zip64 extra field, that is if either the len, siz or off member of zlist is */
1021 if (pZipListEntry->siz == ZIP_UWORD32_MAX)
1023 pZipListEntry->siz = LLG(pTemp);
1069 if (pZipListEntry->siz == ZIP_UWORD32_MAX)
1071 pZipListEntry->siz = LLG(pTemp);
1105 if (pZipListEntry->siz > ZIP_UWORD32_MAX) {
1211 if (pZipListEntry->siz > ZIP_UWORD32_MAX) {
1212 write_int64_to_mem(pZipListEntry->siz, pExtraFieldPtr + esize);
1405 write_int64_to_mem(pZEntry->siz, pZ64Extra + 2 + 2 + 8);
1696 size_t siz;
1730 siz = fread( waste, 1, 1, file);
1971 z->siz = LG(LOCSIZ + b);
1985 s = fix > 1 ? 0L : z->siz; /* discard compressed size with -FF */
2016 /* adjust/update siz,len and off (to come: dsk) entries */
2021 /* z->siz may be updated */
2022 s = fix > 1 ? 0L : z->siz; /* discard compressed size with -FF */
2088 z->siz = s;
2092 z->siz = s;
2110 if (s != z->siz) {
2112 zip_fzofft(z->siz, NULL, "u"), zip_fzofft(s, NULL, "u"),
2114 z->siz = s;
2307 locz->siz = z->siz;
2671 /* here, we have to read the len, siz etc values from the CD */
2677 z->siz = LG(CENSIZ + b);
2683 /* adjust/update siz,len and off (to come: dsk) entries */
2758 len, siz and off in struct zlist are type of int64 if ZIP64_SUPPORT
2823 z->siz = LG((CENSIZ-CENVER) + u);
3596 z->siz = 0;
3631 bytes_total += z->siz;
3724 cz->siz = LG(CENSIZ + scbuf);
3789 /* z->siz = cz->siz; */
3841 /* here, we have to read the len, siz etc values from the CD */
3847 /* adjust/update siz,len and off (to come: dsk) entries */
4800 z->siz = LG(CENSIZ + scbuf);
4895 /* here, we have to read the len, siz etc values from the CD */
4901 /* adjust/update siz,len and off (to come: dsk) entries */
5277 /* If any of compressed size (siz), uncompressed size (len), offset(off), or
5280 Only siz and len are in the local header while all can be in the central
5321 if (z->siz > ZIP_UWORD32_MAX || z->len > ZIP_UWORD32_MAX ||
5338 if (z->siz > ZIP_UWORD32_MAX || z->len > ZIP_UWORD32_MAX ||
5433 append_ulong_to_mem((ulg)z->siz, &block, &offset, &blocksize);/* compressed size */
5437 append_ulong_to_mem((ulg)z->siz, &block, &offset, &blocksize); /* compressed size */
5525 append_int64_to_mem(z->siz, &block, &offset, &blocksize); /* compressed size */
5594 append_ulong_to_mem((ulg)z->siz, &block, &offset, &blocksize); /* compressed size */
5598 append_ulong_to_mem((ulg)z->siz, &block, &offset, &blocksize); /* compressed size */
5616 /* If any of compressed size (siz), uncompressed size (len), offset(off), or
5619 Only siz and len are in the local header while all are in the central directory
5624 (len), len then siz, len then siz then off, or len then siz then off then dsk, in
5664 if (z->siz > ZIP_UWORD32_MAX || z->len > ZIP_UWORD32_MAX ||
5679 if (z->siz > ZIP_UWORD32_MAX)
5681 /* instead of z->siz */
5686 append_ulong_to_mem((ulg)z->siz, &block, &offset, &blocksize); /* compressed size */
5732 append_ulong_to_mem((ulg)z->siz, &block, &offset, &blocksize); /* compressed size */
6123 localz->siz = LG(LOCSIZ + buf);
6243 z->siz = localz->siz;
6264 localz->siz = z->siz;
6285 n = z->siz;
6291 n += z->siz;
6317 use siz and len from the central directory, we don't need the extended
6343 n += e + z->siz;
6385 r = bfcopy(localz->siz);
6439 localz->siz = des_csize;
6488 z->siz = localz->siz;
6524 sprintf(errbuf, " (%s bytes)", zip_fzofft(z->siz, NULL, "u"));
6530 zip_fzofft(localz->siz, NULL, "u"), zip_fzofft(bytes_this_entry, NULL, "u"));