/third_party/skia/src/sksl/codegen/ |
H A D | SkSLSPIRVCodeGenerator.h | 122 virtual SpvId load(OutputStream& out) = 0; 124 virtual void store(SpvId value, OutputStream& out) = 0; 129 OutputStream* out) in SPIRVCodeGenerator() 202 std::vector<SpvId> getAccessChain(const Expression& expr, OutputStream& out); 210 void writeProgramElement(const ProgramElement& pe, OutputStream& out); 214 SpvId writeFunctionStart(const FunctionDeclaration& f, OutputStream& out); 216 SpvId writeFunctionDeclaration(const FunctionDeclaration& f, OutputStream& out); 218 SpvId writeFunction(const FunctionDefinition& f, OutputStream& out); 222 void writeVarDeclaration(const VarDeclaration& var, OutputStream& out); 224 SpvId writeVariableReference(const VariableReference& ref, OutputStream [all...] |
H A D | SkSLCodeGenerator.h | 22 CodeGenerator(const Context* context, const Program* program, OutputStream* out) in CodeGenerator() 32 OutputStream* outputStream() { return fOut; } in outputStream() 33 void setOutputStream(OutputStream* output) { fOut = output; } in setOutputStream() 38 OutputStream* fOut; 44 AutoOutputStream(CodeGenerator* codeGen, OutputStream* newOutput) in AutoOutputStream() 50 AutoOutputStream(CodeGenerator* codeGen, OutputStream* newOutput, int *indentationPtr) in AutoOutputStream() 67 OutputStream* fOldOutput = nullptr;
|
H A D | SkSLSPIRVCodeGenerator.cpp | 202 void SPIRVCodeGenerator::writeWord(int32_t word, OutputStream& out) { in writeWord() 241 void SPIRVCodeGenerator::writeOpCode(SpvOp_ opCode, int length, OutputStream& out) { in writeOpCode() 304 void SPIRVCodeGenerator::writeLabel(SpvId label, OutputStream& out) { in writeLabel() 310 void SPIRVCodeGenerator::writeInstruction(SpvOp_ opCode, OutputStream& out) { in writeInstruction() 314 void SPIRVCodeGenerator::writeInstruction(SpvOp_ opCode, int32_t word1, OutputStream& out) { in writeInstruction() 319 void SPIRVCodeGenerator::writeString(skstd::string_view s, OutputStream& out) { in writeString() 338 OutputStream& out) { in writeInstruction() 345 OutputStream& out) { in writeInstruction() 352 skstd::string_view string, OutputStream& out) { in writeInstruction() 360 OutputStream in writeInstruction() [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Demangle/ |
H A D | MicrosoftDemangleNodes.h | 24 class OutputStream; 28 using llvm::itanium_demangle::OutputStream; 262 virtual void output(OutputStream &OS, OutputFlags Flags) const = 0; 301 virtual void outputPre(OutputStream &OS, OutputFlags Flags) const = 0; 302 virtual void outputPost(OutputStream &OS, OutputFlags Flags) const = 0; 304 void output(OutputStream &OS, OutputFlags Flags) const override { 316 void outputPre(OutputStream &OS, OutputFlags Flags) const; 317 void outputPost(OutputStream &OS, OutputFlags Flags) const {} in outputPost() 326 void outputPre(OutputStream &OS, OutputFlags Flags) const override; 327 void outputPost(OutputStream [all...] |
H A D | Utility.h | 27 class OutputStream { class 66 OutputStream(char *StartBuf, size_t Size) in OutputStream() function in OutputStream 68 OutputStream() = default; 80 OutputStream &operator+=(StringView R) { in operator +=() 90 OutputStream &operator+=(char C) { in operator +=() 96 OutputStream &operator<<(StringView R) { return (*this += R); } in operator <<() 98 OutputStream &operator<<(char C) { return (*this += C); } in operator <<() 100 OutputStream &operator<<(long long N) { in operator <<() 108 OutputStream &operator<<(unsigned long long N) { in operator <<() 113 OutputStream [all...] |
H A D | ItaniumDemangle.h | 157 bool hasRHSComponent(OutputStream &S) const { in hasRHSComponent() 163 bool hasArray(OutputStream &S) const { in hasArray() 169 bool hasFunction(OutputStream &S) const { in hasFunction() 177 virtual bool hasRHSComponentSlow(OutputStream &) const { return false; } in hasRHSComponentSlow() 178 virtual bool hasArraySlow(OutputStream &) const { return false; } in hasArraySlow() 179 virtual bool hasFunctionSlow(OutputStream &) const { return false; } in hasFunctionSlow() 183 virtual const Node *getSyntaxNode(OutputStream &) const { in getSyntaxNode() 187 void print(OutputStream &S) const { in print() 193 // Print the "left" side of this Node into OutputStream. 194 virtual void printLeft(OutputStream [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Demangle/ |
H A D | MicrosoftDemangleNodes.cpp | 28 static void outputSpaceIfNecessary(OutputStream &OS) { in outputSpaceIfNecessary() 37 static void outputSingleQualifier(OutputStream &OS, Qualifiers Q) { in outputSingleQualifier() 53 static bool outputQualifierIfPresent(OutputStream &OS, Qualifiers Q, in outputQualifierIfPresent() 65 static void outputQualifiers(OutputStream &OS, Qualifiers Q, bool SpaceBefore, in outputQualifiers() 79 static void outputCallingConvention(OutputStream &OS, CallingConv CC) { in outputCallingConvention() 116 OutputStream OS; in toString() 123 void PrimitiveTypeNode::outputPre(OutputStream &OS, OutputFlags Flags) const { in outputPre() 150 void NodeArrayNode::output(OutputStream &OS, OutputFlags Flags) const { in output() 154 void NodeArrayNode::output(OutputStream &OS, OutputFlags Flags, in output() 166 void EncodedStringLiteralNode::output(OutputStream [all...] |
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/ |
H A D | SampleProfWriter.cpp | 87 uint64_t SectionStart = OutputStream->tell(); in markSectionStart() 91 LocalBufStream.swap(OutputStream); in markSectionStart() 102 auto &OS = *OutputStream; in compressAndOutput() 121 LocalBufStream.swap(OutputStream); in addNewSection() 126 OutputStream->tell() - SectionStart}); in addNewSection() 148 uint64_t Offset = OutputStream->tell(); in writeSample() 151 encodeULEB128(S.getHeadSamples(), *OutputStream); in writeSample() 156 auto &OS = *OutputStream; in writeFuncOffsetTable() 189 SecLBRProfileStart = OutputStream->tell(); in writeSections() 200 if (std::error_code EC = ProfSymList->write(*OutputStream)) in writeSections() [all...] |
/third_party/skia/third_party/externals/brotli/java/org/brotli/wrapper/enc/ |
H A D | BrotliOutputStream.java | 10 import java.io.OutputStream; 16 public class BrotliOutputStream extends OutputStream { 29 public BrotliOutputStream(OutputStream destination, Encoder.Parameters params, int bufferSize) in BrotliOutputStream() 34 public BrotliOutputStream(OutputStream destination, Encoder.Parameters params) in BrotliOutputStream() 39 public BrotliOutputStream(OutputStream destination) throws IOException { in BrotliOutputStream()
|
/third_party/libphonenumber/tools/java/cpp-build/src/com/google/i18n/phonenumbers/ |
H A D | BuildMetadataCppFromXml.java | 26 import java.io.OutputStream; 167 OutputStream headerStream = null; in start() 168 OutputStream sourceStream = null; in start() 203 String inputFilePath, boolean liteMetadata, OutputStream out) throws IOException, Exception { in writePhoneMetadataCollection() 209 OutputStream openHeaderStream(File dir, Type type) throws FileNotFoundException { in openHeaderStream() 214 OutputStream openSourceStream(File dir, Type type, Variant variant) throws FileNotFoundException { in openSourceStream()
|
/third_party/ffmpeg/libavformat/ |
H A D | hdsenc.c | 44 typedef struct OutputStream { struct 65 } OutputStream; typedef 74 OutputStream *streams; 78 static int parse_header(OutputStream *os, const uint8_t *buf, int buf_size) in parse_header() 117 OutputStream *os = opaque; in hds_write() 139 OutputStream *os = &c->streams[i]; in hds_free() 184 OutputStream *os = &c->streams[i]; in write_manifest() 216 static int write_abst(AVFormatContext *s, OutputStream *os, int final) in write_abst() 285 static int init_file(AVFormatContext *s, OutputStream *os, int64_t start_ts) in init_file() 301 static void close_file(AVFormatContext *s, OutputStream *o [all...] |
H A D | smoothstreamingenc.c | 47 typedef struct OutputStream { struct 64 } OutputStream; typedef 73 OutputStream *streams; 80 OutputStream *os = opaque; in ism_write() 93 OutputStream *os = opaque; in ism_seek() 138 static void get_private_data(OutputStream *os) in get_private_data() 168 OutputStream *os = &c->streams[i]; in ism_free() 183 static void output_chunk_list(OutputStream *os, AVIOContext *out, int final, int skip, int window_size) in output_chunk_list() 220 OutputStream *os = &c->streams[i]; in write_manifest() 249 OutputStream *o in write_manifest() [all...] |
/third_party/skia/third_party/externals/sfntly/java/src/com/google/typography/font/sfntly/data/ |
H A D | FontOutputStream.java | 20 import java.io.OutputStream; 87 public class FontOutputStream extends OutputStream { 88 private final OutputStream out; 96 public FontOutputStream(OutputStream os) { in FontOutputStream()
|
/third_party/skia/src/sksl/ |
H A D | SkSLOutputStream.cpp | 14 void OutputStream::writeString(const String& s) { in writeString() 18 void OutputStream::printf(const char format[], ...) { in printf() 25 void OutputStream::appendVAList(const char format[], va_list args) { in appendVAList()
|
H A D | SkSLMain.cpp | 51 static std::unique_ptr<SkWStream> as_SkWStream(SkSL::OutputStream& s) { in as_SkWStream() 54 Adapter(SkSL::OutputStream& out) : fOut(out), fBytesWritten(0) {} in as_SkWStream() 65 SkSL::OutputStream& fOut; in as_SkWStream() 348 [](SkSL::Compiler& compiler, SkSL::Program& program, SkSL::OutputStream& out) { in processCommand() 353 [](SkSL::Compiler& compiler, SkSL::Program& program, SkSL::OutputStream& out) { in processCommand() 373 [](SkSL::Compiler& compiler, SkSL::Program& program, SkSL::OutputStream& out) { in processCommand() 378 [](SkSL::Compiler& compiler, SkSL::Program& program, SkSL::OutputStream& out) { in processCommand() 383 [&](SkSL::Compiler&, SkSL::Program& program, SkSL::OutputStream& out) { in processCommand() 399 [](SkSL::Compiler&, SkSL::Program& program, SkSL::OutputStream& out) { in processCommand()
|
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/data/ |
H A D | font_output_stream.h | 46 class FontOutputStream : public OutputStream { 48 explicit FontOutputStream(OutputStream* os); 71 OutputStream* stream_;
|
/third_party/ffmpeg/doc/examples/ |
H A D | muxing.c | 54 typedef struct OutputStream { struct 71 } OutputStream; typedef 126 static void add_stream(OutputStream *ost, AVFormatContext *oc, in add_stream() 246 OutputStream *ost, AVDictionary *opt_arg) in open_audio() 311 static AVFrame *get_audio_frame(OutputStream *ost) in get_audio_frame() 340 static int write_audio_frame(AVFormatContext *oc, OutputStream *ost) in write_audio_frame() 410 OutputStream *ost, AVDictionary *opt_arg) in open_video() 475 static AVFrame *get_video_frame(OutputStream *ost) in get_video_frame() 521 static int write_video_frame(AVFormatContext *oc, OutputStream *ost) in write_video_frame() 526 static void close_stream(AVFormatContext *oc, OutputStream *os [all...] |
/third_party/protobuf/java/core/src/main/java/com/google/protobuf/ |
H A D | MessageLite.java | 38 import java.io.OutputStream; 106 * just use {@link #writeDelimitedTo(OutputStream)}. 108 void writeTo(OutputStream output) throws IOException; in writeTo() 111 * Like {@link #writeTo(OutputStream)}, but writes the size of the message as a varint before 117 void writeDelimitedTo(OutputStream output) throws IOException; in writeDelimitedTo() 247 * Or, use {@link MessageLite#writeDelimitedTo(OutputStream)} to write your message and {@link 287 * MessageLite#writeDelimitedTo(OutputStream)} to write messages in this format.
|
H A D | ByteBufferWriter.java | 37 import java.io.OutputStream; 43 /** Utility class to provide efficient writing of {@link ByteBuffer}s to {@link OutputStream}s. */ 67 * ByteBuffer} to an {@link OutputStream} when no zero-copy alternative was available. Using a 91 static void write(ByteBuffer buffer, OutputStream output) throws IOException { in write() 96 // Note that we're taking the risk that a malicious OutputStream could modify the array. in write() 145 private static boolean writeToChannel(ByteBuffer buffer, OutputStream output) throws IOException { in writeToChannel()
|
/third_party/skia/third_party/externals/sfntly/cpp/src/sfntly/port/ |
H A D | output_stream.h | 24 // C++ equivalent to Java's OutputStream class 25 class OutputStream { class 28 virtual ~OutputStream() {} in ~OutputStream()
|
/third_party/node/deps/v8/src/profiler/ |
H A D | output-stream-writer.h | 41 explicit OutputStreamWriter(v8::OutputStream* stream) in OutputStreamWriter() 114 v8::OutputStream::kAbort) 119 v8::OutputStream* stream_;
|
/third_party/ffmpeg/fftools/ |
H A D | ffmpeg.h | 268 struct OutputStream *ost; 457 typedef struct OutputStream { struct 584 } OutputStream; typedef 608 extern OutputStream **output_streams; 677 int init_simple_filtergraph(InputStream *ist, OutputStream *ost); 694 int hw_device_setup_for_encode(OutputStream *ost); 704 void of_write_packet(OutputFile *of, AVPacket *pkt, OutputStream *ost,
|
/third_party/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
H A D | RBBIRuleBuilder.java | 13 import java.io.OutputStream; 171 void flattenData(OutputStream os) throws IOException { in flattenData() 281 static void compileRules(String rules, OutputStream os) throws IOException in compileRules() 295 void build(OutputStream os) throws IOException { in build()
|
/third_party/icu/ohos_icu4j/src/main/java/ohos/global/icu/text/ |
H A D | RBBIRuleBuilder.java | 14 import java.io.OutputStream; 168 void flattenData(OutputStream os) throws IOException { in flattenData() 275 static void compileRules(String rules, OutputStream os) throws IOException in compileRules() 289 void build(OutputStream os) throws IOException { in build()
|
/third_party/libphonenumber/tools/java/cpp-build/test/com/google/i18n/phonenumbers/ |
H A D | BuildMetadataCppFromXmlTest.java | 32 import java.io.OutputStream; 162 String inputFilePath, boolean liteMetadata, OutputStream out) throws Exception { in writePhoneMetadataCollection() 167 @Override OutputStream openHeaderStream(File dir, Type type) { in openHeaderStream() 172 @Override OutputStream openSourceStream(File dir, Type type, Variant variant) { in openSourceStream()
|