Lines Matching refs:buf
16 #define DO1(buf,i) {adler += (buf)[i]; sum2 += adler;} argument
17 #define DO2(buf,i) DO1(buf,i); DO1(buf,i+1); argument
18 #define DO4(buf,i) DO2(buf,i); DO2(buf,i+2); argument
19 #define DO8(buf,i) DO4(buf,i); DO4(buf,i+4); argument
20 #define DO16(buf) DO8(buf,0); DO8(buf,8); argument
63 uLong ZEXPORT adler32_z(adler, buf, len) in adler32_z() argument
65 const Bytef *buf;
77 adler += buf[0];
87 if (buf == Z_NULL)
93 adler += *buf++;
107 DO16(buf); /* 16 sums unrolled */
108 buf += 16;
118 DO16(buf);
119 buf += 16;
122 adler += *buf++;
134 uLong ZEXPORT adler32(adler, buf, len) in adler32() argument
136 const Bytef *buf;
139 return adler32_z(adler, buf, len);