OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Z_BUFSIZE
(Results
1 - 3
of
3
) sorted by null
/external/qemu/distrib/zlib-1.2.3/
gzio.c
22
#ifndef
Z_BUFSIZE
24
# define
Z_BUFSIZE
4096 /* minimize memory usage for 16-bit DOS */
26
# define
Z_BUFSIZE
16384
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
, s->file)
[
all
...]
/external/chromium_org/third_party/zlib/contrib/minizip/
zip.c
53
#ifndef
Z_BUFSIZE
54
#define
Z_BUFSIZE
(64*1024) //(16384)
150
Byte buffered_data[
Z_BUFSIZE
];/* buffer contain compressed data to be writ*/
[
all
...]
/external/zlib/src/contrib/minizip/
zip.c
53
#ifndef
Z_BUFSIZE
54
#define
Z_BUFSIZE
(64*1024) //(16384)
150
Byte buffered_data[
Z_BUFSIZE
];/* buffer contain compressed data to be writ*/
[
all
...]
Completed in 28 milliseconds