HomeSort by relevance Sort by last modified time
    Searched refs:vswprintf (Results 1 - 17 of 17) sorted by null

  /external/libchrome/base/strings/
string_util_posix.h 29 inline int vswprintf(wchar_t* buffer, size_t size, function in namespace:base
32 return ::vswprintf(buffer, size, format, arguments);
stringprintf.cc 22 // Overloaded wrappers around vsnprintf and vswprintf. The buf_size parameter
27 // (vsnprintf, and vswprintf on Windows), or -1 (vswprintf on POSIX platforms).
40 return base::vswprintf(buffer, buf_size, format, argptr);
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
swprintf.c 43 ret = vswprintf(s, n, fmt, ap);
vswprintf.c 27 FreeBSD: src/lib/libc/stdio/vswprintf.c,v 1.6 2005/02/21 19:41:44 fjoe Exp
28 NetBSD: vswprintf.c,v 1.1 2005/05/14 23:51:02 christos Exp
42 vswprintf(wchar_t * __restrict s, size_t n, const wchar_t * __restrict fmt, function
Stdio.inf 94 vswprintf.c #
  /bionic/libc/upstream-openbsd/lib/libc/stdio/
vswprintf.c 1 /* $OpenBSD: vswprintf.c,v 1.6 2015/08/31 02:53:57 guenther Exp $ */
2 /* $NetBSD: vswprintf.c,v 1.1 2005/05/14 23:51:02 christos Exp $ */
40 vswprintf(wchar_t * __restrict s, size_t n, const wchar_t * __restrict fmt, function
97 DEF_STRONG(vswprintf); variable
  /external/e2fsprogs/intl/
libgnuintl.h.in 357 #undef vswprintf
358 #define vswprintf libintl_vswprintf
359 extern int vswprintf (wchar_t *, size_t, const wchar_t *, va_list);
printf.c 268 # define system_vswprintf vswprintf
  /bionic/tests/headers/posix/
wchar_h.c 71 FUNCTION(vswprintf, int (*f)(wchar_t*, size_t, const wchar_t*, va_list));
  /device/linaro/bootloader/edk2/StdLib/Include/
wchar.h 44 int vswprintf (wchar_t * __restrict s, size_t n,
    [all...]
  /external/libcxx/test/std/strings/c.strings/
cwchar.pass.cpp 62 ASSERT_SAME_TYPE(int, decltype(std::vswprintf(ws, s, L"", va)));
  /bionic/libc/include/
wchar.h 68 int vswprintf(wchar_t* __buf, size_t __n, const wchar_t* __fmt, va_list __args);
  /external/libcxx/test/std/depr/depr.c.headers/
wchar_h.pass.cpp 60 static_assert((std::is_same<decltype(vswprintf(ws, s, L"", va)), int>::value), "");
  /external/compiler-rt/lib/msan/
msan_interceptors.cc 471 INTERCEPTOR(int, vswprintf, void *str, uptr size, void *format, va_list ap) {
473 int res = REAL(vswprintf)(str, size, format, ap);
484 int res = vswprintf(str, size, format, ap);
    [all...]
  /external/pdfium/core/fxcrt/
widestring.cpp 260 // For vswprintf(), MSAN won't untaint the buffer on a truncated write's
265 int ret = vswprintf(buffer, size + 1, pFormat, argList);
320 int maxLen = vswprintf(nullptr, 0, format, argListCopy);
  /external/swiftshader/third_party/PowerVR_SDK/Tools/
PVRTPrint3D.cpp 556 vswprintf.
562 vswprintf(s_Text, MAX_LETTERS+1, pszFormat, args);
    [all...]
  /bionic/libc/stdio/
stdio.cpp 989 PRINTF_IMPL(vswprintf(s, n, fmt, ap));

Completed in 642 milliseconds