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

12

/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/include/libavutil/
H A Dadler32.h27 unsigned long av_adler32_update(unsigned long adler, const uint8_t *buf,
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/ffmpeg-0.5.1/libavutil/
H A Dadler32.h27 unsigned long av_adler32_update(unsigned long adler, const uint8_t *buf,
H A Dadler32.c33 unsigned long av_adler32_update(unsigned long adler, const uint8_t *buf, unsigned int len) argument
35 unsigned long s1 = adler & 0xffff;
36 unsigned long s2 = adler >> 16;
67 STOP_TIMER("adler")
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/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...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/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...]
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/zlib-1.2.3/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
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/zlib-1.2.3/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
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/include/linux/
H A Dzutil.h71 uLong adler = adler32(0L, NULL, 0);
74 adler = adler32(adler, buffer, length);
76 if (adler != original_adler) error();
78 static inline uLong zlib_adler32(uLong adler, argument
82 unsigned long s1 = adler & 0xffff;
83 unsigned long s2 = (adler >> 16) & 0xffff;
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,
512 Upon return of this function, strm->adler is set to the Adler32 value
607 return a Z_DATA_ERROR). If a gzip stream is being decoded, strm->adler is
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/timemachine/zlib-1.2.3/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);
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/minidlna/zlib-1.2.3/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);
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/lib/zlib_inflate/
H A Dinflate.c31 strm->adler = 1; /* to support ill-conceived Java test suite */
377 strm->adler = state->check = zlib_adler32(0L, NULL, 0);
383 strm->adler = state->check = REVERSE(hold);
391 strm->adler = state->check = zlib_adler32(0L, NULL, 0);
686 strm->adler = state->check =
727 strm->adler = state->check =
780 z->adler = state->check =
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/ppp-2.4.4/pppdump/
H A Dzlib.h610 extern uLong adler32 OF((uLong adler, Bytef *buf, uInt len));
619 uLong adler = adler32(0L, Z_NULL, 0);
622 adler = adler32(adler, buffer, length);
624 if (adler != original_adler) error();
/netgear-WNDR4500-V1.0.1.40_1.0.68/ap/gpl/ppp-2.4.4/common/
H A Dzlib.h292 uLong adler; /* adler32 value of the uncompressed data */ member in struct:z_stream_s
564 In the Z_NEED_DICT case, strm->adler is set to the Adler32 value of the
661 Upon return of this function, strm->adler is set to the Adler32 value
941 extern uLong EXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
950 uLong adler = adler32(0L, Z_NULL, 0);
953 adler = adler32(adler, buffer, length);
955 if (adler != original_adler) error();
/netgear-WNDR4500-V1.0.1.40_1.0.68/src/linux/linux-2.6/lib/zlib_deflate/
H A Ddeflate.c260 strm->adler = 1;
355 putShortMSB(s, (uInt)(strm->adler >> 16));
356 putShortMSB(s, (uInt)(strm->adler & 0xffff));
358 strm->adler = 1L;
442 putShortMSB(s, (uInt)(strm->adler >> 16));
443 putShortMSB(s, (uInt)(strm->adler & 0xffff));
499 strm->adler = zlib_adler32(strm->adler, strm->next_in, len);

Completed in 195 milliseconds

12