HomeSort by relevance Sort by last modified time
    Searched defs:snprintf (Results 51 - 75 of 174) sorted by null

1 23 4 5 6 7

  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/x86_64-linux-gnu/bits/
stdio2.h 62 __NTH (snprintf (char *__restrict __s, size_t __n, function
69 # define snprintf(str, len, ...) \ macro
  /prebuilts/ndk/r10/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/
support.h 45 #define snprintf _snprintf macro
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++/libcxx/include/support/win32/
support.h 45 #define snprintf _snprintf macro
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/include/support/win32/
support.h 48 #define snprintf _snprintf macro
  /bionic/libc/include/
stdio.h 162 __printflike(2, 3) __warnattr_strict("sprintf is often misused; please use snprintf")
221 int snprintf(char* __restrict, size_t, const char* __restrict _Nonnull, ...)
222 __printflike(3, 4) __overloadable __RENAME_CLANG(snprintf);
291 int snprintf(char *__restrict dest, size_t size, const char *__restrict format)
300 int snprintf(char *__restrict const __pass_object_size dest,
424 int snprintf(char *__restrict dest, size_t size, const char* _Nonnull format, ...) function
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
pyerrors.h 310 WARNING: The return value of snprintf varies across platforms; do
316 # define snprintf _snprintf macro
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
pyerrors.h 309 WARNING: The return value of snprintf varies across platforms; do
315 # define snprintf _snprintf macro
  /external/google-breakpad/src/processor/
dump_context.cc 43 #define snprintf _snprintf macro
  /external/libpcap/missing/
snprintf.c 459 snprintf (char *str, size_t sz, const char *format, ...) function
  /external/libvncserver/libvncserver/
stats.c 30 #define snprintf _snprintf /* Missing in MSVC */ macro
53 case rfbFramebufferUpdate: snprintf(buf, len, "FramebufferUpdate"); break;
54 case rfbSetColourMapEntries: snprintf(buf, len, "SetColourMapEntries"); break;
55 case rfbBell: snprintf(buf, len, "Bell"); break;
56 case rfbServerCutText: snprintf(buf, len, "ServerCutText"); break;
57 case rfbResizeFrameBuffer: snprintf(buf, len, "ResizeFrameBuffer"); break;
58 case rfbFileTransfer: snprintf(buf, len, "FileTransfer"); break;
59 case rfbTextChat: snprintf(buf, len, "TextChat"); break;
60 case rfbPalmVNCReSizeFrameBuffer: snprintf(buf, len, "PalmVNCReSize"); break;
61 case rfbXvp: snprintf(buf, len, "XvpServerMessage"); break
    [all...]
  /external/libxml2/
trio.h 182 # undef snprintf macro
183 # define snprintf trio_snprintf macro
  /external/llvm/utils/unittest/googletest/src/
gtest-printers.cc 59 # define snprintf _snprintf macro
60 #elif _MSC_VER >= 1400 // VC 8.0 and later deprecate snprintf and _snprintf.
61 # define snprintf _snprintf_s
63 # define snprintf _snprintf
80 snprintf(text, sizeof(text), "%02X", obj_bytes[j]);
  /external/lz4/examples/
blockStreaming_doubleBuffer.c 7 # define snprintf sprintf_s macro
150 snprintf(inpFilename, 256, "%s", argv[1]);
151 snprintf(lz4Filename, 256, "%s.lz4s-%d", argv[1], BLOCK_BYTES);
152 snprintf(decFilename, 256, "%s.lz4s-%d.dec", argv[1], BLOCK_BYTES);
blockStreaming_lineByLine.c 7 # define snprintf sprintf_s macro
165 snprintf(inpFilename, 256, "%s", argv[1]);
166 snprintf(lz4Filename, 256, "%s.lz4s", argv[1]);
167 snprintf(decFilename, 256, "%s.lz4s.dec", argv[1]);
  /external/mesa3d/src/gtest/src/
gtest-printers.cc 59 # define snprintf _snprintf macro
60 #elif _MSC_VER >= 1400 // VC 8.0 and later deprecate snprintf and _snprintf.
61 # define snprintf _snprintf_s
63 # define snprintf _snprintf
80 snprintf(text, sizeof(text), "%02X", obj_bytes[j]);
  /external/netperf/src/
dscp.c 46 #define snprintf _snprintf macro
165 snprintf(iptos_str, sizeof iptos_str, "0x%02x", iptos);
net_uuid.c 43 #define snprintf _snprintf macro
214 snprintf(tmp,size,"%s","uuid string too small");
  /external/swiftshader/third_party/LLVM/utils/unittest/googletest/
gtest-printers.cc 59 # define snprintf _snprintf macro
60 #elif _MSC_VER >= 1400 // VC 8.0 and later deprecate snprintf and _snprintf.
61 # define snprintf _snprintf_s
63 # define snprintf _snprintf
80 snprintf(text, sizeof(text), "%02X", obj_bytes[j]);
  /external/tcpdump/missing/
snprintf.c 459 snprintf (char *str, size_t sz, const char *format, ...) function
  /prebuilts/gdb/darwin-x86/include/python2.7/
pyerrors.h 309 WARNING: The return value of snprintf varies across platforms; do
315 # define snprintf _snprintf macro
  /prebuilts/gdb/linux-x86/include/python2.7/
pyerrors.h 309 WARNING: The return value of snprintf varies across platforms; do
315 # define snprintf _snprintf macro
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
pyerrors.h 309 WARNING: The return value of snprintf varies across platforms; do
315 # define snprintf _snprintf macro
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
pyerrors.h 309 WARNING: The return value of snprintf varies across platforms; do
315 # define snprintf _snprintf macro
  /device/linaro/bootloader/arm-trusted-firmware/lib/stdlib/
subr_prf.c 126 * Scaled down version of snprintf(3).
129 snprintf(char *str, size_t size, const char *format, ...) function
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
gzguts.h 98 /* unlike snprintf (which is required in C99, yet still not supported by
103 # define snprintf _snprintf macro

Completed in 1648 milliseconds

1 23 4 5 6 7