Home
last modified time | relevance | path

Searched refs:out_stream (Results 1 – 25 of 27) sorted by relevance

12

/third_party/ffmpeg/doc/examples/
Dremuxing.c97 AVStream *out_stream; in main() local
110 out_stream = avformat_new_stream(ofmt_ctx, NULL); in main()
111 if (!out_stream) { in main()
117 ret = avcodec_parameters_copy(out_stream->codecpar, in_codecpar); in main()
122 out_stream->codecpar->codec_tag = 0; in main()
141 AVStream *in_stream, *out_stream; in main() local
155 out_stream = ofmt_ctx->streams[pkt.stream_index]; in main()
159 …pkt.pts = av_rescale_q_rnd(pkt.pts, in_stream->time_base, out_stream->time_base, AV_ROUND_NEAR_INF… in main()
160 …pkt.dts = av_rescale_q_rnd(pkt.dts, in_stream->time_base, out_stream->time_base, AV_ROUND_NEAR_INF… in main()
161 pkt.duration = av_rescale_q(pkt.duration, in_stream->time_base, out_stream->time_base); in main()
Dtranscoding.c122 AVStream *out_stream; in open_output_file() local
138 out_stream = avformat_new_stream(ofmt_ctx, NULL); in open_output_file()
139 if (!out_stream) { in open_output_file()
193 ret = avcodec_parameters_from_context(out_stream->codecpar, enc_ctx); in open_output_file()
199 out_stream->time_base = enc_ctx->time_base; in open_output_file()
206 ret = avcodec_parameters_copy(out_stream->codecpar, in_stream->codecpar); in open_output_file()
211 out_stream->time_base = in_stream->time_base; in open_output_file()
/third_party/boost/boost/chrono/io/utility/
Dmanip_base.hpp75 template <typename out_stream, typename manip_type>
76 out_stream &operator<<(out_stream &out, const manip<manip_type> &op) in operator <<()
/third_party/flutter/skia/third_party/externals/spirv-tools/source/
Dprint.h24 class out_stream {
26 out_stream() : pStream(nullptr) {} in out_stream() function
27 explicit out_stream(std::stringstream& stream) : pStream(&stream) {} in out_stream() function
Ddisassemble.cpp54 out_(print_ ? out_stream() : out_stream(text_)), in Disassembler()
78 using out_stream = libspirv::out_stream; typedef in __anonf126510a0111::Disassembler
119 out_stream out_; // The Output stream. Either to text_ or standard output.
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/
Dprint.h24 class out_stream {
26 out_stream() : pStream(nullptr) {} in out_stream() function
27 explicit out_stream(std::stringstream& stream) : pStream(&stream) {} in out_stream() function
Ddisassemble.cpp59 out_(print_ ? out_stream() : out_stream(text_)), in Disassembler()
83 using out_stream = spvtools::out_stream; typedef in __anon955f17c10111::Disassembler
125 out_stream out_; // The Output stream. Either to text_ or standard output.
/third_party/spirv-tools/source/
Dprint.h24 class out_stream {
26 out_stream() : pStream(nullptr) {} in out_stream() function
27 explicit out_stream(std::stringstream& stream) : pStream(&stream) {} in out_stream() function
Ddisassemble.cpp59 out_(print_ ? out_stream() : out_stream(text_)), in Disassembler()
83 using out_stream = spvtools::out_stream; typedef in __anoncf5cb9800111::Disassembler
125 out_stream out_; // The Output stream. Either to text_ or standard output.
/third_party/skia/third_party/externals/spirv-tools/source/
Dprint.h24 class out_stream {
26 out_stream() : pStream(nullptr) {} in out_stream() function
27 explicit out_stream(std::stringstream& stream) : pStream(&stream) {} in out_stream() function
Ddisassemble.cpp59 out_(print_ ? out_stream() : out_stream(text_)), in Disassembler()
83 using out_stream = spvtools::out_stream; typedef in __anon0622af550111::Disassembler
125 out_stream out_; // The Output stream. Either to text_ or standard output.
/third_party/mbedtls/tests/suites/
Dhelpers.function116 static int redirect_output( FILE* out_stream, const char* path )
121 out_fd = fileno( out_stream );
136 fflush( out_stream );
148 static int restore_output( FILE* out_stream, int dup_fd )
150 int out_fd = fileno( out_stream );
152 fflush( out_stream );
/third_party/skia/third_party/externals/spirv-tools/source/opt/
Ddominator_tree.cpp375 void DominatorTree::DumpTreeAsDot(std::ostream& out_stream) const { in DumpTreeAsDot()
376 out_stream << "digraph {\n"; in DumpTreeAsDot()
377 Visit([&out_stream](const DominatorTreeNode* node) { in DumpTreeAsDot()
380 out_stream << node->bb_->id() << "[label=\"" << node->bb_->id() in DumpTreeAsDot()
387 out_stream << node->parent_->bb_->id() << " -> " << node->bb_->id() in DumpTreeAsDot()
394 out_stream << "}\n"; in DumpTreeAsDot()
Ddominator_tree.h156 void DumpTreeAsDot(std::ostream& out_stream) const;
/third_party/spirv-tools/source/opt/
Ddominator_tree.cpp375 void DominatorTree::DumpTreeAsDot(std::ostream& out_stream) const { in DumpTreeAsDot()
376 out_stream << "digraph {\n"; in DumpTreeAsDot()
377 Visit([&out_stream](const DominatorTreeNode* node) { in DumpTreeAsDot()
380 out_stream << node->bb_->id() << "[label=\"" << node->bb_->id() in DumpTreeAsDot()
387 out_stream << node->parent_->bb_->id() << " -> " << node->bb_->id() in DumpTreeAsDot()
394 out_stream << "}\n"; in DumpTreeAsDot()
Ddominator_tree.h156 void DumpTreeAsDot(std::ostream& out_stream) const;
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/source/opt/
Ddominator_tree.cpp375 void DominatorTree::DumpTreeAsDot(std::ostream& out_stream) const { in DumpTreeAsDot()
376 out_stream << "digraph {\n"; in DumpTreeAsDot()
377 Visit([&out_stream](const DominatorTreeNode* node) { in DumpTreeAsDot()
380 out_stream << node->bb_->id() << "[label=\"" << node->bb_->id() in DumpTreeAsDot()
387 out_stream << node->parent_->bb_->id() << " -> " << node->bb_->id() in DumpTreeAsDot()
394 out_stream << "}\n"; in DumpTreeAsDot()
Ddominator_tree.h156 void DumpTreeAsDot(std::ostream& out_stream) const;
/third_party/boost/libs/property_tree/test/
Dtest_utils.hpp242 std::basic_ostringstream<Ch> out_stream; in check_exact_roundtrip() local
245 wf(out_stream, tree); in check_exact_roundtrip()
247 errstream<Ch>() << out_stream.str(); in check_exact_roundtrip()
249 BOOST_CHECK(native_test_data == out_stream.str()); in check_exact_roundtrip()
/third_party/benchmark/test/
Doutput_test_helper.cc400 std::stringstream out_stream; in RunOutputTests() member
407 reporter.SetOutputStream(&out_stream); in RunOutputTests()
430 std::cout << rep_test.out_stream.str(); in RunOutputTests()
433 internal::CheckCases(rep_test.output_cases, rep_test.out_stream); in RunOutputTests()
443 internal::GetResultsChecker().CheckResults(csv.out_stream); in RunOutputTests()
/third_party/boost/boost/lexical_cast/detail/
Dconverter_lexical_streams.hpp153 deduced_out_stream_t out_stream; member in boost::detail::lexical_istream_limited_src
164 , out_stream(&out_buffer) in lexical_istream_limited_src()
232 out_stream.exceptions(std::ios::badbit); in shl_input_streamable()
235 bool const result = !(out_stream << input).fail(); in shl_input_streamable()
237 out_stream.rdbuf() in shl_input_streamable()
274 lcast_set_precision(out_stream, &val); in shl_real_type()
/third_party/protobuf/src/google/protobuf/util/
Djson_util.cc96 io::CodedOutputStream out_stream(json_output); in BinaryToJsonStream() local
98 &out_stream); in BinaryToJsonStream()
/third_party/gettext/libtextstyle/gnulib-local/lib/
Dterm-ostream.oo.c1181 static term_ostream_t volatile out_stream; variable
1192 error (EXIT_FAILURE, errno, _("error writing to %s"), out_stream->filename); in out_error()
1637 out_stream = stream; in out_attr_change()
1757 out_stream = stream; in restore()
1788 out_stream = stream; in async_restore()
1827 out_stream = stream; in async_set_attributes_from_default()
/third_party/mesa3d/src/gallium/drivers/r600/sfn/
Dsfn_vertexstageexport.cpp444 StreamOutIntruction *out_stream = in emit_stream() local
451 m_proc.emit_export_instruction(out_stream); in emit_stream()
/third_party/python/Lib/unittest/test/
Dtest_result.py585 out_stream = sys.stdout
594 self.assertEqual(out_stream.getvalue(), 'foo\n')
609 self.assertEqual(out_stream.getvalue(), '')

12