HomeSort by: relevance | last modified time | path
    Searched defs:Z_BUFSIZE (Results 1 - 5 of 5) sorted by relevancy

  /src/sys/arch/hpc/stand/hpcboot/
file.h 64 #define Z_BUFSIZE 1024
79 uint8_t _inbuf[Z_BUFSIZE]; /* input buffer */
  /src/sys/arch/evbarm/stand/gzboot/
gzboot.c 78 #define Z_BUFSIZE 1024
207 got = readbuf(s, s->inbuf, Z_BUFSIZE);
268 got = readbuf(s, s->inbuf, Z_BUFSIZE);
376 state.stream.next_in = state.inbuf = alloc(Z_BUFSIZE);
386 dealloc(state.inbuf, Z_BUFSIZE);
391 while ((len = readgz(&state, cp, Z_BUFSIZE)) > 0)
398 dealloc(state.inbuf, Z_BUFSIZE);
  /src/sys/arch/atari/stand/tostools/libtos/
cread.c 61 #define Z_BUFSIZE 1024
63 #define Z_BUFSIZE 32*1024
128 got = cread(s->fd, s->inbuf, Z_BUFSIZE);
243 s->stream.next_in = s->inbuf = (unsigned char*)malloc(Z_BUFSIZE);
320 got = read(fd, s->inbuf, Z_BUFSIZE);
  /src/sys/lib/libsa/
cread.c 55 #define Z_BUFSIZE 1024
57 #define Z_BUFSIZE 4096
158 got = oread(s->fd, s->inbuf, Z_BUFSIZE);
278 s->stream.next_in = s->inbuf = (unsigned char *)alloc(Z_BUFSIZE);
313 dealloc(s->inbuf, Z_BUFSIZE);
367 got = oread(fd, s->inbuf, Z_BUFSIZE);
  /src/common/dist/zlib/contrib/minizip/
zip.c 52 #ifndef Z_BUFSIZE
53 #define Z_BUFSIZE (64*1024) //(16384)
146 Byte buffered_data[Z_BUFSIZE];/* buffer contain compressed data to be writ*/
1162 zi->ci.bstream.avail_out = (uInt)Z_BUFSIZE;
1171 zi->ci.stream.avail_out = (uInt)Z_BUFSIZE;
1391 zi->ci.bstream.avail_out = (uInt)Z_BUFSIZE;
1424 zi->ci.stream.avail_out = (uInt)Z_BUFSIZE;
1494 zi->ci.stream.avail_out = (uInt)Z_BUFSIZE;
1513 zi->ci.bstream.avail_out = (uInt)Z_BUFSIZE;

Completed in 15 milliseconds