Searched defs:Stream (Results 1 - 25 of 60) sorted by last modified time

123

/external/owasp/sanitizer/tools/findbugs/lib/
H A Dfindbugs.jarMETA-INF/ META-INF/MANIFEST.MF default.xsl edu/ edu/umd/ edu/umd/cs/ edu/ ...
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dcmscgats.c136 FILE* Stream; // File stream or NULL if holded in memory member in struct:_FileContext
488 if (it8 -> FileStack[it8 ->IncludeSP]->Stream) {
490 it8 ->ch = fgetc(it8 ->FileStack[it8 ->IncludeSP]->Stream);
492 if (feof(it8 -> FileStack[it8 ->IncludeSP]->Stream)) {
496 fclose(it8 ->FileStack[it8->IncludeSP--]->Stream);
930 FileNest->Stream = fopen(FileNest->FileName, "rt");
931 if (FileNest->Stream == NULL) {
2353 it8 ->FileStack[0]->Stream = fopen(cFileName, "rt");
2355 if (!it8 ->FileStack[0]->Stream) {
2366 fclose(it8 ->FileStack[0]->Stream);
[all...]
H A Dcmsio0.c423 cmsIOHANDLER* CMSEXPORT cmsOpenIOhandlerFromStream(cmsContext ContextID, FILE* Stream) argument
431 iohandler -> stream = (void*) Stream;
433 iohandler -> ReportedSize = (cmsUInt32Number) cmsfilelength(Stream);
1345 cmsBool CMSEXPORT cmsSaveProfileToStream(cmsHPROFILE hProfile, FILE* Stream) argument
1349 cmsIOHANDLER* io = cmsOpenIOhandlerFromStream(ContextID, Stream);
/external/mesa3d/src/gallium/drivers/nv50/codegen/
H A Dnv50_ir_from_sm4.h178 unsigned int Stream; member in struct:_D3D11_SIGNATURE_PARAMETER_DESC
/external/llvm/tools/llvm-bcanalyzer/
H A Dllvm-bcanalyzer.cpp324 static bool ParseBlock(BitstreamCursor &Stream, unsigned BlockID, argument
327 uint64_t BlockBitStart = Stream.GetCurrentBitNo();
337 if (Stream.ReadBlockInfoBlock())
339 uint64_t BlockBitEnd = Stream.GetCurrentBitNo();
345 if (Stream.EnterSubBlock(BlockID, &NumWords))
351 if ((BlockName = GetBlockName(BlockID, *Stream.getBitStreamReader())))
360 << " BlockCodeSize=" << Stream.getAbbrevIDWidth() << ">\n";
367 if (Stream.AtEndOfStream())
370 uint64_t RecordStartBit = Stream.GetCurrentBitNo();
373 Stream
[all...]
/external/lzma/C/
H A DPpmd7.h112 IByteIn *Stream; member in struct:__anon25886
130 IByteOut *Stream; member in struct:__anon25887
/external/lzma/CPP/7zip/Archive/7z/
H A D7zOut.h129 CMyComPtr<IOutStream> Stream; member in class:NArchive::N7z::COutArchive
/external/lzma/CPP/7zip/Archive/Common/
H A DMultiStream.h21 CMyComPtr<IInStream> Stream; member in struct:CMultiStream::CSubStreamInfo
36 RINOK(s.Stream->Seek(0, STREAM_SEEK_CUR, &s.LocalPos));
62 CMyComPtr<ISequentialOutStream> Stream;
/external/lzma/CPP/7zip/Archive/
H A DXzHandler.cpp423 CMyComPtr<ISequentialInStream> Stream; member in class:NArchive::NXz::CSeekToSeqStream
432 return Stream->Read(data, size, processedSize);
/external/lzma/CPP/7zip/Common/
H A DCWrappers.h20 ISequentialInStream *Stream; member in struct:CSeqInStreamWrap
28 IInStream *Stream; member in struct:CSeekInStreamWrap
36 ISequentialOutStream *Stream; member in struct:CSeqOutStreamWrap
51 ISequentialInStream *Stream; member in struct:CByteInBufWrap
84 ISequentialOutStream *Stream; member in struct:CByteOutBufWrap
H A DLimitedStreams.h73 CMyComPtr<IInStream> Stream; member in class:CClusterInStream
79 HRESULT SeekToPhys() { return Stream->Seek(_physPos, STREAM_SEEK_SET, NULL); }
/external/lzma/CPP/7zip/Compress/
H A DRangeCoder.h23 COutBuffer Stream; member in class:NCompress::NRangeCoder::CEncoder
24 bool Create(UInt32 bufferSize) { return Stream.Create(bufferSize); }
26 void SetStream(ISequentialOutStream *stream) { Stream.SetStream(stream); }
29 Stream.Init();
43 HRESULT FlushStream() { return Stream.Flush(); }
45 void ReleaseStream() { Stream.ReleaseStream(); }
65 Stream.WriteByte((Byte)(temp + (Byte)(Low >> 32)));
106 UInt64 GetProcessedSize() { return Stream.GetProcessedSize() + _cacheSize + 4; }
112 CInBuffer Stream; member in class:NCompress::NRangeCoder::CDecoder
115 bool Create(UInt32 bufferSize) { return Stream
[all...]
/external/lzma/CPP/7zip/UI/Common/
H A DUpdate.cpp59 CMyComPtr<IOutStream> Stream; member in struct:COutMultiVolStream::CSubStreamInfo
123 subStream.Stream = subStream.StreamSpec;
153 // RINOK(subStream.Stream.QueryInterface(IID_IOutStream, &outStream));
154 RINOK(subStream.Stream->Seek(_offsetPos, STREAM_SEEK_SET, NULL));
160 RINOK(subStream.Stream->Write(data, curSize, &realProcessed));
217 RINOK(subStream.Stream->SetSize(newSize));
227 subStream.Stream.Release();
/external/lzma/CS/7zip/Compress/RangeCoder/
H A DRangeCoder.cs9 System.IO.Stream Stream; field in class:SevenZip.Compression.RangeCoder.Encoder
18 public void SetStream(System.IO.Stream stream)
20 Stream = stream;
25 Stream = null;
30 StartPosition = Stream.Position;
46 Stream.Flush();
51 Stream.Close();
72 Stream.WriteByte((byte)(temp + (Low >> 32)));
117 Stream
128 public System.IO.Stream Stream; field in class:SevenZip.Compression.RangeCoder.Decoder
[all...]
/external/lzma/Java/SevenZip/Compression/RangeCoder/
H A DDecoder.java15 java.io.InputStream Stream; field in class:Decoder
19 Stream = stream;
24 Stream = null;
32 Code = (Code << 8) | Stream.read();
47 Code = (Code << 8) | Stream.read();
64 Code = (Code << 8) | Stream.read();
76 Code = (Code << 8) | Stream.read();
H A DEncoder.java12 java.io.OutputStream Stream; field in class:Encoder
23 Stream = stream;
28 Stream = null;
48 Stream.flush();
60 Stream.write(temp + LowHi);
/external/llvm/include/llvm/IR/
H A DDiagnosticPrinter.h59 raw_ostream &Stream; member in class:llvm::DiagnosticPrinterRawOStream
62 DiagnosticPrinterRawOStream(raw_ostream &Stream) : Stream(Stream) {}; argument
/external/llvm/include/llvm/Support/
H A DFormattedStream.h82 /// As a side effect, the given Stream is set to be Unbuffered.
87 formatted_raw_ostream(raw_ostream &Stream, bool Delete = false) argument
89 setStream(Stream, Delete);
101 void setStream(raw_ostream &Stream, bool Delete = false) { argument
104 TheStream = &Stream;
H A DYAMLParser.h20 // The most important class here is Stream. This represents a YAML stream with
25 // yaml::Stream stream(input, sm);
77 class Stream { class in namespace:llvm::yaml
80 Stream(StringRef Input, SourceMgr &);
83 Stream(MemoryBuffer *InputBuffer, SourceMgr &);
84 ~Stream();
460 /// \brief A YAML Stream is a sequence of Documents. A document contains a root
467 Document(Stream &ParentStream);
486 /// \brief Stream to read tokens from.
487 Stream
[all...]
H A Dcircular_raw_ostream.h72 /// flushBuffer - Dump the contents of the buffer to Stream.
100 /// As a side effect, if BuffSize is nonzero, the given Stream is
109 circular_raw_ostream(raw_ostream &Stream, const char *Header, argument
121 setStream(Stream, Owns);
145 void setStream(raw_ostream &Stream, bool Owns = REFERENCE_ONLY) { argument
147 TheStream = &Stream;
/external/llvm/lib/Bitcode/Writer/
H A DBitcodeWriter.cpp148 unsigned AbbrevToUse, BitstreamWriter &Stream) {
159 Stream.EmitRecord(Code, Vals, AbbrevToUse);
254 BitstreamWriter &Stream) {
258 Stream.EnterSubblock(bitc::PARAMATTR_GROUP_BLOCK_ID, 3);
293 Stream.EmitRecord(bitc::PARAMATTR_GRP_CODE_ENTRY, Record);
298 Stream.ExitBlock();
302 BitstreamWriter &Stream) {
306 Stream.EnterSubblock(bitc::PARAMATTR_BLOCK_ID, 3);
314 Stream.EmitRecord(bitc::PARAMATTR_CODE_ENTRY, Record);
318 Stream
147 WriteStringRecord(unsigned Code, StringRef Str, unsigned AbbrevToUse, BitstreamWriter &Stream) argument
253 WriteAttributeGroupTable(const ValueEnumerator &VE, BitstreamWriter &Stream) argument
301 WriteAttributeTable(const ValueEnumerator &VE, BitstreamWriter &Stream) argument
322 WriteTypeTable(const ValueEnumerator &VE, BitstreamWriter &Stream) argument
543 writeComdats(const ValueEnumerator &VE, BitstreamWriter &Stream) argument
558 WriteModuleInfo(const Module *M, const ValueEnumerator &VE, BitstreamWriter &Stream) argument
743 WriteMDNode(const MDNode *N, const ValueEnumerator &VE, BitstreamWriter &Stream, SmallVectorImpl<uint64_t> &Record) argument
762 WriteModuleMetadata(const Module *M, const ValueEnumerator &VE, BitstreamWriter &Stream) argument
828 WriteFunctionLocalMetadata(const Function &F, const ValueEnumerator &VE, BitstreamWriter &Stream) argument
848 WriteMetadataAttachment(const Function &F, const ValueEnumerator &VE, BitstreamWriter &Stream) argument
881 WriteModuleMetadataStore(const Module *M, BitstreamWriter &Stream) argument
912 WriteConstants(unsigned FirstVal, unsigned LastVal, const ValueEnumerator &VE, BitstreamWriter &Stream, bool isGlobal) argument
1177 WriteModuleConstants(const ValueEnumerator &VE, BitstreamWriter &Stream) argument
1230 WriteInstruction(const Instruction &I, unsigned InstID, ValueEnumerator &VE, BitstreamWriter &Stream, SmallVectorImpl<unsigned> &Vals) argument
1544 WriteValueSymbolTable(const ValueSymbolTable &VST, const ValueEnumerator &VE, BitstreamWriter &Stream) argument
1602 WriteFunction(const Function &F, ValueEnumerator &VE, BitstreamWriter &Stream) argument
1674 WriteBlockInfo(const ValueEnumerator &VE, BitstreamWriter &Stream) argument
1841 WriteUseList(const Value *V, const ValueEnumerator &VE, BitstreamWriter &Stream) argument
1860 WriteFunctionUseList(const Function *F, ValueEnumerator &VE, BitstreamWriter &Stream) argument
1885 WriteModuleUseLists(const Module *M, ValueEnumerator &VE, BitstreamWriter &Stream) argument
1927 WriteModule(const Module *M, BitstreamWriter &Stream) argument
[all...]
/external/llvm/lib/Support/
H A DYAMLParser.cpp552 OS << "Stream-Start: ";
555 OS << "Stream-End: ";
1524 Stream::Stream(StringRef Input, SourceMgr &SM) function in class:Stream
1527 Stream::Stream(MemoryBuffer *InputBuffer, SourceMgr &SM) function in class:Stream
1530 Stream::~Stream() {}
1532 bool Stream::failed() { return scanner->failed(); }
1534 void Stream
[all...]
/external/llvm/lib/Target/R600/InstPrinter/
H A DAMDGPUInstPrinter.cpp391 unsigned Stream = (SImm16 >> 8) & 0x3; local
398 O << " stream " << Stream; local
/external/lldb/include/lldb/Core/
H A DStream.h1 //===-- Stream.h ------------------------------------------------*- C++ -*-===//
21 /// @class Stream Stream.h "lldb/Core/Stream.h"
24 class Stream class in namespace:lldb_private
45 Stream (uint32_t flags,
50 /// Construct a default Stream, not binary, host byte order and
54 Stream ();
60 ~Stream ();
210 Stream
[all...]
/external/lldb/source/Core/
H A DStream.cpp1 //===-- Stream.cpp ----------------------------------------------*- C++ -*-===//
10 #include "lldb/Core/Stream.h"
22 Stream::Stream (uint32_t flags, uint32_t addr_size, ByteOrder byte_order) : function in class:Stream
30 Stream::Stream () : function in class:Stream
41 Stream::~Stream ()
46 Stream::SetByteOrder (ByteOrder byte_order)
58 Stream
[all...]

Completed in 361 milliseconds

123