Lines Matching refs:uInt
44 extern voidp malloc OF((uInt size));
336 s->stream.avail_in = (uInt)fread(s->inbuf, 1, Z_BUFSIZE, s->file);
362 uInt len;
387 len = (uInt)fread(s->inbuf + len, 1, Z_BUFSIZE >> len, s->file);
420 len = (uInt)get_byte(s);
421 len += ((uInt)get_byte(s))<<8;
519 uInt n = s->stream.avail_in;
531 (uInt)fread(next_out, 1, s->stream.avail_out, s->file);
542 s->stream.avail_in = (uInt)fread(s->inbuf, 1, Z_BUFSIZE, s->file);
563 s->crc = crc32(s->crc, start, (uInt)(s->stream.next_out - start));
597 s->crc = crc32(s->crc, start, (uInt)(s->stream.next_out - start));
854 uInt len;
866 if ((uInt)fwrite(s->outbuf, 1, len, s->file) != len) {
940 uInt size = Z_BUFSIZE;
941 if (offset < Z_BUFSIZE) size = (uInt)offset;
992 size = gzread(file, s->outbuf, (uInt)size);