HomeSort by relevance Sort by last modified time
    Searched full:strm (Results 26 - 50 of 123) sorted by null

12 3 4 5

  /ndk/build/platforms/android-5/arch-x86/usr/include/linux/
zlib.h 73 #define zlib_deflateInit(strm, level) zlib_deflateInit2((strm), (level), Z_DEFLATED, MAX_WBITS, DEF_MEM_LEVEL, Z_DEFAULT_STRATEGY)
74 #define zlib_inflateInit(strm) zlib_inflateInit2((strm), DEF_WBITS)
  /ndk/build/platforms/android-8/arch-arm/usr/include/linux/
zlib.h 73 #define zlib_deflateInit(strm, level) zlib_deflateInit2((strm), (level), Z_DEFLATED, MAX_WBITS, DEF_MEM_LEVEL, Z_DEFAULT_STRATEGY)
74 #define zlib_inflateInit(strm) zlib_inflateInit2((strm), DEF_WBITS)
  /ndk/build/platforms/android-8/arch-x86/usr/include/linux/
zlib.h 73 #define zlib_deflateInit(strm, level) zlib_deflateInit2((strm), (level), Z_DEFLATED, MAX_WBITS, DEF_MEM_LEVEL, Z_DEFAULT_STRATEGY)
74 #define zlib_inflateInit(strm) zlib_inflateInit2((strm), DEF_WBITS)
  /external/zlib/examples/
gzappend.c 253 /* decompress gzip file "name", return strm with a deflate stream ready to
257 local int gzscan(char *name, z_stream *strm, int level)
281 strm->zalloc = Z_NULL;
282 strm->zfree = Z_NULL;
283 strm->opaque = Z_NULL;
284 ret = inflateInit2(strm, -15);
291 strm->avail_in = gz.left;
292 strm->next_in = gz.next;
297 if (strm->avail_in == 0) {
299 strm->avail_in = gz.left
467 z_stream strm; local
    [all...]
gzjoin.c 253 local void zpull(z_streamp strm, bin *in)
259 strm->avail_in = in->left;
260 strm->next_in = in->next;
288 z_stream strm; /* zlib inflate stream */ local
299 strm.zalloc = Z_NULL;
300 strm.zfree = Z_NULL;
301 strm.opaque = Z_NULL;
302 strm.avail_in = 0;
303 strm.next_in = Z_NULL;
304 ret = inflateInit2(&strm, -15)
    [all...]
gzlog.c 269 z_stream strm; local
296 strm.zalloc = Z_NULL;
297 strm.zfree = Z_NULL;
298 strm.opaque = Z_NULL;
299 if (deflateInit2(&strm, Z_BEST_COMPRESSION, Z_DEFLATED, -15, 8,
305 strm.next_in = in;
306 strm.avail_out = max;
307 strm.next_out = out;
309 if (strm.next_in[0] != 0)
311 strm.avail_in = strm.next_in[1] + (strm.next_in[2] << 8)
    [all...]
gun.c 189 of buffered input at next. strm is used for passing error information back
193 file, read error, or write error (a write error indicated by strm->next_in
197 int outfile, z_stream *strm)
225 strm->msg = (char *)"unknown lzw flags set";
230 strm->msg = (char *)"lzw bits out of range";
250 strm->msg = (char *)"invalid lzw code";
277 strm->next_in = outbuf; /* signal write error */
317 strm->msg = (char *)"invalid lzw code";
347 strm->next_in = outbuf; /* signal write error */
362 /* Decompress a gzip file from infile to outfile. strm is assumed to have bee
627 z_stream strm; local
    [all...]
  /external/qemu/distrib/zlib-1.2.3/
infback.c 22 strm provides memory allocation functions in zalloc and zfree, or
28 int ZEXPORT inflateBackInit_(strm, windowBits, window, version, stream_size)
29 z_streamp strm;
40 if (strm == Z_NULL || window == Z_NULL ||
43 strm->msg = Z_NULL; /* in case we return an error */
44 if (strm->zalloc == (alloc_func)0) {
45 strm->zalloc = zcalloc;
46 strm->opaque = (voidpf)0;
48 if (strm->zfree == (free_func)0) strm->zfree = zcfree
    [all...]
inffast.h 11 void inflate_fast OF((z_streamp strm, unsigned start));
deflate.c 84 local void flush_pending OF((z_streamp strm));
85 local int read_buf OF((z_streamp strm, Bytef *buf, unsigned size));
204 int ZEXPORT deflateInit_(strm, level, version, stream_size)
205 z_streamp strm;
210 return deflateInit2_(strm, level, Z_DEFLATED, MAX_WBITS, DEF_MEM_LEVEL,
212 /* To do: ignore strm->next_in if we use it as window */
216 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
218 z_streamp strm;
240 if (strm == Z_NULL) return Z_STREAM_ERROR;
242 strm->msg = Z_NULL
    [all...]
zutil.h 58 #define ERR_RETURN(strm,err) \
59 return (strm->msg = (char*)ERR_MSG(err), (err))
264 #define ZALLOC(strm, items, size) \
265 (*((strm)->zalloc))((strm)->opaque, (items), (size))
266 #define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
  /external/zlib/
infback.c 22 strm provides memory allocation functions in zalloc and zfree, or
28 int ZEXPORT inflateBackInit_(strm, windowBits, window, version, stream_size)
29 z_streamp strm;
40 if (strm == Z_NULL || window == Z_NULL ||
43 strm->msg = Z_NULL; /* in case we return an error */
44 if (strm->zalloc == (alloc_func)0) {
45 strm->zalloc = zcalloc;
46 strm->opaque = (voidpf)0;
48 if (strm->zfree == (free_func)0) strm->zfree = zcfree
    [all...]
inffast.h 11 void inflate_fast OF((z_streamp strm, unsigned start));
deflate.c 84 local void flush_pending OF((z_streamp strm));
85 local int read_buf OF((z_streamp strm, Bytef *buf, unsigned size));
204 int ZEXPORT deflateInit_(strm, level, version, stream_size)
205 z_streamp strm;
210 return deflateInit2_(strm, level, Z_DEFLATED, MAX_WBITS, DEF_MEM_LEVEL,
212 /* To do: ignore strm->next_in if we use it as window */
216 int ZEXPORT deflateInit2_(strm, level, method, windowBits, memLevel, strategy,
218 z_streamp strm;
240 if (strm == Z_NULL) return Z_STREAM_ERROR;
242 strm->msg = Z_NULL
    [all...]
zutil.h 58 #define ERR_RETURN(strm,err) \
59 return (strm->msg = (char*)ERR_MSG(err), (err))
264 #define ZALLOC(strm, items, size) \
265 (*((strm)->zalloc))((strm)->opaque, (items), (size))
266 #define ZFREE(strm, addr) (*((strm)->zfree))((strm)->opaque, (voidpf)(addr))
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
expanded-fst.h 38 static ExpandedFst<A> *Read(istream &strm, const FstReadOptions &opts) {
44 if (!hdr.Read(strm, opts.source))
61 Fst<A> *fst = reader(strm, ropts);
67 ifstream strm(filename.c_str());
68 if (!strm) {
72 return Read(strm, FstReadOptions(filename));
float-weight.h 46 istream &Read(istream &strm) {
47 return ReadType(strm, &value_);
50 ostream &Write(ostream &strm) const {
51 return WriteType(strm, value_);
85 inline ostream &operator<<(ostream &strm, const FloatWeight &w) {
87 return strm << "Infinity";
89 return strm << "-Infinity";
91 return strm << "BadFloat";
93 return strm << w.Value();
96 inline istream &operator>>(istream &strm, FloatWeight &w)
    [all...]
encode.h 131 bool Write(ostream &strm, const string &source) const {
132 WriteType(strm, kEncodeMagicNumber);
133 WriteType(strm, flags_);
135 WriteType(strm, size);
138 WriteType(strm, tuple->ilabel);
139 WriteType(strm, tuple->olabel);
140 tuple->weight.Write(strm);
142 strm.flush();
143 if (!strm)
145 return strm;
    [all...]
symbol-table.h 63 static SymbolTableImpl* Read(istream &strm, const string& source);
65 bool Write(ostream &strm) const;
67 bool WriteText(ostream &strm) const;
236 static SymbolTable* Read(istream &strm, const string& source) {
237 SymbolTableImpl* impl = SymbolTableImpl::Read(strm, source);
246 ifstream strm(filename.c_str());
247 if (!strm) {
251 return Read(strm, filename);
254 bool Write(ostream &strm) const {
255 return impl_->Write(strm);
    [all...]
vector-fst.h 198 static VectorFstImpl<A> *Read(istream &strm, const FstReadOptions &opts);
204 bool Write(ostream &strm, const FstWriteOptions &opts) const;
350 VectorFstImpl<A> *VectorFstImpl<A>::Read(istream &strm,
354 if (!impl->ReadHeaderAndSymbols(strm, opts, kMinFileVersion, &hdr))
362 state->final.Read(strm);
364 ReadType(strm, &narcs);
365 if (!strm) {
372 ReadType(strm, &arc.ilabel);
373 ReadType(strm, &arc.olabel);
374 arc.weight.Read(strm);
    [all...]
string-weight.h 104 istream &Read(istream &strm);
106 ostream &Write(ostream &strm) const;
226 inline istream &StringWeight<L, S>::Read(istream &strm) {
229 ReadType(strm, &size);
232 ReadType(strm, &label);
235 return strm;
239 inline ostream &StringWeight<L, S>::Write(ostream &strm) const {
241 WriteType(strm, size);
244 WriteType(strm, label);
246 return strm;
    [all...]
  /frameworks/base/core/jni/android/graphics/
Picture.cpp 41 SkStream* strm = CreateJavaInputStreamAdaptor(env, jstream, jstorage); local
42 if (strm) {
43 picture = new SkPicture(strm);
44 delete strm;
63 SkWStream* strm = CreateJavaOutputStreamAdaptor(env, jstream, jstorage); local
65 if (NULL != strm) {
66 picture->serialize(strm);
67 delete strm;
  /external/zlib/as400/
zlib.inc 196 D strm like(z_stream) Compression stream
202 D strm like(z_stream) Compression stream
206 D strm like(z_stream) Compression stream
209 D strm like(z_stream) Expansion stream
214 D strm like(z_stream) Expansion stream
218 D strm like(z_stream) Expansion stream
225 D strm like(z_stream) Compression stream
236 D strm like(z_stream) Compression stream
240 D deflateCopy PR 10I 0 extproc('deflateCopy') Compress strm 2 strm
    [all...]
  /external/zlib/contrib/infback9/
infback9.c 14 strm provides memory allocation functions in zalloc and zfree, or
19 int ZEXPORT inflateBack9Init_(strm, window, version, stream_size)
20 z_stream FAR *strm;
30 if (strm == Z_NULL || window == Z_NULL)
32 strm->msg = Z_NULL; /* in case we return an error */
33 if (strm->zalloc == (alloc_func)0) {
34 strm->zalloc = zcalloc;
35 strm->opaque = (voidpf)0;
37 if (strm->zfree == (free_func)0) strm->zfree = zcfree
    [all...]
  /external/zlib/contrib/ada/
zlib-thin.ads 125 function Deflate (strm : Z_Streamp; flush : Int) return Int;
127 function DeflateEnd (strm : Z_Streamp) return Int;
129 function Inflate (strm : Z_Streamp; flush : Int) return Int;
131 function InflateEnd (strm : Z_Streamp) return Int;
134 (strm : Z_Streamp;
142 function deflateReset (strm : Z_Streamp) return Int; -- zlib.h:495
145 (strm : Z_Streamp;
151 (strm : Z_Streamp;
156 function inflateSync (strm : Z_Streamp) return Int; -- zlib.h:565
158 function inflateReset (strm : Z_Streamp) return Int; -- zlib.h:58
    [all...]

Completed in 128 milliseconds

12 3 4 5