| /llvm-project-15.0.7/clang/test/PCH/ |
| H A D | va_arg.cpp | 12 int vsnprintf(char * , size_t, const char * , va_list) ; 17 vsnprintf(buffer, count, format, argptr); in f()
|
| /llvm-project-15.0.7/lldb/source/Utility/ |
| H A D | VASprintf.cpp | 30 int length = ::vsnprintf(buf.data(), buf.size(), fmt, args); in VASprintf() 41 length = ::vsnprintf(buf.data(), buf.size(), fmt, copy_args); in VASprintf()
|
| /llvm-project-15.0.7/libcxx/test/support/ |
| H A D | format_string.h | 38 auto ret = ::vsnprintf(local_buff.data(), size, msg, args_cp); in format_string_imp() 52 ret = ::vsnprintf(buff_ptr.get(), size, msg, args); in format_string_imp()
|
| /llvm-project-15.0.7/libcxx/include/__support/ibm/ |
| H A D | xlocale.h | 114 int str_size = vsnprintf(*strp, buff_size, fmt, ap_copy); in vasprintf() 121 str_size = vsnprintf(*strp, str_size + 1, fmt, ap); in vasprintf()
|
| /llvm-project-15.0.7/third-party/benchmark/src/ |
| H A D | colorprint.cc | 92 auto ret = vsnprintf(local_buff, size, msg, args_cp); in FormatString() 107 ret = vsnprintf(buff.get(), size, msg, args); in FormatString()
|
| H A D | string_util.cc | 139 auto ret = vsnprintf(local_buff.data(), size, msg, args_cp); in StrFormatImp() 154 vsnprintf(buff_ptr.get(), size, msg, args); in StrFormatImp()
|
| /llvm-project-15.0.7/libcxx/src/support/win32/ |
| H A D | support.cpp | 28 int count = vsnprintf( NULL, 0, format, ap_copy ); in __libcpp_vasprintf() 41 if (vsnprintf(p, buffer_size, format, ap) != count) { in __libcpp_vasprintf()
|
| H A D | locale_win32.cpp | 102 int result = vsnprintf( ret, n, format, ap ); in snprintf_l()
|
| /llvm-project-15.0.7/llvm/lib/Support/ |
| H A D | PrettyStackTrace.cpp | 242 const int SizeOrError = vsnprintf(nullptr, 0, Format, AP); in PrettyStackTraceFormat() 251 vsnprintf(Str.data(), Size, Format, AP); in PrettyStackTraceFormat()
|
| /llvm-project-15.0.7/compiler-rt/test/asan/TestCases/Linux/ |
| H A D | printf-fortify-4.c | 15 vsnprintf(write_buffer, 4096, format, ap); in foo()
|
| /llvm-project-15.0.7/flang/unittests/Runtime/ |
| H A D | CrashHandlerFixture.cpp | 17 std::vsnprintf(buffer, sizeof buffer, message, ap); in CatchCrash()
|
| /llvm-project-15.0.7/lldb/tools/debugserver/source/MacOSX/ |
| H A D | OsLogger.cpp | 51 vsnprintf(buffer, sizeof(buffer), format, args); in DarwinLogCallback()
|
| /llvm-project-15.0.7/libcxx/src/support/solaris/ |
| H A D | xlocale.cpp | 28 vsnprintf(__s, __n, __format, __va)
|
| /llvm-project-15.0.7/openmp/runtime/src/ |
| H A D | kmp_safe_c_api.h | 64 #define KMP_VSNPRINTF vsnprintf
|
| /llvm-project-15.0.7/clang/test/Sema/ |
| H A D | format-strings.c | 20 int vsnprintf(char *, size_t, const char *, va_list); 51 vsnprintf(buf,2,s,ap); // expected-warning {{format string is not a string lit}} in check_string_literal() 52 vsnprintf(buf,2,global_fmt,ap); // expected-warning {{format string is not a string literal}} in check_string_literal()
|
| /llvm-project-15.0.7/libcxx/include/ |
| H A D | cstdio | 66 int vsnprintf(char* restrict s, size_t n, const char* restrict format, // C99 124 using ::vsnprintf _LIBCPP_USING_IF_EXISTS;
|
| H A D | __bsd_locale_fallbacks.h | 116 int __res = vsnprintf(__s, __n, __format, __va); in __libcpp_snprintf_l()
|
| /llvm-project-15.0.7/flang/runtime/ |
| H A D | io-error.cpp | 37 std::vsnprintf(buffer, sizeof buffer, msg, ap); in SignalError()
|
| /llvm-project-15.0.7/flang/lib/Parser/ |
| H A D | message.cpp | 46 int need{vsnprintf(nullptr, 0, p, ap)}; in Format() 59 int need2{vsnprintf(buffer, need + 1, p, ap)}; in Format()
|
| /llvm-project-15.0.7/compiler-rt/lib/profile/ |
| H A D | InstrProfilingPlatformFuchsia.c | 52 int ret = vsnprintf(s, sizeof(s), fmt, ap); in lprofWrite()
|
| /llvm-project-15.0.7/clang-tools-extra/docs/clang-tidy/checks/cert/ |
| H A D | err33-c.rst | 146 * vsnprintf()
|
| /llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/symbolizer/scripts/ |
| H A D | global_symbols.txt | 171 vsnprintf U
|
| /llvm-project-15.0.7/libcxx/src/filesystem/ |
| H A D | filesystem_common.h | 76 int ret = ::vsnprintf(buf.data(), buf.size(), msg, apcopy); in format_string_impl() 88 ret = ::vsnprintf(&result[0], size_with_null, msg, ap); in format_string_impl()
|
| /llvm-project-15.0.7/libcxx/test/std/depr/depr.c.headers/ |
| H A D | stdio_h.pass.cpp | 147 static_assert((std::is_same<decltype(vsnprintf(cp,0," ",va)), int>::value), ""); in main()
|
| /llvm-project-15.0.7/libcxx/test/std/input.output/file.streams/c.files/ |
| H A D | cstdio.pass.cpp | 113 static_assert((std::is_same<decltype(std::vsnprintf(cp,0," ",va)), int>::value), ""); in main()
|