Searched refs:std (Results 51 - 75 of 5880) sorted by relevance

1234567891011>>

/freebsd-13-stable/contrib/llvm-project/llvm/lib/MCA/
H A DContext.cpp30 std::unique_ptr<Pipeline>
35 auto RCU = std::make_unique<RetireControlUnit>(SM);
36 auto PRF = std::make_unique<RegisterFile>(SM, MRI, Opts.RegisterFileSize);
37 auto LSU = std::make_unique<LSUnit>(SM, Opts.LoadQueueSize,
39 auto HWS = std::make_unique<Scheduler>(SM, *LSU);
42 auto Fetch = std::make_unique<EntryStage>(SrcMgr);
43 auto Dispatch = std::make_unique<DispatchStage>(STI, MRI, Opts.DispatchWidth,
46 std::make_unique<ExecuteStage>(*HWS, Opts.EnableBottleneckAnalysis);
47 auto Retire = std::make_unique<RetireStage>(*RCU, *PRF, *LSU);
50 addHardwareUnit(std
[all...]
/freebsd-13-stable/contrib/kyua/utils/cmdline/
H A Dparser_fwd.hpp45 typedef std::vector< std::string > args_vector;
49 typedef std::vector< const base_option* > options_vector;
/freebsd-13-stable/contrib/libcxxrt/
H A Dauxhelper.cc44 throw std::bad_cast();
54 throw std::bad_typeid();
81 throw std::bad_array_new_length();
/freebsd-13-stable/contrib/atf/atf-c++/detail/
H A Dapplication.hpp41 class usage_error : public std::runtime_error {
57 std::string m_argument;
58 std::string m_description;
63 option(char, const std::string&, const std::string&);
74 void usage(std::ostream&);
79 typedef std::set< option > options_set;
86 std::string m_description;
87 std::string m_manpage;
92 virtual std
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/
H A DAMDGPUELFStreamer.cpp23 std::unique_ptr<MCAsmBackend> MAB,
24 std::unique_ptr<MCObjectWriter> OW,
25 std::unique_ptr<MCCodeEmitter> Emitter)
26 : MCELFStreamer(Context, std::move(MAB), std::move(OW),
27 std::move(Emitter)) {}
33 const Triple &T, MCContext &Context, std::unique_ptr<MCAsmBackend> MAB,
34 std::unique_ptr<MCObjectWriter> OW, std::unique_ptr<MCCodeEmitter> Emitter,
36 return new AMDGPUELFStreamer(T, Context, std
[all...]
/freebsd-13-stable/contrib/llvm-project/lldb/source/API/
H A DUtils.h17 template <typename T> std::unique_ptr<T> clone(const std::unique_ptr<T> &src) {
19 return std::make_unique<T>(*src);
23 template <typename T> std::shared_ptr<T> clone(const std::shared_ptr<T> &src) {
25 return std::make_shared<T>(*src);
/freebsd-13-stable/contrib/atf/atf-c++/
H A Dbuild.hpp43 process::argv_array c_o(const std::string&, const std::string&,
45 process::argv_array cpp(const std::string&, const std::string&,
47 process::argv_array cxx_o(const std::string&, const std::string&,
/freebsd-13-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/wasm/
H A DObject.cpp22 Section NewSection, std::unique_ptr<MemoryBuffer> &&Content) {
24 OwnedContents.emplace_back(std::move(Content));
30 std::remove_if(std::begin(Sections), std::end(Sections), ToRemove),
31 std::end(Sections));
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Testing/Support/
H A DError.cpp16 std::vector<std::shared_ptr<ErrorInfoBase>> Infos;
17 handleAllErrors(std::move(Err),
18 [&Infos](std::unique_ptr<ErrorInfoBase> Info) {
19 Infos.emplace_back(std::move(Info));
21 return {std::move(Infos)};
/freebsd-13-stable/sbin/devd/
H A Ddevd.hh47 void set_variable(const std::string &var, const std::string &val);
51 const std::string &get_variable(const std::string &var) const;
54 bool is_set(const std::string &var) const;
57 static const std::string bogus;
58 static const std::string nothing;
61 std::string fix_value(const std::string &val) const;
63 std
[all...]
/freebsd-13-stable/contrib/kyua/engine/
H A Dfilters.hpp64 std::string test_case;
66 test_filter(const utils::fs::path&, const std::string&);
67 static test_filter parse(const std::string&);
69 std::string str(void) const;
73 bool matches_test_case(const utils::fs::path&, const std::string&) const;
81 std::ostream& operator<<(std::ostream&, const test_filter&);
94 std::set< test_filter > _filters;
97 explicit test_filters(const std::set< test_filter >&);
102 typedef std
[all...]
H A Dscanner_fwd.hpp51 typedef std::pair< model::test_program_ptr, std::string > scan_result;
/freebsd-13-stable/contrib/kyua/model/
H A Dtest_case_fwd.hpp46 typedef std::map< std::string, model::test_case > test_cases_map;
H A Dtest_program_fwd.hpp46 typedef std::shared_ptr< test_program > test_program_ptr;
50 typedef std::vector< test_program_ptr > test_programs_vector;
/freebsd-13-stable/contrib/kyua/store/
H A Dlayout_fwd.hpp48 typedef std::pair< std::string, utils::fs::path > results_id_file_pair;
/freebsd-13-stable/contrib/kyua/utils/config/
H A Dexceptions.hpp45 class error : public std::runtime_error {
47 explicit error(const std::string&);
56 const std::string&);
64 explicit invalid_key_error(const std::string&);
72 explicit invalid_key_value(const detail::tree_key&, const std::string&);
80 explicit syntax_error(const std::string&);
89 const std::string& = "");
97 explicit value_error(const std::string&);
H A Dkeys.hpp44 std::string flatten_key(const tree_key&);
45 tree_key parse_key(const std::string&);
H A Dkeys_fwd.hpp44 typedef std::vector< std::string > tree_key;
/freebsd-13-stable/contrib/kyua/utils/process/
H A Doperations_fwd.hpp43 typedef std::vector< std::string > args_vector;
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Lex/
H A DPreprocessorOptions.h47 std::vector<std::pair<std::string, bool/*isUndef*/>> Macros;
48 std::vector<std::string> Includes;
49 std::vector<std::string> MacroIncludes;
74 std::string PCHThroughHeader;
77 std::string ImplicitPCHInclude;
80 std
[all...]
/freebsd-13-stable/contrib/llvm-project/clang/include/clang/Tooling/
H A DCompilationDatabase.h47 std::vector<std::string> CommandLine, Twine Output)
49 CommandLine(std::move(CommandLine)), Output(Output.str()){}
52 std::string Directory;
55 std::string Filename;
58 std::vector<std::string> CommandLine;
61 std::string Output;
66 std::string Heuristic;
103 static std
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/lib/XRay/
H A DLogBuilderConsumer.cpp13 Error LogBuilderConsumer::consume(std::unique_ptr<Record> R) {
16 std::make_error_code(std::errc::invalid_argument),
18 Records.push_back(std::move(R));
22 Error PipelineConsumer::consume(std::unique_ptr<Record> R) {
25 std::make_error_code(std::errc::invalid_argument),
32 Result = joinErrors(std::move(Result), R->apply(*V));
/freebsd-13-stable/contrib/opencsd/decoder/source/pkt_printers/
H A Draw_frame_printer.cpp52 std::string strData;
53 std::ostringstream oss;
56 oss << "Frame Data; Index" << std::setw(7) << index << "; ";
60 case OCSD_FRM_PACKED: oss << std::setw(15) << "RAW_PACKED; "; break;
61 case OCSD_FRM_HSYNC: oss << std::setw(15) << "HSYNC; "; break;
62 case OCSD_FRM_FSYNC: oss << std::setw(15) << "FSYNC; "; break;
64 oss << std::setw(10) << "ID_DATA[";
68 oss << "0x" << std::hex << std::setw(2) << std
[all...]
/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Instrumentation/
H A DSanitizerCoverage.h36 const std::vector<std::string> &AllowlistFiles =
37 std::vector<std::string>(),
38 const std::vector<std::string> &BlocklistFiles =
39 std::vector<std::string>())
53 std::unique_ptr<SpecialCaseList> Allowlist;
54 std
34 ModuleSanitizerCoveragePass( SanitizerCoverageOptions Options = SanitizerCoverageOptions(), const std::vector<std::string> &AllowlistFiles = std::vector<std::string>(), const std::vector<std::string> &BlocklistFiles = std::vector<std::string>()) argument
[all...]
/freebsd-13-stable/contrib/lutok/
H A Ddebug.hpp63 std::shared_ptr< impl > _pimpl;
65 std::tr1::shared_ptr< impl > _pimpl;
72 void get_info(state&, const std::string&);
76 std::string name(void) const;
77 std::string name_what(void) const;
78 std::string what(void) const;
79 std::string source(void) const;
84 std::string short_src(void) const;

Completed in 519 milliseconds

1234567891011>>