Lines Matching refs:len
149 void ZLIB_INTERNAL zmemcpy(dest, source, len) in zmemcpy() argument
152 uInt len;
154 if (len == 0) return;
157 } while (--len != 0);
160 int ZLIB_INTERNAL zmemcmp(s1, s2, len) in zmemcmp() argument
163 uInt len;
167 for (j = 0; j < len; j++) {
173 void ZLIB_INTERNAL zmemzero(dest, len) in zmemzero() argument
175 uInt len;
177 if (len == 0) return;
180 } while (--len != 0);