Searched refs:adler (Results 1 - 25 of 27) sorted by relevance

12

/external/chromium/sdch/open-vcdiff/src/
H A Dadler32.c15 #define DO1(buf,i) {adler += (buf)[i]; sum2 += adler;}
97 uLong ZEXPORT adler32(adler, buf, len)
98 uLong adler;
106 sum2 = (adler >> 16) & 0xffff;
107 adler &= 0xffff;
111 adler += buf[0];
112 if (adler >= BASE)
113 adler -= BASE;
114 sum2 += adler;
[all...]
H A Dzlib.h99 uLong adler; /* adler32 value of the uncompressed data */ member in struct:z_stream_s
309 deflate() sets strm->adler to the adler32 checksum of all input read
431 below), inflate sets strm->adler to the adler32 checksum of the dictionary
433 strm->adler to the adler32 checksum of all output produced so far (that is,
509 gzip stream is being written, strm->adler is a crc32 instead of an adler32.
563 Upon return of this function, strm->adler is set to the adler32 value
568 adler32 value is not computed and strm->adler is not set.
725 return a Z_DATA_ERROR). If a gzip stream is being decoded, strm->adler is
1263 ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
1271 uLong adler
[all...]
/external/qemu/distrib/zlib-1.2.3/
H A Dadler32.c15 #define DO1(buf,i) {adler += (buf)[i]; sum2 += adler;}
57 uLong ZEXPORT adler32(adler, buf, len)
58 uLong adler;
66 sum2 = (adler >> 16) & 0xffff;
67 adler &= 0xffff;
71 adler += buf[0];
72 if (adler >= BASE)
73 adler -= BASE;
74 sum2 += adler;
[all...]
H A Ddeflate.c332 strm->adler = adler32(strm->adler, dictionary, dictLength);
379 strm->adler =
580 strm->adler = crc32(0L, Z_NULL, 0);
616 strm->adler = crc32(strm->adler, s->pending_buf,
645 putShortMSB(s, (uInt)(strm->adler >> 16));
646 putShortMSB(s, (uInt)(strm->adler & 0xffff));
648 strm->adler = adler32(0L, Z_NULL, 0);
659 strm->adler
[all...]
H A Dzlib.h99 uLong adler; /* adler32 value of the uncompressed data */ member in struct:z_stream_s
309 deflate() sets strm->adler to the adler32 checksum of all input read
431 below), inflate sets strm->adler to the adler32 checksum of the dictionary
433 strm->adler to the adler32 checksum of all output produced so far (that is,
509 gzip stream is being written, strm->adler is a crc32 instead of an adler32.
563 Upon return of this function, strm->adler is set to the adler32 value
568 adler32 value is not computed and strm->adler is not set.
725 return a Z_DATA_ERROR). If a gzip stream is being decoded, strm->adler is
1260 ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
1268 uLong adler
[all...]
H A Dinflate.c112 strm->adler = 1; /* to support ill-conceived Java test suite */
629 strm->adler = state->check = adler32(0L, Z_NULL, 0);
757 strm->adler = state->check = crc32(0L, Z_NULL, 0);
763 strm->adler = state->check = REVERSE(hold);
771 strm->adler = state->check = adler32(0L, Z_NULL, 0);
1084 strm->adler = state->check =
1146 strm->adler = state->check =
/external/zlib/
H A Dadler32.c18 #define DO1(buf,i) {adler += (buf)[i]; sum2 += adler;}
65 uLong ZEXPORT adler32(adler, buf, len)
66 uLong adler;
74 sum2 = (adler >> 16) & 0xffff;
75 adler &= 0xffff;
79 adler += buf[0];
80 if (adler >= BASE)
81 adler -= BASE;
82 sum2 += adler;
[all...]
H A Ddeflate.c343 strm->adler = adler32(strm->adler, dictionary, dictLength);
414 strm->adler =
691 strm->adler = crc32(0L, Z_NULL, 0);
727 strm->adler = crc32(strm->adler, s->pending_buf,
756 putShortMSB(s, (uInt)(strm->adler >> 16));
757 putShortMSB(s, (uInt)(strm->adler & 0xffff));
759 strm->adler = adler32(0L, Z_NULL, 0);
770 strm->adler
[all...]
H A Dinflate.c113 strm->adler = state->wrap & 1;
686 strm->adler = state->check = adler32(0L, Z_NULL, 0);
814 strm->adler = state->check = crc32(0L, Z_NULL, 0);
820 strm->adler = state->check = REVERSE(hold);
828 strm->adler = state->check = adler32(0L, Z_NULL, 0);
1185 strm->adler = state->check =
1248 strm->adler = state->check =
H A Dzlib.h102 uLong adler; /* adler32 value of the uncompressed data */ member in struct:z_stream_s
334 deflate() sets strm->adler to the adler32 checksum of all input read
472 below), inflate sets strm->adler to the Adler-32 checksum of the dictionary
474 strm->adler to the Adler-32 checksum of all output produced so far (that is,
553 gzip stream is being written, strm->adler is a crc32 instead of an adler32.
614 Upon return of this function, strm->adler is set to the adler32 value
619 adler32 value is not computed and strm->adler is not set.
801 return a Z_DATA_ERROR). If a gzip stream is being decoded, strm->adler is a
1546 ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
1557 uLong adler
[all...]
/external/zlib/contrib/dotzlib/DotZLib/
H A DUnitTests.cs121 AdlerChecksum adler = new AdlerChecksum();
122 Assert.AreEqual(0, adler.Value);
124 adler = new AdlerChecksum(1);
125 Assert.AreEqual( 1, adler.Value );
127 adler = new AdlerChecksum(556);
128 Assert.AreEqual( 556, adler.Value );
134 AdlerChecksum adler = new AdlerChecksum(1);
136 adler.Update(data);
137 Assert.AreEqual( 0x5b001d, adler.Value );
139 adler
[all...]
H A DInflater.cs77 setChecksum( _ztream.adler );
93 setChecksum( _ztream.adler );
H A DDeflater.cs79 setChecksum( _ztream.adler );
95 setChecksum( _ztream.adler );
H A DChecksumImpl.cs160 private static extern uint adler32(uint adler, int data, uint length); argument
H A DDotZLib.cs49 public uint adler; field in struct:DotZLib.ZStream
/external/zlib/examples/
H A Dgzappend.c369 strm->adler = crc;
418 if (len) strm->adler = crc32(strm->adler, in, (unsigned)len);
437 out[0] = (unsigned char)(strm->adler);
438 out[1] = (unsigned char)(strm->adler >> 8);
439 out[2] = (unsigned char)(strm->adler >> 16);
440 out[3] = (unsigned char)(strm->adler >> 24);
/external/kernel-headers/original/linux/
H A Dzlib.h99 uLong adler; /* adler32 value of the uncompressed data */ member in struct:z_stream_s
273 deflate() sets strm->adler to the adler32 checksum of all input read
400 below), inflate sets strm->adler to the adler32 checksum of the dictionary
402 strm->adler to the adler32 checksum of all output produced so far (that is,
517 Upon return of this function, strm->adler is set to the Adler32 value
618 return a Z_DATA_ERROR). If a gzip stream is being decoded, strm->adler is
/external/zlib/contrib/pascal/
H A Dzlibpas.pas45 adler: LongInt; (* adler32 value of the uncompressed data *)
154 function adler32(adler: LongInt; const buf: PChar; len: Integer): LongInt;
H A Dexample.pas464 dictId := c_stream.adler;
511 if d_stream.adler <> dictId then
/external/zlib/test/
H A Dexample.c475 dictId = c_stream.adler;
520 if (d_stream.adler != dictId) {
/external/chromium/net/tools/spdyshark/
H A Dpacket-spdy.c777 if (decomp->adler != dictionary_id) {
779 (guint)decomp->adler, dictionary_id);
/external/zlib/old/as400/
H A Dzlib.inc309 D adler 10U 0 value Old checksum
/external/chromium/net/spdy/
H A Dspdy_framer.cc93 if (decompressor->adler == dictionary_id) {
1532 if (decompressor->adler == dictionary_id) {
/external/zlib/as400/
H A Dzlib.inc410 D adler 10U 0 value Old checksum
/external/zlib/contrib/delphi/
H A DZLib.pas40 adler: Longint; // adler32 value of the uncompressed data

Completed in 322 milliseconds

12