/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...] |
/prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/ |
zlib.h | 224 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level)); 246 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush)); 332 deflate() sets strm->adler to the adler32 checksum of all input read 335 deflate() may update strm->data_type if it can make a good guess about 351 ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm)); 366 ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm)); 390 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush)); 429 Also to assist in this, on return inflate() will set strm->data_type to the 430 number of unused bits in the last byte taken from strm->next_in, plus 64 435 uncompressed data from that block has been written to strm->next_out. Th [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...] |
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 z_const unsigned char FAR *in; /* local strm->next_in */ 74 unsigned char FAR *out; /* local strm->next_out * [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/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.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/openfst/src/include/fst/ |
symbol-table.h | 100 istream &strm, const string &name, 103 static SymbolTableImpl* Read(istream &strm, 106 bool Write(ostream &strm) const; 250 istream &strm, const string& name, 252 SymbolTableImpl* impl = SymbolTableImpl::ReadText(strm, name, opts); 262 ifstream strm(filename.c_str(), ifstream::in); 263 if (!strm) { 267 return ReadText(strm, filename, opts); 273 static SymbolTable* Read(istream &strm, 275 SymbolTableImpl* impl = SymbolTableImpl::Read(strm, opts) [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...] |
fx_zlib_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 68 z_streamp strm, 69 unsigned start) /* inflate()'s starting value for strm->avail_out */ 72 z_const unsigned char FAR *in; /* local strm->next_in */ 74 unsigned char FAR *out; /* local strm->next_out */ 75 unsigned char FAR *beg; /* inflate()'s initial strm->next_out * [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/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:__anon21066 1100 bz_stream* strm; member in struct:__anon21067 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...] |
/packages/providers/DownloadProvider/tests/permission/src/com/android/providers/downloads/permission/tests/ |
DownloadProviderPermissionsTest.java | 55 FileOutputStream strm = new FileOutputStream(filePath); local 56 strm.write("Oops!".getBytes()); 57 strm.flush(); 58 strm.close();
|
/external/zlib/src/contrib/delphi/ |
ZLib.pas | 55 constructor Create(Strm: TStream); 241 function deflateInit_(var strm: TZStreamRec; level: Integer; version: PChar; 243 function deflate(var strm: TZStreamRec; flush: Integer): Integer; external; 244 function deflateEnd(var strm: TZStreamRec): Integer; external; 247 function inflateInit_(var strm: TZStreamRec; version: PChar; 249 function inflate(var strm: TZStreamRec; flush: Integer): Integer; external; 250 function inflateEnd(var strm: TZStreamRec): Integer; external; 251 function inflateReset(var strm: TZStreamRec): Integer; external; 289 strm: TZStreamRec; 292 FillChar(strm, sizeof(strm), 0) [all...] |
/external/openfst/src/include/fst/extensions/far/ |
sttable.h | 248 ifstream *strm = streams_[id]; local 254 strm->seekg(positions[mid]); 256 ReadType(*strm, &key); 263 strm->seekg(positions[i - 1]); 264 ReadType(*strm, &key); 266 strm->seekg(positions[i]); 270 strm->seekg(positions[low]); 274 strm->seekg(positions[low]); 329 // Read(istream &strm, const string &filename); 334 ifstream strm(filename.c_str(), ifstream::in | ifstream::binary) [all...] |
/external/lldb/source/Commands/ |
CommandObjectRegister.cpp | 89 Stream &strm, 99 strm.Indent (); 103 reg_value.Dump(&strm, reg_info, prefix_with_name, prefix_with_altname, m_format_options.GetFormat(), 8); 115 strm.PutCString (" "); 116 so_reg_addr.Dump(&strm, exe_ctx.GetBestExecutionContextScope(), Address::DumpStyleResolvedDescription); 121 strm.EOL(); 130 Stream &strm, 144 strm.Printf ("%s:\n", reg_set->name); 145 strm.IndentMore (); 155 if (DumpRegister (exe_ctx, strm, reg_ctx, reg_info) 175 Stream &strm = result.GetOutputStream(); local [all...] |
/external/pdfium/core/include/thirdparties/zlib/ |
zlib.h | 289 ZEXTERN int ZEXPORT deflateInit OF((z_streamp strm, int level)); 311 ZEXTERN int ZEXPORT deflate OF((z_streamp strm, int flush)); 399 deflate() sets strm->adler to the adler32 checksum of all input read 402 deflate() may update strm->data_type if it can make a good guess about 418 ZEXTERN int ZEXPORT deflateEnd OF((z_streamp strm)); 433 ZEXTERN int ZEXPORT inflateInit OF((z_streamp strm)); 457 ZEXTERN int ZEXPORT inflate OF((z_streamp strm, int flush)); 496 Also to assist in this, on return inflate() will set strm->data_type to the 497 number of unused bits in the last byte taken from strm->next_in, plus 64 if 502 data from that block has been written to strm->next_out. The number o [all...] |