Home
last modified time | relevance | path

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

12345678910>>...154

/freebsd/contrib/llvm-project/libcxx/modules/std/
H A Dtype_traits.cppm
H A Dcmath.cppm
H A Dcmath.inc10 export namespace std {
12 using std::double_t _LIBCPP_USING_IF_EXISTS;
13 using std::float_t _LIBCPP_USING_IF_EXISTS;
15 using std::acos _LIBCPP_USING_IF_EXISTS;
16 using std::acosf _LIBCPP_USING_IF_EXISTS;
17 using std::acosl _LIBCPP_USING_IF_EXISTS;
19 using std::asin _LIBCPP_USING_IF_EXISTS;
20 using std::asinf _LIBCPP_USING_IF_EXISTS;
21 using std::asinl _LIBCPP_USING_IF_EXISTS;
23 using std::atan _LIBCPP_USING_IF_EXISTS;
[all …]
H A Datomic.cppm
H A Dalgorithm.cppm
H A Dalgorithm.inc10 export namespace std {
13 using std::ranges::in_found_result;
14 using std::ranges::in_fun_result;
15 using std::ranges::in_in_out_result;
16 using std::ranges::in_in_result;
17 using std::ranges::in_out_out_result;
18 using std::ranges::in_out_result;
20 using std::ranges::in_value_result;
22 using std::ranges::min_max_result;
23 // using std::ranges::out_value_result;
[all …]
H A Datomic.inc10 export namespace std {
13 using std::memory_order _LIBCPP_USING_IF_EXISTS;
14 using std::memory_order_acq_rel _LIBCPP_USING_IF_EXISTS;
15 using std::memory_order_acquire _LIBCPP_USING_IF_EXISTS;
16 using std::memory_order_consume _LIBCPP_USING_IF_EXISTS;
17 using std::memory_order_relaxed _LIBCPP_USING_IF_EXISTS;
18 using std::memory_order_release _LIBCPP_USING_IF_EXISTS;
19 using std::memory_order_seq_cst _LIBCPP_USING_IF_EXISTS;
21 using std::kill_dependency _LIBCPP_USING_IF_EXISTS;
25 using std::atomic_ref _LIBCPP_USING_IF_EXISTS;
[all …]
H A Dcwchar.cppm
H A Diterator.cppm
H A Dmemory.cppm
H A Dchrono.cppm
H A Dcwchar.inc10 export namespace std {
12 using std::mbstate_t _LIBCPP_USING_IF_EXISTS;
13 using std::size_t _LIBCPP_USING_IF_EXISTS;
14 using std::wint_t _LIBCPP_USING_IF_EXISTS;
16 using std::tm _LIBCPP_USING_IF_EXISTS;
18 using std::btowc _LIBCPP_USING_IF_EXISTS;
19 using std::fgetwc _LIBCPP_USING_IF_EXISTS;
20 using std::fgetws _LIBCPP_USING_IF_EXISTS;
21 using std::fputwc _LIBCPP_USING_IF_EXISTS;
22 using std::fputws _LIBCPP_USING_IF_EXISTS;
[all …]
H A Dmemory.inc10 export namespace std {
12 using std::pointer_traits;
15 using std::to_address;
18 using std::align;
19 using std::assume_aligned;
22 // using std::start_lifetime_as;
23 // using std::start_lifetime_as_array;
26 using std::allocator_arg;
27 using std::allocator_arg_t;
30 using std::uses_allocator;
[all …]
H A Dchrono.inc10 export namespace std {
13 using std::chrono::duration;
14 using std::chrono::time_point;
18 using std::common_type;
23 using std::chrono::treat_as_floating_point;
24 using std::chrono::treat_as_floating_point_v;
26 using std::chrono::duration_values;
28 // using std::chrono::is_clock;
29 // using std::chrono::is_clock_v;
32 using std::chrono::operator+;
[all …]
H A Dranges.cppm
H A Dcstdio.cppm
/freebsd/contrib/llvm-project/clang/lib/Tooling/Inclusions/Stdlib/
H A DStdSymbolMap.inc546 SYMBOL(FILE, std::, <cstdio>)
549 SYMBOL(_Exit, std::, <cstdlib>)
552 SYMBOL(accumulate, std::, <numeric>)
553 SYMBOL(acos, std::, <cmath>)
556 SYMBOL(acosf, std::, <cmath>)
559 SYMBOL(acosh, std::, <cmath>)
562 SYMBOL(acoshf, std::, <cmath>)
565 SYMBOL(acoshl, std::, <cmath>)
568 SYMBOL(acosl, std::, <cmath>)
571 SYMBOL(add_const, std::, <type_traits>)
[all …]
/freebsd/contrib/llvm-project/libcxx/include/
H A Dstdatomic.h17 using std-atomic = std::atomic<T>; // exposition only
19 #define _Atomic(T) std-atomic<T>
32 using std::memory_order // see below
33 using std::memory_order_relaxed // see below
34 using std::memory_order_consume // see below
35 using std::memory_order_acquire // see below
36 using std::memory_order_release // see below
37 using std::memory_order_acq_rel // see below
38 using std
[all...]
/freebsd/contrib/llvm-project/llvm/tools/bugpoint/
H A DToolRunner.h38 std::string CCPath; // The path to the cc executable.
39 std::string RemoteClientPath; // The path to the rsh / ssh executable.
40 std::vector<std::string> ccArgs; // CC-specific arguments.
42 const std::vector<std::string> *CCArgs) in CC()
43 : CCPath(std::string(ccPath)), RemoteClientPath(std::string(RemotePath)) { in CC()
51 static CC *create(const char *Argv0, std::string &Message,
52 const std::string &CCBinary,
53 const std::vector<std::string> *Args);
63 const std::string &ProgramFile, const std::vector<std::string> &Args,
64 FileType fileType, const std::string &InputFile,
[all …]
H A DToolRunner.cpp34 cl::opt<std::string>
38 cl::opt<std::string> RemoteHost("remote-host",
41 cl::opt<std::string> RemotePort("remote-port",
44 cl::opt<std::string> RemoteUser("remote-user",
47 cl::opt<std::string>
60 std::string *ErrMsg = nullptr) { in RunProgramWithTimeout()
61 std::optional<StringRef> Redirects[3] = {StdInFile, StdOutFile, StdErrFile}; in RunProgramWithTimeout()
62 return sys::ExecuteAndWait(ProgramPath, Args, std::nullopt, Redirects, in RunProgramWithTimeout()
76 std::optional<StringRef> Redirects[3] = {StdInFile, StdOutFile, StdErrFile}; in RunProgramRemotelyWithTimeout()
79 int ReturnCode = sys::ExecuteAndWait(RemoteClientPath, Args, std in RunProgramRemotelyWithTimeout()
[all...]
/freebsd/contrib/llvm-project/llvm/tools/llvm-xray/
H A Dxray-color-helper.cpp24 const std::tuple<uint8_t, uint8_t, uint8_t> SequentialMaps[][9] = {
26 std::make_tuple(255, 255, 255), std::make_tuple(240, 240, 240),
27 std::make_tuple(217, 217, 217), std::make_tuple(189, 189, 189),
28 std::make_tuple(150, 150, 150), std::make_tuple(115, 115, 115),
29 std::make_tuple(82, 82, 82), std::make_tuple(37, 37, 37),
30 std::make_tuple(0, 0, 0)},
32 std::make_tuple(255, 247, 236), std::make_tuple(254, 232, 200),
33 std::make_tuple(253, 212, 158), std::make_tuple(253, 187, 132),
34 std::make_tuple(252, 141, 89), std::make_tuple(239, 101, 72),
35 std::make_tuple(215, 48, 31), std::make_tuple(179, 0, 0),
[all …]
/freebsd/sys/crypto/openssl/powerpc64/
H A Dppc-mont.S24 std 20,-96(12)
25 std 21,-88(12)
26 std 22,-80(12)
27 std 23,-72(12)
28 std 24,-64(12)
29 std 25,-56(12)
30 std 26,-48(12)
31 std 27,-40(12)
32 std 28,-32(12)
33 std 29,-24(12)
[all …]
H A Dkeccak1600-ppc64.S16 std 11,96(1)
18 std 16,104(1)
20 std 21,112(1)
22 std 26,120(1)
132 std 3,80(1)
191 std 14,128(1)
192 std 15,136(1)
193 std 16,144(1)
194 std 17,152(1)
195 std 18,160(1)
[all …]
/freebsd/sys/crypto/openssl/powerpc64le/
H A Dppc-mont.S24 std 20,-96(12)
25 std 21,-88(12)
26 std 22,-80(12)
27 std 23,-72(12)
28 std 24,-64(12)
29 std 25,-56(12)
30 std 26,-48(12)
31 std 27,-40(12)
32 std 28,-32(12)
33 std 29,-24(12)
[all …]
H A Dkeccak1600-ppc64.S16 std 11,96(1)
18 std 16,104(1)
20 std 21,112(1)
22 std 26,120(1)
132 std 3,80(1)
191 std 14,128(1)
192 std 15,136(1)
193 std 16,144(1)
194 std 17,152(1)
195 std 18,160(1)
[all …]

12345678910>>...154