Home
last modified time | relevance | path

Searched refs:Out (Results 1 – 25 of 673) sorted by relevance

12345678910>>...27

/third_party/boost/boost/type_erasure/detail/
Dget_placeholders.hpp37 template<class Out>
42 Out, T
49 template<class Out>
50 … typename ::boost::type_erasure::detail::get_placeholders_in_argument_impl<T>::template apply<Out>;
56 template<class Out>
57 … typename ::boost::type_erasure::detail::get_placeholders_in_argument_impl<T>::template apply<Out>;
63 template<class Out>
64 … typename ::boost::type_erasure::detail::get_placeholders_in_argument_impl<T>::template apply<Out>;
67 template<class Out, class T>
68 using get_placeholders_f = typename get_placeholders_in_argument_impl<T>::template apply<Out>;
[all …]
Dnormalize.hpp188 template<class Bindings, class P, class Out, class Sub>
197 ::boost::mpl::has_key<Out, typename P::second>,
198 ::boost::mpl::identity<Out>,
199 ::boost::mpl::insert<Out, ::boost::mpl::pair<typename P::second, result> >
216 template<class Bindings, class P, class Out>
224 ::boost::mpl::has_key<Out, typename P::second>,
225 ::boost::mpl::identity<Out>,
226 ::boost::mpl::insert<Out, ::boost::mpl::pair<typename P::second, result> >
244 template<class Out, class T>
248 typename ::boost::mpl::insert<typename Out::first, T>::type,
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DAsmWriter.cpp344 static void PrintCallingConv(unsigned cc, raw_ostream &Out) { in PrintCallingConv() argument
346 default: Out << "cc" << cc; break; in PrintCallingConv()
347 case CallingConv::Fast: Out << "fastcc"; break; in PrintCallingConv()
348 case CallingConv::Cold: Out << "coldcc"; break; in PrintCallingConv()
349 case CallingConv::WebKit_JS: Out << "webkit_jscc"; break; in PrintCallingConv()
350 case CallingConv::AnyReg: Out << "anyregcc"; break; in PrintCallingConv()
351 case CallingConv::PreserveMost: Out << "preserve_mostcc"; break; in PrintCallingConv()
352 case CallingConv::PreserveAll: Out << "preserve_allcc"; break; in PrintCallingConv()
353 case CallingConv::CXX_FAST_TLS: Out << "cxx_fast_tlscc"; break; in PrintCallingConv()
354 case CallingConv::GHC: Out << "ghccc"; break; in PrintCallingConv()
[all …]
/third_party/json/benchmarks/thirdparty/benchmark/src/
Dcsv_reporter.cc46 std::ostream& Out = GetOutputStream(); in ReportRuns() local
58 Out << *B++; in ReportRuns()
59 if (B != elements.end()) Out << ","; in ReportRuns()
62 Out << ",\"" << *B++ << "\""; in ReportRuns()
64 Out << "\n"; in ReportRuns()
87 std::ostream& Out = GetOutputStream(); in PrintRunData() local
93 Out << '"' << name << "\","; in PrintRunData()
95 Out << std::string(elements.size() - 3, ','); in PrintRunData()
96 Out << "true,"; in PrintRunData()
99 Out << '"' << msg << "\"\n"; in PrintRunData()
[all …]
Dreporter.cc36 auto &Out = *out; in PrintBasicContext() local
38 Out << LocalDateTimeString() << "\n"; in PrintBasicContext()
41 Out << "Running " << context.executable_name << "\n"; in PrintBasicContext()
44 Out << "Run on (" << info.num_cpus << " X " in PrintBasicContext()
48 Out << "CPU Caches:\n"; in PrintBasicContext()
50 Out << " L" << CInfo.level << " " << CInfo.type << " " in PrintBasicContext()
53 Out << " (x" << (info.num_cpus / CInfo.num_sharing) << ")"; in PrintBasicContext()
54 Out << "\n"; in PrintBasicContext()
59 Out << "***WARNING*** CPU scaling is enabled, the benchmark " in PrintBasicContext()
65 Out << "***WARNING*** Library was built as DEBUG. Timings may be " in PrintBasicContext()
Dconsole_reporter.cc103 auto& Out = GetOutputStream(); in PrintRunData() local
108 printer(Out, name_color, "%-*s ", name_field_width_, in PrintRunData()
112 printer(Out, COLOR_RED, "ERROR OCCURRED: \'%s\'", in PrintRunData()
114 printer(Out, COLOR_DEFAULT, "\n"); in PrintRunData()
135 printer(Out, COLOR_YELLOW, "%10.2f %s %10.2f %s ", real_time, big_o.c_str(), in PrintRunData()
138 printer(Out, COLOR_YELLOW, "%10.0f %% %10.0f %% ", real_time * 100, in PrintRunData()
142 printer(Out, COLOR_YELLOW, "%10.0f %s %10.0f %s ", real_time, timeLabel, in PrintRunData()
147 printer(Out, COLOR_CYAN, "%10lld", result.iterations); in PrintRunData()
156 printer(Out, COLOR_DEFAULT, " %*s/s", cNameLen - 2, s.c_str()); in PrintRunData()
158 printer(Out, COLOR_DEFAULT, " %*s", cNameLen, s.c_str()); in PrintRunData()
[all …]
/third_party/benchmark/src/
Dcsv_reporter.cc58 std::ostream& Out = GetOutputStream(); in ReportRuns() local
72 Out << *B++; in ReportRuns()
73 if (B != elements.end()) Out << ","; in ReportRuns()
77 Out << ",\"" << *B++ << "\""; in ReportRuns()
79 Out << "\n"; in ReportRuns()
103 std::ostream& Out = GetOutputStream(); in PrintRunData() local
104 Out << CsvEscape(run.benchmark_name()) << ","; in PrintRunData()
106 Out << std::string(elements.size() - 3, ','); in PrintRunData()
107 Out << "true,"; in PrintRunData()
108 Out << CsvEscape(run.error_message) << "\n"; in PrintRunData()
[all …]
Dreporter.cc37 auto &Out = *out; in PrintBasicContext() local
39 Out << LocalDateTimeString() << "\n"; in PrintBasicContext()
42 Out << "Running " << context.executable_name << "\n"; in PrintBasicContext()
45 Out << "Run on (" << info.num_cpus << " X " in PrintBasicContext()
49 Out << "CPU Caches:\n"; in PrintBasicContext()
51 Out << " L" << CInfo.level << " " << CInfo.type << " " in PrintBasicContext()
54 Out << " (x" << (info.num_cpus / CInfo.num_sharing) << ")"; in PrintBasicContext()
55 Out << "\n"; in PrintBasicContext()
59 Out << "Load Average: "; in PrintBasicContext()
61 Out << StrFormat("%.2f", *It++); in PrintBasicContext()
[all …]
Dconsole_reporter.cc117 auto& Out = GetOutputStream(); in PrintRunData() local
122 printer(Out, name_color, "%-*s ", name_field_width_, in PrintRunData()
126 printer(Out, COLOR_RED, "ERROR OCCURRED: \'%s\'", in PrintRunData()
128 printer(Out, COLOR_DEFAULT, "\n"); in PrintRunData()
140 printer(Out, COLOR_YELLOW, "%10.2f %-4s %10.2f %-4s ", real_time, big_o.c_str(), in PrintRunData()
143 printer(Out, COLOR_YELLOW, "%10.0f %-4s %10.0f %-4s ", real_time * 100, "%", in PrintRunData()
147 printer(Out, COLOR_YELLOW, "%s %-4s %s %-4s ", real_time_str.c_str(), timeLabel, in PrintRunData()
152 printer(Out, COLOR_CYAN, "%10lld", result.iterations); in PrintRunData()
163 printer(Out, COLOR_DEFAULT, " %*s%s", cNameLen - strlen(unit), s.c_str(), in PrintRunData()
166 printer(Out, COLOR_DEFAULT, " %s=%s%s", c.first.c_str(), s.c_str(), unit); in PrintRunData()
[all …]
/third_party/boost/boost/spirit/home/x3/support/traits/
Dprint_attribute.hpp20 template <typename Out, typename T>
21 void print_attribute(Out& out, T const& val);
23 template <typename Out>
24 inline void print_attribute(Out&, unused_type) {} in print_attribute() argument
29 template <typename Out>
32 print_fusion_sequence(Out& out) in print_fusion_sequence()
47 Out& out;
52 template <typename Out>
55 print_visitor(Out& out) : out(out) {} in print_visitor()
63 Out& out;
[all …]
Dprint_token.hpp24 template<typename Out, typename Char>
25 static void print(Out& o, Char c) in print()
50 template<typename Out, typename T>
51 static void print(Out& o, T const& val) in print()
67 template <typename Out, typename T>
68 inline void print_token(Out& out, T const& val) in print_token()
/third_party/skia/third_party/externals/tint/test/shader_io/
Dinterpolate_return_struct.wgsl.expected.spvasm20 OpName %Out "Out"
21 OpMemberName %Out 0 "pos"
22 OpMemberName %Out 1 "none"
23 OpMemberName %Out 2 "flat"
24 OpMemberName %Out 3 "perspective_center"
25 OpMemberName %Out 4 "perspective_centroid"
26 OpMemberName %Out 5 "perspective_sample"
27 OpMemberName %Out 6 "linear_center"
28 OpMemberName %Out 7 "linear_centroid"
29 OpMemberName %Out 8 "linear_sample"
[all …]
Dinvariant_struct_member.wgsl.expected.spvasm11 OpName %Out "Out"
12 OpMemberName %Out 0 "pos"
18 OpMemberDecorate %Out 0 Offset 0
27 %Out = OpTypeStruct %v4float
28 %9 = OpTypeFunction %Out
29 %13 = OpConstantNull %Out
33 %main_inner = OpFunction %Out None %9
39 %18 = OpFunctionCall %Out %main_inner
Dinvariant_struct_member.wgsl.expected.hlsl1 struct Out {
8 Out main_inner() {
9 const Out tint_symbol_1 = (Out)0;
14 const Out inner_result = main_inner();
/third_party/gettext/gettext-tools/src/
Dmsgunfmt.cs34 private TextWriter Out; field in GNU.Gettext.DumpResource
37 Out.Write('"'); in DumpString()
41 Out.Write('\\'); Out.Write('b'); in DumpString()
43 Out.Write('\\'); Out.Write('f'); in DumpString()
45 Out.Write('\\'); Out.Write('n'); in DumpString()
47 Out.Write('\\'); Out.Write('r'); in DumpString()
49 Out.Write('\\'); Out.Write('t'); in DumpString()
51 Out.Write('\\'); Out.Write(c); in DumpString()
53 Out.Write(c); in DumpString()
55 Out.Write('"'); in DumpString()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Object/
DArchiveWriter.cpp145 static void print(raw_ostream &Out, object::Archive::Kind Kind, T Val) { in print() argument
146 support::endian::write(Out, Val, in print()
151 raw_ostream &Out, const sys::TimePoint<std::chrono::seconds> &ModTime, in printRestOfMemberHeader() argument
153 printWithSpacePadding(Out, sys::toTimeT(ModTime), 12); in printRestOfMemberHeader()
157 printWithSpacePadding(Out, UID % 1000000, 6); in printRestOfMemberHeader()
158 printWithSpacePadding(Out, GID % 1000000, 6); in printRestOfMemberHeader()
160 printWithSpacePadding(Out, format("%o", Perms), 8); in printRestOfMemberHeader()
161 printWithSpacePadding(Out, Size, 10); in printRestOfMemberHeader()
162 Out << "`\n"; in printRestOfMemberHeader()
166 printGNUSmallMemberHeader(raw_ostream &Out, StringRef Name, in printGNUSmallMemberHeader() argument
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Support/
DStringExtras.cpp60 void llvm::printEscapedString(StringRef Name, raw_ostream &Out) { in printEscapedString() argument
64 Out << '\\' << C; in printEscapedString()
66 Out << C; in printEscapedString()
68 Out << '\\' << hexdigit(C >> 4) << hexdigit(C & 0x0F); in printEscapedString()
72 void llvm::printHTMLEscaped(StringRef String, raw_ostream &Out) { in printHTMLEscaped() argument
75 Out << "&amp;"; in printHTMLEscaped()
77 Out << "&lt;"; in printHTMLEscaped()
79 Out << "&gt;"; in printHTMLEscaped()
81 Out << "&quot;"; in printHTMLEscaped()
83 Out << "&apos;"; in printHTMLEscaped()
[all …]
DJSON.cpp216 bool parseValue(Value &Out);
237 bool parseNumber(char First, Value &Out);
238 bool parseString(std::string &Out);
239 bool parseUnicode(std::string &Out);
254 bool Parser::parseValue(Value &Out) { in parseValue() argument
261 Out = nullptr; in parseValue()
265 Out = true; in parseValue()
269 Out = false; in parseValue()
275 Out = std::move(S); in parseValue()
281 Out = Array{}; in parseValue()
[all …]
DVersionTuple.cpp21 llvm::raw_string_ostream Out(Result); in getAsString() local
22 Out << *this; in getAsString()
27 raw_ostream &llvm::operator<<(raw_ostream &Out, const VersionTuple &V) { in operator <<() argument
28 Out << V.getMajor(); in operator <<()
30 Out << '.' << *Minor; in operator <<()
32 Out << '.' << *Subminor; in operator <<()
34 Out << '.' << *Build; in operator <<()
35 return Out; in operator <<()
DYAMLTraits.cpp438 : IO(context), Out(yout), WrapColumn(WrapColumn) {} in Output()
751 Out << s; in output()
762 Out << "\n"; in outputNewLine()
852 void ScalarTraits<bool>::output(const bool &Val, void *, raw_ostream &Out) { in output() argument
853 Out << (Val ? "true" : "false"); in output()
868 raw_ostream &Out) { in output() argument
869 Out << Val; in output()
879 raw_ostream &Out) { in output() argument
880 Out << Val; in output()
890 raw_ostream &Out) { in output() argument
[all …]
/third_party/pulseaudio/src/modules/alsa/mixer/paths/
Danalog-output-lineout.conf20 [Jack Line Out]
23 [Jack Line Out Phantom]
28 [Jack Front Line Out]
31 [Jack Front Line Out Phantom]
36 [Jack Rear Line Out]
39 [Jack Rear Line Out Phantom]
44 [Jack Line Out Front]
47 [Jack Line Out Front Phantom]
52 [Jack Line Out CLFE]
57 [Jack Line Out CLFE Phantom]
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DIceELFStreamer.h93 explicit ELFFileStreamer(Fdstream &Out) : Out(Out) {} in ELFFileStreamer() argument
95 void write8(uint8_t Value) override { Out << char(Value); } in write8()
97 void writeBytes(llvm::StringRef Bytes) override { Out << Bytes; } in writeBytes()
99 uint64_t tell() const override { return Out.tell(); } in tell()
101 void seek(uint64_t Off) override { Out.seek(Off); } in seek()
104 Fdstream &Out;
/third_party/boost/libs/convert/doc/
Ddesign_notes.qbk65 template<typename Out, typename In> Out convert (In const&); //#1
66 template<typename Out, typename In> Out convert (In const&, Out const& fallback); //#2
67 template<typename Out, typename In> bool convert (Out& result_out, In const&); //#3
68 …template<typename Out, typename In> bool convert (Out& result_out, In const&, Out const& fallback)…
83 bool convert (boost::optional<Out>&, In const&); //#3
84 bool convert (boost::optional<Out>&, In const&, Out const&); //#4
86 …, it is returned from the function and is encapsulated in `boost::optional<Out>`. Consequently, #3…
88 void convert (boost::optional<Out>&, In const&); //#3
92 boost::optional<Out> convert (In const&); //#3
96 Out convert (In const&); //#1
[all …]
/third_party/boost/boost/iostreams/
Dcombine.hpp140 template<typename In, typename Out>
146 typename wrapped_type<Out>::type
150 typename wrapped_type<Out>::type
157 template<typename In, typename Out>
158 struct combination : detail::combination_traits<In, Out>::type {
159 typedef typename detail::combination_traits<In, Out>::type base_type;
161 typedef typename detail::wrapped_type<Out>::type out_type;
169 template<typename In, typename Out>
173 BOOST_DEDUCED_TYPENAME detail::unwrapped_type<Out>::type
188 template<typename In, typename Out>
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DA15SDOptimizer.cpp420 Register Out = in createDupLane() local
423 TII->get(QPR ? ARM::VDUPLN32q : ARM::VDUPLN32d), Out) in createDupLane()
428 return Out; in createDupLane()
436 Register Out = MRI->createVirtualRegister(TRC); in createExtractSubreg() local
440 TII->get(TargetOpcode::COPY), Out) in createExtractSubreg()
443 return Out; in createExtractSubreg()
450 Register Out = MRI->createVirtualRegister(&ARM::QPRRegClass); in createRegSequence() local
454 TII->get(TargetOpcode::REG_SEQUENCE), Out) in createRegSequence()
459 return Out; in createRegSequence()
468 Register Out = MRI->createVirtualRegister(&ARM::DPRRegClass); in createVExt() local
[all …]

12345678910>>...27