| /src/external/bsd/atf/dist/atf-c++/ |
| utils.cpp | 42 atf_utils_cat_file(path.c_str(), prefix.c_str()); 48 atf_utils_copy_file(source.c_str(), destination.c_str()); 54 return atf_utils_compare_file(path.c_str(), contents.c_str()); 60 atf_utils_create_file(path.c_str(), "%s", contents.c_str()); 66 return atf_utils_file_exists(path.c_str()); 80 return atf_utils_grep_file("%s", path.c_str(), regex.c_str()) [all...] |
| build.cpp | 85 atf_error_t err = atf_build_c_o(sfile.c_str(), ofile.c_str(), 99 atf_error_t err = atf_build_cpp(sfile.c_str(), ofile.c_str(), 113 atf_error_t err = atf_build_cxx_o(sfile.c_str(), ofile.c_str(),
|
| /src/external/bsd/atf/dist/atf-c++/detail/ |
| env.cpp | 50 return atf_env_get(name.c_str()); 56 return atf_env_has(name.c_str()); 62 atf_error_t err = atf_env_set(name.c_str(), val.c_str()); 70 atf_error_t err = atf_env_unset(name.c_str());
|
| /src/external/bsd/atf/dist/tools/ |
| env.cpp | 51 const char *n =name.c_str(); 66 return getenv(name.c_str()) != NULL; 72 if (setenv(name.c_str(), val.c_str(), 1) == -1) 82 unsetenv(name.c_str());
|
| /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/ |
| FuzzerUtilLinux.cpp | 22 return system(CmdLine.c_str());
|
| FuzzerDataFlowTrace.cpp | 26 Printf("INFO: DataFlowTrace: reading from '%s'\n", DirPath.c_str()); 50 Name.c_str(), L.c_str()); 53 // Printf("=== %s\n", Name.c_str()); 61 size_t N = std::atol(L.c_str() + 1); 66 const char *Beg = L.c_str() + SpacePos + 1; 67 const char *End = L.c_str() + L.size(); 79 Printf("%s => |%s|\n", Name.c_str(), L.c_str() + SpacePos + 1);
|
| /src/external/gpl3/gcc.old/dist/libstdc++-v3/src/c++11/ |
| cow-string-inst.cc | 43 { _M_init(token.c_str(), token.length()); } 47 { _M_init(token.c_str(), token.length()); }
|
| /src/external/gpl3/gcc.old/dist/libcc1/ |
| compiler.cc | 77 rx.c_str()); 79 int code = regcomp (&triplet, rx.c_str (), REG_EXTENDED | REG_NOSUB); 88 rx.c_str (), 98 rx.c_str (), 104 fprintf (stderr, _("found compiler %s\n"), compiler.c_str()); 115 driver_filename_.c_str());
|
| /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/src/ |
| console_reporter.cc | 61 str += FormatString(" %10s", c.first.c_str()); 124 result.benchmark_name().c_str()); 128 result.error_message.c_str()); 141 printer(Out, COLOR_YELLOW, "%10.2f %-4s %10.2f %-4s ", real_time, big_o.c_str(), 142 cpu_time, big_o.c_str()); 148 printer(Out, COLOR_YELLOW, "%s %-4s %s %-4s ", real_time_str.c_str(), timeLabel, 149 cpu_time_str.c_str(), timeLabel); 162 printer(Out, COLOR_DEFAULT, " %*s/s", cNameLen - 2, s.c_str()); 164 printer(Out, COLOR_DEFAULT, " %*s", cNameLen, s.c_str()); 168 printer(Out, COLOR_DEFAULT, " %s=%s%s", c.first.c_str(), s.c_str() [all...] |
| /src/external/apache2/llvm/dist/llvm/utils/benchmark/src/ |
| console_reporter.cc | 61 str += FormatString(" %10s", c.first.c_str()); 109 result.benchmark_name.c_str()); 113 result.error_message.c_str()); 135 printer(Out, COLOR_YELLOW, "%10.2f %s %10.2f %s ", real_time, big_o.c_str(), 136 cpu_time, big_o.c_str()); 156 printer(Out, COLOR_DEFAULT, " %*s/s", cNameLen - 2, s.c_str()); 158 printer(Out, COLOR_DEFAULT, " %*s", cNameLen, s.c_str()); 162 printer(Out, COLOR_DEFAULT, " %s=%s%s", c.first.c_str(), s.c_str(), 168 printer(Out, COLOR_DEFAULT, " %*s", 13, rate.c_str()); [all...] |
| /src/external/apache2/llvm/dist/llvm/lib/Demangle/ |
| Demangle.cpp | 25 Demangled = itaniumDemangle(MangledName.c_str(), nullptr, nullptr, nullptr); 27 Demangled = microsoftDemangle(MangledName.c_str(), nullptr, nullptr,
|
| /src/external/bsd/kyua-cli/dist/integration/helpers/ |
| interrupts.cpp | 46 std::ofstream output(cookie.c_str()); 54 std::ofstream output(cookie.c_str());
|
| /src/external/gpl3/binutils/dist/opcodes/ |
| loongarch-coder.c | 25 is_unsigned (const char *c_str) 27 if (c_str[0] == '0' && (c_str[1] == 'x' || c_str[1] == 'X')) 29 c_str += 2; 30 while (('a' <= *c_str && *c_str <= 'f') 31 || ('A' <= *c_str && *c_str <= 'F') 32 || ('0' <= *c_str && *c_str <= '9') [all...] |
| /src/external/gpl3/binutils.old/dist/opcodes/ |
| loongarch-coder.c | 25 is_unsigned (const char *c_str) 27 if (c_str[0] == '0' && (c_str[1] == 'x' || c_str[1] == 'X')) 29 c_str += 2; 30 while (('a' <= *c_str && *c_str <= 'f') 31 || ('A' <= *c_str && *c_str <= 'F') 32 || ('0' <= *c_str && *c_str <= '9') [all...] |
| /src/sys/external/bsd/compiler_rt/dist/lib/asan/tests/ |
| asan_exceptions_test.cc | 9 fprintf(stderr, "%s\n", msg.c_str());
|
| /src/sys/external/bsd/compiler_rt/dist/lib/sanitizer_common/tests/ |
| sanitizer_nolibc_test.cc | 27 int status = system(NolibcTestPath.c_str());
|
| /src/external/apache2/llvm/dist/clang/tools/libclang/ |
| FatalErrorHandler.cpp | 18 fprintf(stderr, "LIBCLANG FATAL ERROR: %s\n", reason.c_str());
|
| /src/external/apache2/llvm/dist/libcxx/utils/google-benchmark/cmake/ |
| gnu_posix_regex.cpp | 10 return regexec(&re, str.c_str(), 0, nullptr, 0) ? -1 : 0;
|
| posix_regex.cpp | 10 int ret = regexec(&re, str.c_str(), 0, nullptr, 0) ? -1 : 0;
|
| /src/external/apache2/llvm/dist/llvm/bindings/go/llvm/ |
| SupportBindings.cpp | 23 static_cast<const void *>(ErrMsgStr.c_str()), ErrMsgStr.size() + 1);
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-itanium-demangle-fuzzer/ |
| llvm-itanium-demangle-fuzzer.cpp | 18 if (char *demangle = llvm::itaniumDemangle(NullTerminatedString.c_str(), nullptr,
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-microsoft-demangle-fuzzer/ |
| llvm-microsoft-demangle-fuzzer.cpp | 17 free(llvm::microsoftDemangle(NullTerminatedString.c_str(), nullptr, nullptr,
|
| /src/external/apache2/llvm/dist/llvm/tools/llvm-rust-demangle-fuzzer/ |
| llvm-rust-demangle-fuzzer.cpp | 17 char *Demangled = llvm::rustDemangle(NullTerminatedString.c_str(), nullptr,
|
| /src/external/apache2/llvm/dist/llvm/utils/benchmark/cmake/ |
| gnu_posix_regex.cpp | 10 return regexec(&re, str.c_str(), 0, nullptr, 0) ? -1 : 0;
|
| posix_regex.cpp | 10 int ret = regexec(&re, str.c_str(), 0, nullptr, 0) ? -1 : 0;
|