Searched refs:adler (Results 1 – 4 of 4) sorted by relevance
/u-boot/lib/zlib/ |
A D | adler32.c | 15 #define DO1(buf,i) {adler += (buf)[i]; sum2 += adler;} 64 adler &= 0xffff; in adler32() 68 adler += buf[0]; in adler32() 69 if (adler >= BASE) in adler32() 70 adler -= BASE; in adler32() 71 sum2 += adler; in adler32() 85 sum2 += adler; in adler32() 87 if (adler >= BASE) in adler32() 88 adler -= BASE; in adler32() 101 MOD(adler); in adler32() [all …]
|
A D | deflate.c | 329 strm->adler = adler32(strm->adler, dictionary, dictLength); 376 strm->adler = 645 strm->adler = crc32(strm->adler, s->pending_buf, 688 strm->adler = crc32(strm->adler, s->pending_buf + beg, 699 strm->adler = crc32(strm->adler, s->pending_buf + beg, 717 strm->adler = crc32(strm->adler, s->pending_buf + beg, 730 strm->adler = crc32(strm->adler, s->pending_buf + beg, 748 strm->adler = crc32(strm->adler, s->pending_buf + beg, 761 strm->adler = crc32(strm->adler, s->pending_buf + beg, 1004 strm->adler = adler32(strm->adler, strm->next_in, len); [all …]
|
A D | inflate.c | 16 strm->adler = 1; /* to support ill-conceived Java test suite */ in inflateReset() 401 strm->adler = state->check = adler32(0L, Z_NULL, 0); in inflate() 529 strm->adler = state->check = crc32(0L, Z_NULL, 0); in inflate() 535 strm->adler = state->check = REVERSE(hold); in inflate() 543 strm->adler = state->check = adler32(0L, Z_NULL, 0); in inflate() 858 strm->adler = state->check = in inflate() 920 strm->adler = state->check = in inflate()
|
/u-boot/include/u-boot/ |
A D | zlib.h | 441 uLong adler; /* adler32 value of the uncompressed data */ member 680 ZEXTERN uLong ZEXPORT adler32 OF((uLong adler, const Bytef *buf, uInt len));
|
Completed in 10 milliseconds