Lines Matching refs:len
63 uLong ZEXPORT adler32_z(adler, buf, len) in adler32_z() argument
66 z_size_t len;
76 if (len == 1) {
91 if (len < 16) {
92 while (len--) {
103 while (len >= NMAX) {
104 len -= NMAX;
115 if (len) { /* avoid modulos if none remaining */
116 while (len >= 16) {
117 len -= 16;
121 while (len--) {
134 uLong ZEXPORT adler32(adler, buf, len) in adler32() argument
137 uInt len;
139 return adler32_z(adler, buf, len);