Home
last modified time | relevance | path

Searched refs:vsnprintf (Results 1 – 25 of 41) sorted by relevance

12

/llvm-project-15.0.7/clang/test/PCH/
H A Dva_arg.cpp12 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 DVASprintf.cpp30 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 Dformat_string.h38 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 Dxlocale.h114 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 Dcolorprint.cc92 auto ret = vsnprintf(local_buff, size, msg, args_cp); in FormatString()
107 ret = vsnprintf(buff.get(), size, msg, args); in FormatString()
H A Dstring_util.cc139 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 Dsupport.cpp28 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 Dlocale_win32.cpp102 int result = vsnprintf( ret, n, format, ap ); in snprintf_l()
/llvm-project-15.0.7/llvm/lib/Support/
H A DPrettyStackTrace.cpp242 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 Dprintf-fortify-4.c15 vsnprintf(write_buffer, 4096, format, ap); in foo()
/llvm-project-15.0.7/flang/unittests/Runtime/
H A DCrashHandlerFixture.cpp17 std::vsnprintf(buffer, sizeof buffer, message, ap); in CatchCrash()
/llvm-project-15.0.7/lldb/tools/debugserver/source/MacOSX/
H A DOsLogger.cpp51 vsnprintf(buffer, sizeof(buffer), format, args); in DarwinLogCallback()
/llvm-project-15.0.7/libcxx/src/support/solaris/
H A Dxlocale.cpp28 vsnprintf(__s, __n, __format, __va)
/llvm-project-15.0.7/openmp/runtime/src/
H A Dkmp_safe_c_api.h64 #define KMP_VSNPRINTF vsnprintf
/llvm-project-15.0.7/clang/test/Sema/
H A Dformat-strings.c20 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 Dcstdio66 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.h116 int __res = vsnprintf(__s, __n, __format, __va); in __libcpp_snprintf_l()
/llvm-project-15.0.7/flang/runtime/
H A Dio-error.cpp37 std::vsnprintf(buffer, sizeof buffer, msg, ap); in SignalError()
/llvm-project-15.0.7/flang/lib/Parser/
H A Dmessage.cpp46 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 DInstrProfilingPlatformFuchsia.c52 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 Derr33-c.rst146 * vsnprintf()
/llvm-project-15.0.7/compiler-rt/lib/sanitizer_common/symbolizer/scripts/
H A Dglobal_symbols.txt171 vsnprintf U
/llvm-project-15.0.7/libcxx/src/filesystem/
H A Dfilesystem_common.h76 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 Dstdio_h.pass.cpp147 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 Dcstdio.pass.cpp113 static_assert((std::is_same<decltype(std::vsnprintf(cp,0," ",va)), int>::value), ""); in main()

12