OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:d_stream
(Results
1 - 2
of
2
) sorted by null
/external/zlib/src/test/
example.c
243
z_stream
d_stream
; /* decompression stream */
local
247
d_stream
.zalloc = zalloc;
248
d_stream
.zfree = zfree;
249
d_stream
.opaque = (voidpf)0;
251
d_stream
.next_in = compr;
252
d_stream
.avail_in = 0;
253
d_stream
.next_out = uncompr;
255
err = inflateInit(&
d_stream
);
258
while (
d_stream
.total_out < uncomprLen &&
d_stream
.total_in < comprLen)
339
z_stream
d_stream
; \/* decompression stream *\/
local
418
z_stream
d_stream
; \/* decompression stream *\/
local
499
z_stream
d_stream
; \/* decompression stream *\/
local
[
all
...]
/external/zlib/src/contrib/pascal/
example.pas
232
d_stream
: z_stream; (* decompression stream *)
236
d_stream
.zalloc := NIL;
237
d_stream
.zfree := NIL;
238
d_stream
.opaque := NIL;
240
d_stream
.next_in := compr;
241
d_stream
.avail_in := 0;
242
d_stream
.next_out := uncompr;
244
err := inflateInit(
d_stream
);
247
while (
d_stream
.total_out < uncomprLen) and
248
(
d_stream
.total_in < comprLen) d
[
all
...]
Completed in 1140 milliseconds