Home
last modified time | relevance | path

Searched refs:std (Results 1 – 25 of 5815) sorted by relevance

12345678910>>...233

/freebsd-12.1/contrib/llvm/tools/clang/lib/Headers/
H A D__clang_cuda_complex_builtins.h43 if (std::isinf(__a) || std::isinf(__b)) { in __muldc3()
44 __a = std::copysign(std::isinf(__a) ? 1 : 0, __a); in __muldc3()
45 __b = std::copysign(std::isinf(__b) ? 1 : 0, __b); in __muldc3()
52 if (std::isinf(__c) || std::isinf(__d)) { in __muldc3()
53 __c = std::copysign(std::isinf(__c) ? 1 : 0, __c); in __muldc3()
94 if (std::isinf(__a) || std::isinf(__b)) { in __mulsc3()
103 if (std::isinf(__c) || std::isinf(__d)) { in __mulsc3()
138 double __logbw = std::logb(max(std::abs(__c), std::abs(__d))); in __divdc3()
152 } else if ((std::isinf(__a) || std::isinf(__b)) && std::isfinite(__c) && in __divdc3()
172 float __logbw = std::logb(max(std::abs(__c), std::abs(__d))); in __divsc3()
[all …]
/freebsd-12.1/contrib/libstdc++/include/c_compatibility/
H A Dwchar.h38 using std::wint_t;
40 using std::btowc;
41 using std::wctob;
42 using std::fgetwc;
43 using std::fgetwc;
44 using std::fgetws;
45 using std::fputwc;
46 using std::fputws;
47 using std::fwide;
66 using std::getwc;
[all …]
H A Dstdio.h35 using std::FILE;
44 using std::fopen;
51 using std::scanf;
62 using std::fgetc;
63 using std::fgets;
64 using std::fputc;
66 using std::getc;
68 using std::gets;
69 using std::putc;
71 using std::puts;
[all …]
H A Dmath.h35 using std::abs;
36 using std::acos;
37 using std::asin;
38 using std::atan;
40 using std::cos;
41 using std::sin;
42 using std::tan;
43 using std::cosh;
46 using std::exp;
49 using std::log;
[all …]
H A Dstdlib.h35 using std::div_t;
39 using std::abs;
41 using std::atof;
42 using std::atoi;
43 using std::atol;
46 using std::div;
47 using std::exit;
48 using std::free;
50 using std::labs;
51 using std::ldiv;
[all …]
/freebsd-12.1/contrib/llvm/tools/bugpoint/
H A DToolRunner.h43 const std::vector<std::string> *CCArgs) in CC()
54 const std::vector<std::string> *Args);
64 const std::string &ProgramFile, const std::vector<std::string> &Args,
67 const std::vector<std::string> &CCArgs = std::vector<std::string>(),
137 const std::string &Bitcode, const std::vector<std::string> &Args,
139 const std::vector<std::string> &CCArgs = std::vector<std::string>(),
140 const std::vector<std::string> &SharedLibs = std::vector<std::string>(),
154 LLC(const std::string &llcPath, CC *cc, const std::vector<std::string> *Args, in LLC()
171 const std::string &Bitcode, const std::vector<std::string> &Args,
173 const std::vector<std::string> &CCArgs = std::vector<std::string>(),
[all …]
H A DToolRunner.cpp149 LLI(const std::string &Path, const std::vector<std::string> *Args) in LLI()
158 const std::string &Bitcode, const std::vector<std::string> &Args,
161 const std::vector<std::string> &SharedLibs = std::vector<std::string>(),
256 const std::vector<std::string> &CCArgs = std::vector<std::string>(), in ExecuteProgram()
257 const std::vector<std::string> &SharedLibs = std::vector<std::string>(), in ExecuteProgram()
306 const std::vector<std::string> &SharedLibs = std::vector<std::string>(),
312 const std::string &Bitcode, const std::vector<std::string> &Args, in ExecuteProgram()
407 std::vector<std::string> Args; in createCustomCompiler()
423 std::vector<std::string> Args; in createCustomExecutor()
548 const std::vector<std::string> &CCArgs = std::vector<std::string>(),
[all …]
H A DBugDriver.h54 std::vector<std::string> PassesToRun;
79 bool addSources(const std::vector<std::string> &FileNames);
80 void addPass(std::string p) { PassesToRun.push_back(std::move(p)); } in addPass()
81 void setPassesToRun(const std::vector<std::string> &PTR) { in setPassesToRun()
84 const std::vector<std::string> &getPassesToRun() const { return PassesToRun; } in getPassesToRun()
120 Expected<std::string> compileSharedObject(const std::string &BitcodeFile);
134 std::unique_ptr<Module> swapProgramIn(std::unique_ptr<Module> M);
164 Expected<std::string>
200 std::unique_ptr<Module> performFinalCleanups(std::unique_ptr<Module> M,
253 Error runManyPasses(const std::vector<std::string> &AllPasses);
[all …]
/freebsd-12.1/contrib/llvm/tools/llvm-xray/
H A Dxray-color-helper.cpp26 std::make_tuple(255, 255, 255), std::make_tuple(240, 240, 240),
29 std::make_tuple(82, 82, 82), std::make_tuple(37, 37, 37),
35 std::make_tuple(215, 48, 31), std::make_tuple(179, 0, 0),
41 std::make_tuple(5, 112, 176), std::make_tuple(4, 90, 141),
47 std::make_tuple(255, 255, 255), std::make_tuple(0, 0, 0)},
75 std::make_tuple(255, 0, 0), std::make_tuple(0, 255, 0)}};
114 double n = std::max(std::min(B, 1.0), 0.0); in unitIntervalTo8BitChar()
129 double X = C * (1 - std::abs(std::fmod(HPrime, 2.0) - 1)); in convertToRGB()
175 double S = std::get<1>(C0) + T * (std::get<1>(C1) - std::get<1>(C0)); in interpolateHSV()
176 double V = std::get<2>(C0) + T * (std::get<2>(C1) - std::get<2>(C0)); in interpolateHSV()
[all …]
/freebsd-12.1/contrib/libstdc++/include/backward/
H A Dalgo.h70 using std::find;
71 using std::find_if;
73 using std::count;
75 using std::search;
79 using std::replace;
85 using std::remove;
89 using std::unique;
91 using std::reverse;
93 using std::rotate;
98 using std::sort;
[all …]
H A Dfunction.h68 using std::plus;
69 using std::minus;
71 using std::divides;
72 using std::modulus;
73 using std::negate;
76 using std::greater;
77 using std::less;
85 using std::not1;
86 using std::not2;
89 using std::bind1st;
[all …]
/freebsd-12.1/contrib/libstdc++/include/tr1/
H A Dmath.h41 using std::tr1::acos;
43 using std::tr1::asin;
45 using std::tr1::atan;
51 using std::tr1::cos;
53 using std::tr1::erf;
55 using std::tr1::exp;
61 using std::tr1::fma;
72 using std::tr1::log;
82 using std::tr1::pow;
89 using std::tr1::sin;
[all …]
H A Dfunctional_hash.h41 namespace std
53 : public std::unary_function<_Tp, std::size_t> \
78 : public std::unary_function<_Tp*, std::size_t>
89 template<std::size_t = sizeof(std::size_t)>
140 : public std::unary_function<std::string, std::size_t>
150 : public std::unary_function<std::wstring, std::size_t>
163 : public std::unary_function<float, std::size_t>
180 : public std::unary_function<double, std::size_t>
211 std::numeric_limits<std::size_t>::max() + 1.0l;
216 const std::size_t __hibits = (std::size_t)__ldval;
[all …]
/freebsd-12.1/contrib/llvm/tools/lldb/include/lldb/
H A Dlldb-forward.h313 typedef std::shared_ptr<lldb_private::ABI> ABISP;
314 typedef std::shared_ptr<lldb_private::Baton> BatonSP;
315 typedef std::shared_ptr<lldb_private::Block> BlockSP;
346 typedef std::shared_ptr<lldb_private::Event> EventSP;
353 typedef std::shared_ptr<lldb_private::File> FileSP;
375 typedef std::weak_ptr<lldb_private::Module> ModuleWP;
414 typedef std::shared_ptr<lldb_private::Queue> QueueSP;
415 typedef std::weak_ptr<lldb_private::Queue> QueueWP;
417 typedef std::shared_ptr<lldb_private::REPL> REPLSP;
467 typedef std::shared_ptr<lldb_private::Type> TypeSP;
[all …]
/freebsd-12.1/contrib/llvm/include/llvm/Support/
H A DErrc.h39 bad_address = int(std::errc::bad_address),
41 broken_pipe = int(std::errc::broken_pipe),
45 file_exists = int(std::errc::file_exists),
46 file_too_large = int(std::errc::file_too_large),
52 interrupted = int(std::errc::interrupted),
54 invalid_seek = int(std::errc::invalid_seek),
55 io_error = int(std::errc::io_error),
66 not_supported = int(std::errc::not_supported),
79 inline std::error_code make_error_code(errc E) { in make_error_code()
80 return std::error_code(static_cast<int>(E), std::generic_category()); in make_error_code()
[all …]
/freebsd-12.1/contrib/libstdc++/include/ext/pb_ds/detail/resize_policy/
H A Dhash_prime_size_policy_imp.hpp91 /* 30 */ (std::size_t)8589934583ull,
92 /* 31 */ (std::size_t)17179869143ull,
93 /* 32 */ (std::size_t)34359738337ull,
94 /* 33 */ (std::size_t)68719476731ull,
95 /* 34 */ (std::size_t)137438953447ull,
96 /* 35 */ (std::size_t)274877906899ull,
97 /* 36 */ (std::size_t)549755813881ull,
98 /* 37 */ (std::size_t)1099511627689ull,
99 /* 38 */ (std::size_t)2199023255531ull,
100 /* 39 */ (std::size_t)4398046511093ull,
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/
H A DCodeGenOptions.h122 std::string CodeModel;
142 std::string DebugPass;
155 std::map<std::string, std::string> DebugPrefixMap;
158 std::string FloatABI;
202 std::vector<std::string> DependentLibraries;
205 std::vector<std::string> LinkerOptions;
264 std::vector<std::string> RewriteMapFiles;
277 std::vector<std::string> NoBuiltinFuncs;
279 std::vector<std::string> Reciprocals;
289 std::vector<std::string> DefaultFunctionAttrs;
[all …]
/freebsd-12.1/contrib/libstdc++/libsupc++/
H A Dvec.cc71 std::size_t element_size, in __cxa_vec_new()
72 std::size_t padding_size, in __cxa_vec_new()
83 std::size_t element_size, in __cxa_vec_new2()
84 std::size_t padding_size, in __cxa_vec_new2()
121 std::size_t element_size, in __cxa_vec_new3()
165 std::size_t ix = 0; in __cxa_vec_ctor()
194 std::size_t ix = 0; in __cxa_vec_cctor()
275 std::terminate(); in __cxa_vec_cleanup()
306 std::size_t element_count = reinterpret_cast<std::size_t *>(base)[-1]; in __cxa_vec_delete2()
336 std::size_t size = 0; in __cxa_vec_delete3()
[all …]
/freebsd-12.1/usr.bin/dtc/
H A Dfdt.hh75 typedef std::unordered_set<std::string> string_set;
407 std::unordered_set<std::string> labels;
493 std::unordered_set<std::string> deleted_children;
497 std::unordered_set<std::string> deleted_props;
524 std::unordered_set<std::string> &&l,
621 std::unordered_set<std::string> &&label=std::unordered_set<std::string>(),
703 class node_path : public std::vector<std::pair<std::string,std::string>>
757 std::unordered_map<std::string, node*> node_names;
769 std::vector<std::pair<std::string, node_path>> ordered_node_paths;
807 std::unordered_set<std::string> phandle_targets;
[all …]
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Tooling/Refactoring/Rename/
H A DRenamingAction.h33 RenamingAction(const std::vector<std::string> &NewNames,
34 const std::vector<std::string> &PrevNames,
35 const std::vector<std::vector<std::string>> &USRList,
44 const std::vector<std::string> &NewNames, &PrevNames;
45 const std::vector<std::vector<std::string>> &USRList;
46 std::map<std::string, tooling::Replacements> &FileToReplaces;
101 const std::vector<std::string> &NewNames, in QualifiedRenamingAction()
102 const std::vector<std::vector<std::string>> &USRList, in QualifiedRenamingAction()
110 const std::vector<std::string> &NewNames;
113 const std::vector<std::vector<std::string>> &USRList;
[all …]
/freebsd-12.1/contrib/atf/atf-c++/
H A Dtests.hpp43 std::ostream& m_os;
48 atf_tp_writer(std::ostream&);
50 void start_tc(const std::string&);
52 void tc_meta_data(const std::string&, const std::string&);
55 bool match(const std::string&, const std::string&);
63 typedef std::map< std::string, std::string > vars_map;
76 std::auto_ptr< tc_impl > pimpl;
93 const std::string get_config_var(const std::string&) const;
94 const std::string get_config_var(const std::string&, const std::string&)
96 const std::string get_md_var(const std::string&) const;
[all …]
/freebsd-12.1/contrib/llvm/include/llvm/ADT/
H A DSTLExtras.h57 *std::begin(std::declval<RangeT &>()))>::type;
571 return std::tuple<Iters...>(std::next(std::get<Ns>(iterators))...);
576 return std::tuple<Iters...>(std::prev(std::get<Ns>(iterators))...);
664 std::forward<T>(t), std::forward<U>(u), std::forward<Args>(args)...);
673 std::forward<T>(t), std::forward<U>(u), std::forward<Args>(args)...);
799 std::forward<T>(t), std::forward<U>(u), std::forward<Args>(args)...);
1000 template <std::size_t N, std::size_t... I>
1348 typename std::enable_if<!std::is_array<T>::value, std::unique_ptr<T>>::type
1438 std::size_t Index = std::numeric_limits<std::size_t>::max();
1525 -> decltype(std::forward<F>(f)(std::get<I>(std::forward<Tuple>(t))...)) {
[all …]
/freebsd-12.1/contrib/llvm/lib/ExecutionEngine/Orc/
H A DLLJIT.cpp48 std::move(*TM), std::move(DL))); in Create()
52 std::move(JTMB), std::move(DL), in Create()
114 auto SharedMU = std::shared_ptr<MaterializationUnit>(std::move(MU)); in __anonb1c15e800402()
168 new LLLazyJIT(std::move(ES), std::move(*TM), std::move(DL), in Create()
169 std::move(*LCTMgr), std::move(ISMBuilder))); in Create()
173 std::move(ES), std::move(JTMB), std::move(DL), NumCompileThreads, in Create()
174 std::move(*LCTMgr), std::move(ISMBuilder))); in Create()
191 std::function<std::unique_ptr<IndirectStubsManager>()> ISMBuilder) in LLLazyJIT()
192 : LLJIT(std::move(ES), std::move(TM), std::move(DL)), in LLLazyJIT()
201 std::function<std::unique_ptr<IndirectStubsManager>()> ISMBuilder) in LLLazyJIT()
[all …]
/freebsd-12.1/contrib/llvm/lib/XRay/
H A DRecordInitializer.cpp42 std::make_error_code(std::errc::invalid_argument), in visit()
49 std::make_error_code(std::errc::invalid_argument), in visit()
111 std::make_error_code(std::errc::invalid_argument), in visit()
116 std::make_error_code(std::errc::bad_address), in visit()
124 std::make_error_code(std::errc::invalid_argument), in visit()
145 std::make_error_code(std::errc::bad_address), in visit()
154 std::make_error_code(std::errc::invalid_argument), in visit()
188 std::make_error_code(std::errc::bad_address), in visit()
207 std::make_error_code(std::errc::bad_address), in visit()
250 std::make_error_code(std::errc::bad_address), in visit()
[all …]
/freebsd-12.1/contrib/libc++/include/
H A Dmath.h398 typename std::enable_if<std::is_integral<_A1>::value, int>::type
414 typename std::enable_if<std::is_integral<_A1>::value, int>::type
526 typename std::enable_if<std::is_integral<_A1>::value, bool>::type
570 typename std::enable_if<std::is_integral<_A1>::value, bool>::type
781 typename std::enable_if<std::is_integral<_A1>::value, double>::type
793 typename std::enable_if<std::is_integral<_A1>::value, double>::type
805 typename std::enable_if<std::is_integral<_A1>::value, double>::type
840 typename std::enable_if<std::is_integral<_A1>::value, double>::type
1285 typename std::enable_if<std::is_integral<_A1>::value, int>::type
1355 typename std::enable_if<std::is_integral<_A1>::value, long>::type
[all …]

12345678910>>...233