Searched refs:Z_BUFSIZE (Results 1 - 10 of 10) sorted by relevance

/netbsd-6-1-5-RELEASE/sys/arch/evbarm/stand/gzboot/
H A Dgzboot.c78 #define Z_BUFSIZE 1024 macro
198 got = readbuf(s, s->inbuf, Z_BUFSIZE);
259 got = readbuf(s, s->inbuf, Z_BUFSIZE);
367 state.stream.next_in = state.inbuf = alloc(Z_BUFSIZE);
377 dealloc(state.inbuf, Z_BUFSIZE);
382 while ((len = readgz(&state, cp, Z_BUFSIZE)) > 0)
389 dealloc(state.inbuf, Z_BUFSIZE);
/netbsd-6-1-5-RELEASE/sys/arch/hpc/stand/hpcboot/
H A Dfile.cpp56 memset(_inbuf, 0, Z_BUFSIZE);
H A Dfile.h64 #define Z_BUFSIZE 1024 macro
79 uint8_t _inbuf[Z_BUFSIZE]; /* input buffer */
H A Dfile_manager.cpp136 got = _file->read(_inbuf, Z_BUFSIZE);
280 got = _file->read(_inbuf, Z_BUFSIZE);
/netbsd-6-1-5-RELEASE/common/dist/zlib/
H A Dgzio.c24 #ifndef Z_BUFSIZE
26 # define Z_BUFSIZE 4096 /* minimize memory usage for 16-bit DOS */ macro
28 # define Z_BUFSIZE 16384 macro
165 s->stream.next_out = s->outbuf = (Byte*)ALLOC(Z_BUFSIZE);
171 s->stream.next_in = s->inbuf = (Byte*)ALLOC(Z_BUFSIZE);
184 s->stream.avail_out = Z_BUFSIZE;
253 if (fwrite(s->outbuf, 1, Z_BUFSIZE, s->file) != Z_BUFSIZE) {
256 s->stream.avail_out = Z_BUFSIZE;
273 s->stream.avail_in = (uInt)fread(s->inbuf, 1, Z_BUFSIZE,
[all...]
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/zlib/
H A Dgzio.c22 #ifndef Z_BUFSIZE
24 # define Z_BUFSIZE 4096 /* minimize memory usage for 16-bit DOS */ macro
26 # define Z_BUFSIZE 16384 macro
159 s->stream.next_out = s->outbuf = (Byte*)ALLOC(Z_BUFSIZE);
165 s->stream.next_in = s->inbuf = (Byte*)ALLOC(Z_BUFSIZE);
178 s->stream.avail_out = Z_BUFSIZE;
247 if (fwrite(s->outbuf, 1, Z_BUFSIZE, s->file) != Z_BUFSIZE) {
250 s->stream.avail_out = Z_BUFSIZE;
267 s->stream.avail_in = (uInt)fread(s->inbuf, 1, Z_BUFSIZE,
[all...]
/netbsd-6-1-5-RELEASE/sys/arch/atari/stand/tostools/libtos/
H A Dcread.c61 #define Z_BUFSIZE 1024 macro
63 #define Z_BUFSIZE 32*1024 macro
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);
/netbsd-6-1-5-RELEASE/sys/lib/libsa/
H A Dcread.c55 #define Z_BUFSIZE 1024 macro
57 #define Z_BUFSIZE 4096 macro
154 got = oread(s->fd, s->inbuf, Z_BUFSIZE);
274 s->stream.next_in = s->inbuf = (unsigned char *)alloc(Z_BUFSIZE);
312 dealloc(s->inbuf, Z_BUFSIZE);
363 got = oread(fd, s->inbuf, Z_BUFSIZE);
/netbsd-6-1-5-RELEASE/common/dist/zlib/contrib/minizip/
H A Dzip.c43 #ifndef Z_BUFSIZE
44 #define Z_BUFSIZE (16384) macro
129 Byte buffered_data[Z_BUFSIZE];/* buffer contain compressed data to be writ*/
858 zi->ci.stream.avail_out = (uInt)Z_BUFSIZE;
993 zi->ci.stream.avail_out = (uInt)Z_BUFSIZE;
1058 zi->ci.stream.avail_out = (uInt)Z_BUFSIZE;
/netbsd-6-1-5-RELEASE/external/gpl3/gcc/dist/zlib/contrib/minizip/
H A Dzip.c41 #ifndef Z_BUFSIZE
42 #define Z_BUFSIZE (16384) macro
127 Byte buffered_data[Z_BUFSIZE];/* buffer contain compressed data to be writ*/
856 zi->ci.stream.avail_out = (uInt)Z_BUFSIZE;
991 zi->ci.stream.avail_out = (uInt)Z_BUFSIZE;
1056 zi->ci.stream.avail_out = (uInt)Z_BUFSIZE;

Completed in 122 milliseconds