HomeSort by relevance Sort by last modified time
    Searched refs:vsnprintf (Results 151 - 175 of 455) sorted by null

1 2 3 4 5 67 8 91011>>

  /prebuilts/clang/host/darwin-x86/clang-4479392/include/c++/v1/support/ibm/
xlocale.h 256 if ((str_size = vsnprintf(*strp, buff_size, fmt, ap)) >= buff_size)
262 str_size = vsnprintf(*strp, str_size + 1, fmt, ap);
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/c++/v1/support/ibm/
xlocale.h 256 if ((str_size = vsnprintf(*strp, buff_size, fmt, ap)) >= buff_size)
262 str_size = vsnprintf(*strp, str_size + 1, fmt, ap);
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/c++/v1/support/ibm/
xlocale.h 256 if ((str_size = vsnprintf(*strp, buff_size, fmt, ap)) >= buff_size)
262 str_size = vsnprintf(*strp, str_size + 1, fmt, ap);
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/c++/v1/support/ibm/
xlocale.h 256 if ((str_size = vsnprintf(*strp, buff_size, fmt, ap)) >= buff_size)
262 str_size = vsnprintf(*strp, str_size + 1, fmt, ap);
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/c++/v1/support/ibm/
xlocale.h 256 if ((str_size = vsnprintf(*strp, buff_size, fmt, ap)) >= buff_size)
262 str_size = vsnprintf(*strp, str_size + 1, fmt, ap);
  /prebuilts/clang/host/linux-x86/clang-4053586/include/c++/v1/support/ibm/
xlocale.h 256 if ((str_size = vsnprintf(*strp, buff_size, fmt, ap)) >= buff_size)
262 str_size = vsnprintf(*strp, str_size + 1, fmt, ap);
  /prebuilts/clang/host/linux-x86/clang-4393122/include/c++/v1/support/ibm/
xlocale.h 256 if ((str_size = vsnprintf(*strp, buff_size, fmt, ap)) >= buff_size)
262 str_size = vsnprintf(*strp, str_size + 1, fmt, ap);
  /prebuilts/clang/host/linux-x86/clang-4479392/include/c++/v1/support/ibm/
xlocale.h 256 if ((str_size = vsnprintf(*strp, buff_size, fmt, ap)) >= buff_size)
262 str_size = vsnprintf(*strp, str_size + 1, fmt, ap);
  /prebuilts/clang/host/linux-x86/clang-4579689/include/c++/v1/support/ibm/
xlocale.h 256 if ((str_size = vsnprintf(*strp, buff_size, fmt, ap)) >= buff_size)
262 str_size = vsnprintf(*strp, str_size + 1, fmt, ap);
  /prebuilts/clang/host/linux-x86/clang-4630689/include/c++/v1/support/ibm/
xlocale.h 256 if ((str_size = vsnprintf(*strp, buff_size, fmt, ap)) >= buff_size)
262 str_size = vsnprintf(*strp, str_size + 1, fmt, ap);
  /prebuilts/clang/host/linux-x86/clang-4639204/include/c++/v1/support/ibm/
xlocale.h 256 if ((str_size = vsnprintf(*strp, buff_size, fmt, ap)) >= buff_size)
262 str_size = vsnprintf(*strp, str_size + 1, fmt, ap);
  /prebuilts/clang/host/linux-x86/clang-4691093/include/c++/v1/support/ibm/
xlocale.h 256 if ((str_size = vsnprintf(*strp, buff_size, fmt, ap)) >= buff_size)
262 str_size = vsnprintf(*strp, str_size + 1, fmt, ap);
  /prebuilts/ndk/r16/sources/cxx-stl/llvm-libc++/include/support/ibm/
xlocale.h 256 if ((str_size = vsnprintf(*strp, buff_size, fmt, ap)) >= buff_size)
262 str_size = vsnprintf(*strp, str_size + 1, fmt, ap);
  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/glslang/glslang/Include/
Common.h 45 #define safe_vsprintf(buf,max,format,args) vsnprintf((buf), (max), (format), (args))
49 #define safe_vsprintf(buf,max,format,args) vsnprintf((buf), (max), (format), (args))
  /external/mesa3d/src/util/
ralloc.c 459 /* We need to use _vcsprintf to calculate the size as vsnprintf returns -1
465 size = vsnprintf(&junk, 1, fmt, args);
481 vsnprintf(ptr, size, fmt, args);
539 vsnprintf(ptr + *start, new_length + 1, fmt, args);
808 vsnprintf(ptr, size, fmt, args);
866 vsnprintf(ptr + *start, new_length + 1, fmt, args);
  /external/skia/src/core/
SkString.cpp 22 written = vsnprintf(buffer, size, format, args); \
32 int length = vsnprintf(buffer, sizeof(buffer), format, args); \
43 SkDEBUGCODE(int check = ) vsnprintf(tmp.writable_str(), \
503 int length = vsnprintf(buffer, kBufferSize, format, args);
519 int length = vsnprintf(buffer, kBufferSize, format, args);
  /device/linaro/bootloader/arm-trusted-firmware/lib/stdlib/
subr_prf.c 91 int vsnprintf(char *str, size_t size, const char *format, va_list ap);
135 retval = vsnprintf(str, size, format, ap);
141 * Scaled down version of vsnprintf(3).
144 vsnprintf(char *str, size_t size, const char *format, va_list ap) function
170 * Kernel version which takes radix argument vsnprintf(3).
  /external/clang/test/Sema/
format-strings.c 18 int vsnprintf(char *, size_t, const char *, va_list);
49 vsnprintf(buf,2,s,ap); // expected-warning {{format string is not a string lit}}
50 vsnprintf(buf,2,global_fmt,ap); // expected-warning {{format string is not a string literal}}
    [all...]
  /bionic/tests/
fortify_filecheck_diagnostics_test.cpp 188 vsnprintf(buf, 5, "foobar", va); // NOLINT(runtime/printf)
  /device/generic/goldfish/wifi/execns/
execns.cpp 167 int printed = vsnprintf(buffer + len, size - len, fmt, args);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
configure 234 vsnprintf(buf, sizeof(buf), fmt, ap);
246 echo "Checking for vsnprintf() in stdio.h... Yes."
259 n = vsnprintf(buf, sizeof(buf), fmt, ap);
271 echo "Checking for return value of vsnprintf()... Yes."
274 echo "Checking for return value of vsnprintf()... No."
275 echo " WARNING: apparently vsnprintf() does not return a value. zlib"
281 echo "Checking for vsnprintf() in stdio.h... No."
282 echo " WARNING: vsnprintf() not found, falling back to vsprintf(). zlib"
  /external/adhd/cras/src/common/
dumper.c 89 n = vsnprintf(data->buf + data->size, remaining, format, ap);
  /external/boringssl/src/crypto/
mem.c 236 return vsnprintf(buf, n, format, args);
  /external/libchrome/base/strings/
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).
32 return base::vsnprintf(buffer, buf_size, format, argptr);
  /external/libcxx/include/
__bsd_locale_fallbacks.h 113 int __res = vsnprintf(__s, __n, __format, __va);

Completed in 1463 milliseconds

1 2 3 4 5 67 8 91011>>