Home | History | Annotate | Download | only in applypatch

Lines Matching full:gzip

25  * "normal" and "gzip".  Normal chunks are simply patched using a plain bsdiff.  Gzip chunks are
34 * included in the zlib distribution, not the GNU gzip program.
46 * byte sequence 1f8b0800: 1f8b is the gzip magic number; 08 specifies the "deflate" encoding
47 * [the only encoding supported by the gzip standard]; and 00 is the flags byte. We do not
58 * chunk type (4) [CHUNK_{NORMAL, GZIP, DEFLATE, RAW}]
69 * gzip level (4)
74 * gzip header len (4)
75 * gzip header (gzip header len)
76 * gzip footer (8)
83 * gzip level (4)
93 * input image that comprises this chunk, including the gzip header and footer for gzip chunks.
1254 // 0x00 no header flags, 0x08 deflate compression, 0x1f8b gzip magic number
1256 // 'pos' is the offset of the start of a gzip chunk.
1259 // The remaining data is too small to be a gzip chunk; treat them as a normal chunk.
1340 // Use a normal chunk to take all the contents until the next gzip chunk (or EOF); we expect
1343 // Scan forward until we find a gzip header.
1376 // In image mode, merge the gzip header and footer in with any adjacent normal chunks.