Lines Matching defs:size
61 # define ALLOC(size) (malloc(size))
140 uLong size_centralheader; /* size of the central header for cur file */
521 ZPOS64_T uMaxBack=0xffff; /* maximum size of global comment */
598 ZPOS64_T uMaxBack = 0xffff; /* maximum size of global comment */
734 ZPOS64_T size_central_dir; /* size of the central directory */
783 /* size of zip64 end of central directory record */
830 /* size of the central directory */
900 /* size of the central directory */
1159 // CRC / Compressed size / Uncompressed size will be filled in later and rewritten later
1168 err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)0xFFFFFFFF,4); /* compressed size, unknown */
1172 err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)0,4); /* compressed size, unknown */
1179 err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)0xFFFFFFFF,4); /* uncompressed size, unknown */
1183 err = zip64local_putValue(&zi->z_filefunc,zi->filestream,(uLong)0,4); /* uncompressed size, unknown */
1227 // Remember position of Zip64 extended info for the local file header. (needed when we update size after done with file)
1386 zip64local_putValue_inmemory(zi->ci.central_header+20,(uLong)0,4); /*compr size*/
1387 zip64local_putValue_inmemory(zi->ci.central_header+24,(uLong)0,4); /*uncompr size*/
1918 zip64local_putValue_inmemory(zi->ci.central_header+20, invalidValue,4); /*compr size*/
1922 zip64local_putValue_inmemory(zi->ci.central_header+20, compressed_size,4); /*compr size*/
1933 zip64local_putValue_inmemory(zi->ci.central_header+24, invalidValue,4); /*uncompr size*/
1937 zip64local_putValue_inmemory(zi->ci.central_header+24, uncompressed_size,4); /*uncompr size*/
1940 // Add ZIP64 extra info field for uncompressed size
1946 // Add ZIP64 extra info field for compressed size
1995 // and increase the centralheader size so the new ZIP64 fields are included
1996 // ( 4 below is the size of HeaderID and DataSize field )
2000 // Update the extra info size field
2032 // Update the size in the ZIP64 extended field.
2038 if (err == ZIP_OK) /* compressed size, unknown */
2043 if (err == ZIP_OK) /* uncompressed size, unknown */
2055 if (err == ZIP_OK) /* compressed size, unknown */
2060 if (err == ZIP_OK) /* uncompressed size, unknown */
2120 if (err == ZIP_OK) /* size of this 'zip64 end of central directory' */
2155 if (err == ZIP_OK) /* size of the central directory */
2211 if (err == ZIP_OK) /* size of the central directory */
2338 int size = 0;
2368 size += dataSize + 4;
2373 if(size < *dataLen)
2379 if(size > 0)
2381 memcpy(pData, pNewHeader, size);
2384 // set the new extra info size
2385 *dataLen = size;