/llvm-project/clang/test/CodeGen/ |
H A D | inline-builtin-asm-name.c | 18 int vsnprintf(char *__stream, size_t __n, const char *__format, __builtin_va_list __local_argv) __a… 21 int vsnprintf(char *__stream, size_t __n, const char *__format, __builtin_va_list __local_argv) in vsnprintf() function 30 vsnprintf(buf, sizeof(buf), fmt, ap); in call()
|
/llvm-project/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/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/libcxx/src/filesystem/ |
H A D | format_string.h | 37 int ret = ::vsnprintf(buf.data(), buf.size(), msg, apcopy); in vformat_string() 49 ret = ::vsnprintf(&result[0], size_with_null, msg, ap); in vformat_string()
|
/llvm-project/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/libcxx/include/__locale_dir/locale_base_api/ |
H A D | ibm.h | 96 int str_size = vsnprintf(*strp, buff_size, fmt, ap_copy); in vasprintf() 103 str_size = vsnprintf(*strp, str_size + 1, fmt, ap); in vasprintf()
|
/llvm-project/libcxx/src/support/win32/ |
H A D | support.cpp | 11 #include <cstdio> // vsprintf, vsnprintf
|
/llvm-project/third-party/benchmark/src/ |
H A D | colorprint.cc | 92 auto ret = vsnprintf(local_buff, size, msg, args_cp); in FormatString() 108 ret = vsnprintf(buff.get(), size, msg, args); in FormatString()
|
H A D | string_util.cc | 122 auto ret = vsnprintf(local_buff.data(), local_buff.size(), msg, args_cp); in StrFormatImp() 137 vsnprintf(buff_ptr.get(), size, msg, args); in StrFormatImp()
|
/llvm-project/libc/src/stdio/ |
H A D | CMakeLists.txt | 220 vsnprintf 222 vsnprintf.cpp 224 vsnprintf.h
|
H A D | vsnprintf.h | 1 //===-- Implementation header of vsnprintf ----------------------*- C++ -*-===// 18 int vsnprintf(char *__restrict buffer, size_t buffsz,
|
H A D | vsnprintf.cpp | 1 //===-- Implementation of vsnprintf -----------------------------*- C++ -*-===// 9 #include "src/stdio/vsnprintf.h" 21 LLVM_LIBC_FUNCTION(int, vsnprintf,
|
/llvm-project/llvm/lib/Support/ |
H A D | PrettyStackTrace.cpp | 240 const int SizeOrError = vsnprintf(nullptr, 0, Format, AP); in PrettyStackTraceFormat() 249 vsnprintf(Str.data(), Size, Format, AP); in PrettyStackTraceFormat()
|
/llvm-project/compiler-rt/test/asan/TestCases/Linux/ |
H A D | printf-fortify-4.c | 15 vsnprintf(write_buffer, 4096, format, ap); in foo()
|
/llvm-project/compiler-rt/test/sanitizer_common/TestCases/ |
H A D | vsnprintf.cpp | 21 vsnprintf(buf, buf_size, fmt, args); in write()
|
/llvm-project/flang/unittests/Runtime/ |
H A D | CrashHandlerFixture.cpp | 17 std::vsnprintf(buffer, sizeof buffer, message, ap); in CatchCrash()
|
/llvm-project/lldb/tools/debugserver/source/MacOSX/ |
H A D | OsLogger.cpp | 51 vsnprintf(buffer, sizeof(buffer), format, args); in DarwinLogCallback()
|
/llvm-project/libc/test/src/stdio/ |
H A D | vsnprintf_test.cpp | 21 int ret = LIBC_NAMESPACE::vsnprintf(buffer, buffsz, format, vlist); in call_vsnprintf()
|
/llvm-project/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/openmp/runtime/src/ |
H A D | kmp_safe_c_api.h | 70 #define KMP_VSNPRINTF vsnprintf
|
/llvm-project/libcxx/include/ |
H A D | cstdio | 66 int vsnprintf(char* restrict s, size_t n, const char* restrict format, // C99 135 using ::vsnprintf _LIBCPP_USING_IF_EXISTS;
|
/llvm-project/libcxx/modules/std.compat/ |
H A D | cstdio.inc | 57 using ::vsnprintf _LIBCPP_USING_IF_EXISTS;
|
/llvm-project/compiler-rt/lib/gwp_asan/tests/ |
H A D | harness.h | 128 vsnprintf(Buffer, sizeof(Buffer), Format, AP); in PrintfToBuffer()
|
/llvm-project/utils/bazel/llvm-project-overlay/libc/test/src/stdio/ |
H A D | BUILD.bazel | 104 "//libc:vsnprintf",
|
/llvm-project/flang/runtime/ |
H A D | io-error.cpp | 54 std::vsnprintf(buffer, sizeof buffer, msg, ap); in SignalError()
|