| /NextBSD/contrib/llvm/tools/bugpoint/ |
| HD | ToolRunner.h | 39 std::string GCCPath; // The path to the gcc executable. 40 std::string RemoteClientPath; // The path to the rsh / ssh executable. 41 std::vector<std::string> gccArgs; // GCC-specific arguments. 43 const std::vector<std::string> *GCCArgs) in GCC() 50 static GCC *create(std::string &Message, 51 const std::string &GCCBinary, 52 const std::vector<std::string> *Args); 61 int ExecuteProgram(const std::string &ProgramFile, 62 const std::vector<std::string> &Args, 64 const std::string &InputFile, [all …]
|
| HD | ToolRunner.cpp | 34 cl::opt<std::string> 38 cl::opt<std::string> 42 cl::opt<std::string> 46 cl::opt<std::string> 50 cl::opt<std::string> 65 std::string *ErrMsg = nullptr) { in RunProgramWithTimeout() 111 std::ostringstream OS; in RunProgramRemotelyWithTimeout() 118 std::string StdOutFileName = StdOutFile.str(); in RunProgramRemotelyWithTimeout() 119 std::ifstream ErrorFile(StdOutFileName.c_str()); in RunProgramRemotelyWithTimeout() 121 std::copy(std::istreambuf_iterator<char>(ErrorFile), in RunProgramRemotelyWithTimeout() [all …]
|
| HD | BugDriver.h | 50 std::string ReferenceOutputFile; // Name of `good' output file 52 std::vector<std::string> PassesToRun; 78 bool addSources(const std::vector<std::string> &FileNames); 79 void addPass(std::string p) { PassesToRun.push_back(p); } in addPass() 80 void setPassesToRun(const std::vector<std::string> &PTR) { in setPassesToRun() 83 const std::vector<std::string> &getPassesToRun() const { in getPassesToRun() 91 bool run(std::string &ErrMsg); 97 bool debugOptimizerCrash(const std::string &ID = "passes"); 102 bool debugCodeGeneratorCrash(std::string &Error); 107 void debugMiscompilation(std::string *Error); [all …]
|
| /NextBSD/contrib/libstdc++/include/c_compatibility/ |
| D | wchar.h | 35 using std::mbstate_t; 38 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; [all …]
|
| D | stdio.h | 35 using std::FILE; 36 using std::fpos_t; 38 using std::remove; 39 using std::rename; 40 using std::tmpfile; 41 using std::tmpnam; 42 using std::fclose; 43 using std::fflush; 44 using std::fopen; 45 using std::freopen; [all …]
|
| D | math.h | 35 using std::abs; 36 using std::acos; 37 using std::asin; 38 using std::atan; 39 using std::atan2; 40 using std::cos; 41 using std::sin; 42 using std::tan; 43 using std::cosh; 44 using std::sinh; [all …]
|
| D | stdlib.h | 35 using std::div_t; 36 using std::ldiv_t; 38 using std::abort; 39 using std::abs; 40 using std::atexit; 41 using std::atof; 42 using std::atoi; 43 using std::atol; 44 using std::bsearch; 45 using std::calloc; [all …]
|
| /NextBSD/contrib/libstdc++/include/backward/ |
| D | algo.h | 69 using std::for_each; 70 using std::find; 71 using std::find_if; 72 using std::adjacent_find; 73 using std::count; 74 using std::count_if; 75 using std::search; 76 using std::search_n; 77 using std::swap_ranges; 78 using std::transform; [all …]
|
| D | function.h | 66 using std::unary_function; 67 using std::binary_function; 68 using std::plus; 69 using std::minus; 70 using std::multiplies; 71 using std::divides; 72 using std::modulus; 73 using std::negate; 74 using std::equal_to; 75 using std::not_equal_to; [all …]
|
| D | iomanip.h | 36 using std::boolalpha; 37 using std::noboolalpha; 38 using std::showbase; 39 using std::noshowbase; 40 using std::showpoint; 41 using std::noshowpoint; 42 using std::showpos; 43 using std::noshowpos; 44 using std::skipws; 45 using std::noskipws; [all …]
|
| /NextBSD/contrib/libstdc++/include/tr1/ |
| D | math.h | 41 using std::tr1::acos; 42 using std::tr1::acosh; 43 using std::tr1::asin; 44 using std::tr1::asinh; 45 using std::tr1::atan; 46 using std::tr1::atan2; 47 using std::tr1::atanh; 48 using std::tr1::cbrt; 49 using std::tr1::ceil; 50 using std::tr1::copysign; [all …]
|
| D | functional_hash.h | 41 namespace std 53 : public std::unary_function<_Tp, std::size_t> \ 55 std::size_t \ 57 { return static_cast<std::size_t>(__val); } \ 78 : public std::unary_function<_Tp*, std::size_t> 80 std::size_t 82 { return reinterpret_cast<std::size_t>(__p); } 89 template<std::size_t = sizeof(std::size_t)> 92 static std::size_t 93 hash(const char* __first, std::size_t __length) [all …]
|
| /NextBSD/contrib/llvm/tools/lldb/include/lldb/ |
| HD | lldb-forward.h | 291 typedef std::shared_ptr<lldb_private::ABI> ABISP; 292 typedef std::shared_ptr<lldb_private::Baton> BatonSP; 293 typedef std::shared_ptr<lldb_private::Block> BlockSP; 294 typedef std::shared_ptr<lldb_private::Breakpoint> BreakpointSP; 295 typedef std::weak_ptr<lldb_private::Breakpoint> BreakpointWP; 296 typedef std::shared_ptr<lldb_private::BreakpointSite> BreakpointSiteSP; 297 typedef std::weak_ptr<lldb_private::BreakpointSite> BreakpointSiteWP; 298 typedef std::shared_ptr<lldb_private::BreakpointLocation> BreakpointLocationSP; 299 typedef std::weak_ptr<lldb_private::BreakpointLocation> BreakpointLocationWP; 300 typedef std::shared_ptr<lldb_private::BreakpointResolver> BreakpointResolverSP; [all …]
|
| /NextBSD/contrib/llvm/include/llvm/Support/ |
| HD | Errc.h | 37 argument_list_too_long = int(std::errc::argument_list_too_long), 38 argument_out_of_domain = int(std::errc::argument_out_of_domain), 39 bad_address = int(std::errc::bad_address), 40 bad_file_descriptor = int(std::errc::bad_file_descriptor), 41 broken_pipe = int(std::errc::broken_pipe), 42 device_or_resource_busy = int(std::errc::device_or_resource_busy), 43 directory_not_empty = int(std::errc::directory_not_empty), 44 executable_format_error = int(std::errc::executable_format_error), 45 file_exists = int(std::errc::file_exists), 46 file_too_large = int(std::errc::file_too_large), [all …]
|
| /NextBSD/contrib/libstdc++/include/ext/pb_ds/detail/resize_policy/ |
| D | hash_prime_size_policy_imp.hpp | 53 num_distinct_sizes = sizeof(std::size_t) != 8 ? 59 static const std::size_t g_a_sizes[num_distinct_sizes_64_bit] = 91 /* 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, [all …]
|
| /NextBSD/contrib/libstdc++/libsupc++/ |
| D | vec.cc | 70 __cxa_vec_new(std::size_t element_count, in __cxa_vec_new() 71 std::size_t element_size, in __cxa_vec_new() 72 std::size_t padding_size, in __cxa_vec_new() 82 __cxa_vec_new2(std::size_t element_count, in __cxa_vec_new2() 83 std::size_t element_size, in __cxa_vec_new2() 84 std::size_t padding_size, in __cxa_vec_new2() 87 void *(*alloc) (std::size_t), in __cxa_vec_new2() 90 std::size_t size = element_count * element_size + padding_size; in __cxa_vec_new2() 98 reinterpret_cast <std::size_t *> (base)[-1] = element_count; in __cxa_vec_new2() 100 reinterpret_cast <std::size_t *> (base)[-2] = element_size; in __cxa_vec_new2() [all …]
|
| /NextBSD/contrib/atf/atf-c++/ |
| D | tests.hpp | 43 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; 83 void require_prog(const std::string&) const; 88 tc(const std::string&, const bool); 93 const std::string get_config_var(const std::string&) const; [all …]
|
| /NextBSD/sys/powerpc/ps3/ |
| HD | ps3-hvcall.S | 9 std %r0,16(%r1) 11 std %r7,48(%r1) 12 std %r8,56(%r1) 17 std %r4,0(%r11) 19 std %r5,0(%r11) 27 std %r0,16(%r1) 39 std %r0,16(%r1) 41 std %r6,48(%r1) 42 std %r7,56(%r1) 47 std %r4,0(%r11) [all …]
|
| /NextBSD/contrib/llvm/tools/llvm-symbolizer/ |
| HD | LLVMSymbolize.h | 43 std::string DefaultArch; 44 std::vector<std::string> DsymHints; 48 std::string DefaultArch = "") 61 std::string 62 symbolizeCode(const std::string &ModuleName, uint64_t ModuleOffset); 63 std::string 64 symbolizeData(const std::string &ModuleName, uint64_t ModuleOffset); 66 static std::string DemangleName(const std::string &Name); 68 typedef std::pair<ObjectFile*, ObjectFile*> ObjectPair; 70 ModuleInfo *getOrCreateModuleInfo(const std::string &ModuleName); [all …]
|
| /NextBSD/contrib/libstdc++/include/ext/ |
| D | stdio_sync_filebuf.h | 50 template<typename _CharT, typename _Traits = std::char_traits<_CharT> > in _GLIBCXX_BEGIN_NAMESPACE() 51 class stdio_sync_filebuf : public std::basic_streambuf<_CharT, _Traits> in _GLIBCXX_BEGIN_NAMESPACE() 63 std::__c_file* const _M_file; in _GLIBCXX_BEGIN_NAMESPACE() 71 stdio_sync_filebuf(std::__c_file* __f) in _GLIBCXX_BEGIN_NAMESPACE() 82 std::__c_file* const in _GLIBCXX_BEGIN_NAMESPACE() 132 virtual std::streamsize in _GLIBCXX_BEGIN_NAMESPACE() 133 xsgetn(char_type* __s, std::streamsize __n); in _GLIBCXX_BEGIN_NAMESPACE() 141 if (std::fflush(_M_file)) in _GLIBCXX_BEGIN_NAMESPACE() 151 virtual std::streamsize in _GLIBCXX_BEGIN_NAMESPACE() 152 xsputn(const char_type* __s, std::streamsize __n); in _GLIBCXX_BEGIN_NAMESPACE() [all …]
|
| /NextBSD/contrib/llvm/tools/lldb/include/lldb/Core/ |
| HD | IOStreamMacros.h | 16 #define RAW_HEXBASE std::setfill('0') << std::hex << std::right 18 #define RAWHEX8(x) RAW_HEXBASE << std::setw(2) << ((uint32_t)(x)) 19 #define RAWHEX16 RAW_HEXBASE << std::setw(4) 20 #define RAWHEX32 RAW_HEXBASE << std::setw(8) 21 #define RAWHEX64 RAW_HEXBASE << std::setw(16) 22 #define HEX8(x) HEXBASE << std::setw(2) << ((uint32_t)(x)) 23 #define HEX16 HEXBASE << std::setw(4) 24 #define HEX32 HEXBASE << std::setw(8) 25 #define HEX64 HEXBASE << std::setw(16) 26 #define RAW_HEX(x) RAW_HEXBASE << std::setw(sizeof(x)*2) << (x) [all …]
|
| /NextBSD/contrib/libstdc++/config/abi/pre/ |
| D | gnu.ver | 29 std::[A-Za]*; 30 # std::ba[a-r]*; 31 std::basic_[a-e]*; 32 std::basic_f[a-r]*; 33 # std::basic_fstream; 34 std::basic_f[t-z]*; 35 std::basic_[g-h]*; 36 std::basic_i[a-e]*; 37 # std::basic_ifstream; 38 std::basic_i[g-r]*; [all …]
|
| /NextBSD/contrib/llvm/tools/clang/include/clang/Tooling/ |
| HD | Tooling.h | 73 std::shared_ptr<PCHContainerOperations> PCHContainerOps, 89 std::shared_ptr<PCHContainerOperations> PCHContainerOps, 106 std::unique_ptr<FrontendActionFactory> newFrontendActionFactory(); 138 inline std::unique_ptr<FrontendActionFactory> newFrontendActionFactory( 152 std::shared_ptr<PCHContainerOperations> PCHContainerOps = 153 std::make_shared<PCHContainerOperations>()); 157 typedef std::vector<std::pair<std::string, std::string>> FileContentMappings; 172 const std::vector<std::string> &Args, const Twine &FileName = "input.cc", 173 std::shared_ptr<PCHContainerOperations> PCHContainerOps = 174 std::make_shared<PCHContainerOperations>(), [all …]
|
| /NextBSD/contrib/atf/atf-sh/ |
| HD | atf-check.cpp | 94 std::string value; 97 const std::string& p_value) : in output_check() 105 class temp_file : public std::ostream { 106 std::auto_ptr< atf::fs::path > m_path; 111 std::ostream(NULL), in temp_file() 118 std::strcpy(buf.get(), file.c_str()); in temp_file() 146 write(const std::string& text) in write() 166 parse_exit_code(const std::string& str) in parse_exit_code() 171 throw std::runtime_error("Unused reason"); in parse_exit_code() 173 } catch (const std::runtime_error&) { in parse_exit_code() [all …]
|
| /NextBSD/contrib/llvm/lib/ExecutionEngine/RuntimeDyld/ |
| HD | RuntimeDyldChecker.cpp | 45 std::tie(LHSResult, RemainingExpr) = in evaluate() 55 std::tie(RHSResult, RemainingExpr) = in evaluate() 100 EvalResult(std::string ErrorMsg) : Value(0), ErrorMsg(ErrorMsg) {} in EvalResult() 103 const std::string &getErrorMsg() const { return ErrorMsg; } in getErrorMsg() 107 std::string ErrorMsg; 116 std::tie(Token, Remaining) = parseSymbol(Expr); in getTokenForError() 118 std::tie(Token, Remaining) = parseNumberString(Expr); in getTokenForError() 130 std::string ErrorMsg("Encountered unexpected token '"); in unexpectedToken() 141 return EvalResult(std::move(ErrorMsg)); in unexpectedToken() 151 std::pair<BinOpToken, StringRef> parseBinOpToken(StringRef Expr) const { in parseBinOpToken() [all …]
|