HomeSort by relevance Sort by last modified time
    Searched refs:strm (Results 176 - 200 of 434) sorted by null

1 2 3 4 5 6 78 91011>>

  /external/zlib/src/contrib/pascal/
zlibpas.pas 106 function deflateInit(var strm: z_stream; level: Integer): Integer;
107 function deflate(var strm: z_stream; flush: Integer): Integer;
108 function deflateEnd(var strm: z_stream): Integer;
109 function inflateInit(var strm: z_stream): Integer;
110 function inflate(var strm: z_stream; flush: Integer): Integer;
111 function inflateEnd(var strm: z_stream): Integer;
114 function deflateInit2(var strm: z_stream; level, method, windowBits,
116 function deflateSetDictionary(var strm: z_stream; const dictionary: PChar;
119 function deflateReset(var strm: z_stream): Integer;
120 function deflateParams(var strm: z_stream; level, strategy: Integer): Integer
    [all...]
  /external/lldb/source/Core/
EmulateInstruction.cpp 212 StreamString strm(Stream::eBinary, GetAddressByteSize(), GetByteOrder());
213 strm.PutMaxHex64 (uval, uval_byte_size);
215 size_t bytes_written = m_write_mem_callback (this, m_baton, context, addr, strm.GetData(), uval_byte_size);
364 StreamFile strm (stdout, false);
365 strm.Printf (" Read from Memory (address = 0x%" PRIx64 ", length = %" PRIu64 ", context = ", addr, (uint64_t)length);
366 context.Dump (strm, instruction);
367 strm.EOL();
380 StreamFile strm (stdout, false);
381 strm.Printf (" Write to Memory (address = 0x%" PRIx64 ", length = %" PRIu64 ", context = ", addr, (uint64_t)length);
382 context.Dump (strm, instruction);
    [all...]
  /external/chromium_org/third_party/zlib/
zlib.h 229 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level));
251 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
338 deflate() sets strm->adler to the adler32 checksum of all input read
341 deflate() may update strm->data_type if it can make a good guess about
357 ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm));
372 ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm));
396 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
435 Also to assist in this, on return inflate() will set strm->data_type to the
436 number of unused bits in the last byte taken from strm->next_in, plus 64 if
441 data from that block has been written to strm->next_out. The number o
    [all...]
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.c 43 strm->avail_in >= 6
44 strm->avail_out >= 258
45 start >= strm->avail_out
59 Therefore if strm->avail_in >= 6, then there is enough input to avoid
64 requires strm->avail_out >= 258 for each loop to avoid checking for
67 void ZLIB_INTERNAL inflate_fast(strm, start)
68 z_streamp strm;
69 unsigned start; /* inflate()'s starting value for strm->avail_out */
72 unsigned char FAR *in; /* local strm->next_in */
74 unsigned char FAR *out; /* local strm->next_out *
    [all...]
  /external/qemu/distrib/zlib-1.2.8/
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) {
48 strm->zalloc = zcalloc;
49 strm->opaque = (voidpf)0;
52 if (strm->zfree == (free_func)0)
56 strm->zfree = zcfree
    [all...]
  /external/zlib/src/
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) {
48 strm->zalloc = zcalloc;
49 strm->opaque = (voidpf)0;
52 if (strm->zfree == (free_func)0)
56 strm->zfree = zcfree
    [all...]
  /external/lldb/include/lldb/Core/
UserSettingsController.h 72 Stream &strm,
78 Stream &strm,
83 Stream &strm) const;
  /external/lldb/include/lldb/Interpreter/
Property.h 88 Stream &strm,
92 DumpQualifiedName(Stream &strm) const;
96 Stream &strm,
  /external/lldb/source/Plugins/Process/FreeBSD/
ProcessFreeBSD.h 70 GetPluginCommandHelp(const char *command, lldb_private::Stream *strm);
74 lldb_private::Stream *strm);
77 EnablePluginLogging(lldb_private::Stream *strm,
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
const-fst.h 68 static ConstFstImpl<A> *Read(istream &strm, const FstReadOptions &opts);
70 bool Write(ostream &strm, const FstWriteOptions &opts) const;
161 ConstFstImpl<A> *ConstFstImpl<A>::Read(istream &strm,
165 if (!impl->ReadHeaderAndSymbols(strm, opts, kMinFileVersion, &hdr))
174 for (int i = 0; i < kFileAlign && strm.tellg() % kFileAlign; ++i)
175 strm.read(&c, 1);
178 strm.read(reinterpret_cast<char *>(impl->states_), b);
179 if (!strm) {
185 for (int i = 0; i < kFileAlign && strm.tellg() % kFileAlign; ++i)
186 strm.read(&c, 1)
    [all...]
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));
symbol-table.h 62 static SymbolTableImpl* Read(istream &strm, const string& source);
64 bool Write(ostream &strm) const;
66 bool WriteText(ostream &strm) const;
235 static SymbolTable* Read(istream &strm, const string& source) {
236 SymbolTableImpl* impl = SymbolTableImpl::Read(strm, source);
245 ifstream strm(filename.c_str());
246 if (!strm) {
250 return Read(strm, filename);
253 bool Write(ostream &strm) const {
254 return impl_->Write(strm);
    [all...]
product-weight.h 54 istream &Read(istream &strm) {
55 value1_.Read(strm);
56 return value2_.Read(strm);
59 ostream &Write(ostream &strm) const {
60 value1_.Write(strm);
61 return value2_.Write(strm);
125 inline ostream &operator<<(ostream &strm, const ProductWeight<W1, W2> &w) {
128 return strm << w.Value1() << separator << w.Value2();
132 inline istream &operator>>(istream &strm, ProductWeight<W1, W2> &w) {
139 c = strm.get()
    [all...]
  /external/zlib/src/examples/
gun.c 193 of buffered input at next. strm is used for passing error information back
197 file, read error, or write error (a write error indicated by strm->next_in
201 int outfile, z_stream *strm)
230 strm->msg = (char *)"unknown lzw flags set";
235 strm->msg = (char *)"lzw bits out of range";
255 strm->msg = (char *)"invalid lzw code";
282 strm->next_in = outbuf; /* signal write error */
322 strm->msg = (char *)"invalid lzw code";
354 strm->next_in = outbuf; /* signal write error */
371 /* Decompress a gzip file from infile to outfile. strm is assumed to have bee
636 z_stream strm; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.6/sysroot/usr/include/
zlib.h 223 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level));
245 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
312 deflate() sets strm->adler to the adler32 checksum of all input read
315 deflate() may update strm->data_type if it can make a good guess about
331 ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm));
346 ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm));
370 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
409 Also to assist in this, on return inflate() will set strm->data_type to the
410 number of unused bits in the last byte taken from strm->next_in, plus 64
415 uncompressed data from that block has been written to strm->next_out. Th
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
zlib.h 223 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level));
245 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush));
312 deflate() sets strm->adler to the adler32 checksum of all input read
315 deflate() may update strm->data_type if it can make a good guess about
331 ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm));
346 ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm));
370 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush));
409 Also to assist in this, on return inflate() will set strm->data_type to the
410 number of unused bits in the last byte taken from strm->next_in, plus 64
415 uncompressed data from that block has been written to strm->next_out. Th
    [all...]
  /external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
fx_zlib_infback.c 22 strm provides memory allocation functions in zalloc and zfree, or
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) {
48 strm->zalloc = zcalloc;
49 strm->opaque = (voidpf)0;
52 if (strm->zfree == (free_func)0)
56 strm->zfree = zcfree;
58 state = (struct inflate_state FAR *)ZALLOC(strm, 1
    [all...]
  /frameworks/base/core/jni/
android_graphics_Picture.cpp 38 SkStream* strm = CreateJavaInputStreamAdaptor(env, jstream, jstorage); local
39 if (strm) {
40 picture = Picture::CreateFromStream(strm);
41 delete strm;
64 SkWStream* strm = CreateJavaOutputStreamAdaptor(env, jstream, jstorage); local
66 if (NULL != strm) {
67 picture->serialize(strm);
68 delete strm;
  /external/zlib/src/test/
minigzip.c 175 z_stream strm; member in struct:gzFile_s
208 gz->strm.zalloc = myalloc;
209 gz->strm.zfree = myfree;
210 gz->strm.opaque = Z_NULL;
212 ret = deflateInit2(&(gz->strm), -1, 8, 15 + 16, 8, 0);
214 gz->strm.next_in = 0;
215 gz->strm.avail_in = Z_NULL;
216 ret = inflateInit2(&(gz->strm), 15 + 16);
225 gz->write ? deflateEnd(&(gz->strm)) : inflateEnd(&(gz->strm));
241 z_stream *strm; local
268 z_stream *strm; local
300 z_stream *strm; local
    [all...]
  /external/valgrind/main/perf/
test_input_for_tinycc.c 940 bz_stream* strm,
947 bz_stream* strm,
952 bz_stream* strm
956 bz_stream *strm,
962 bz_stream* strm
966 bz_stream *strm
1009 bz_stream* strm; member in struct:__anon36961
1100 bz_stream* strm; member in struct:__anon36962
1433 bz_stream* strm = s->strm; local
4331 bz_stream strm; local
4382 bz_stream strm; local
    [all...]
  /external/lldb/source/Interpreter/
OptionValueArch.cpp 27 OptionValueArch::DumpValue (const ExecutionContext *exe_ctx, Stream &strm, uint32_t dump_mask)
30 strm.Printf ("(%s)", GetTypeAsCString ());
34 strm.PutCString (" = ");
40 strm.PutCString (arch_name);
OptionValueRegex.cpp 22 OptionValueRegex::DumpValue (const ExecutionContext *exe_ctx, Stream &strm, uint32_t dump_mask)
25 strm.Printf ("(%s)", GetTypeAsCString ());
29 strm.PutCString (" = ");
34 strm.Printf ("%s", regex_text);
OptionValueUInt64.cpp 34 OptionValueUInt64::DumpValue (const ExecutionContext *exe_ctx, Stream &strm, uint32_t dump_mask)
37 strm.Printf ("(%s)", GetTypeAsCString ());
41 strm.PutCString (" = ");
42 strm.Printf ("%" PRIu64, m_current_value);
Property.cpp 183 Property::DumpQualifiedName(Stream &strm) const
187 if (m_value_sp->DumpQualifiedName(strm))
188 strm.PutChar('.');
189 strm << m_name;
197 Property::Dump (const ExecutionContext *exe_ctx, Stream &strm, uint32_t dump_mask) const
207 DumpQualifiedName(strm);
209 strm.PutChar(' ');
216 strm.Printf ("-- %s", desc);
219 strm.EOL();
221 m_value_sp->DumpValue(exe_ctx, strm, dump_mask)
    [all...]

Completed in 459 milliseconds

1 2 3 4 5 6 78 91011>>