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

1 23 4 5

  /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
  /external/chromium_org/third_party/libvpx/source/libvpx/
tools_common.h 37 #define snprintf _snprintf macro
  /external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/
common.cc 44 #define snprintf _snprintf // see comment in strutil.cc macro
89 // 128 bytes should always be enough, but we use snprintf() anyway to be
92 snprintf(buffer, sizeof(buffer), "%d.%d.%d", major, minor, micro);
94 // Guard against broken MSVC snprintf().
152 // the results -- in fact, we probably prefer that. So we use snprintf()
158 /* values which we print with this, but well use snprintf() */ \
161 snprintf(buffer, sizeof(buffer), FORMAT, value); \
162 /* Guard against broken MSVC snprintf(). */ \
  /external/chromium_org/third_party/re2/re2/
prefilter_tree.cc 13 #define snprintf _snprintf macro
146 snprintf(buf, sizeof buf, "%d", n);
  /external/libvpx/libvpx/
tools_common.h 42 #define snprintf _snprintf macro
  /external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
gzguts.h 100 /* unlike snprintf (which is required in C99, yet still not supported by
105 # define snprintf _snprintf macro
  /external/protobuf/src/google/protobuf/stubs/
common.cc 44 #define snprintf _snprintf // see comment in strutil.cc macro
89 // 128 bytes should always be enough, but we use snprintf() anyway to be
92 snprintf(buffer, sizeof(buffer), "%d.%d.%d", major, minor, micro);
94 // Guard against broken MSVC snprintf().
152 // the results -- in fact, we probably prefer that. So we use snprintf()
158 /* values which we print with this, but well use snprintf() */ \
161 snprintf(buffer, sizeof(buffer), FORMAT, value); \
162 /* Guard against broken MSVC snprintf(). */ \
  /external/qemu/distrib/zlib-1.2.8/
gzguts.h 98 /* unlike snprintf (which is required in C99, yet still not supported by
103 # define snprintf _snprintf macro
  /external/tcpdump/
tcpdump-stdinc.h 99 #define snprintf _snprintf macro
  /external/wpa_supplicant_8/src/utils/
os.h 457 * Note: Some C library implementations of snprintf() may not guarantee null
463 * If the target system does not include snprintf(), see, e.g.,
464 * http://www.ijs.si/software/snprintf/ for an example of a portable
465 * implementation of snprintf.
545 #define os_snprintf snprintf
637 #undef snprintf macro
638 #define snprintf OS_DO_NOT_USE_snprintf macro
  /external/zlib/src/
gzguts.h 98 /* unlike snprintf (which is required in C99, yet still not supported by
103 # define snprintf _snprintf macro
  /external/zlib/src/test/
minigzip.c 44 # define snprintf _snprintf macro
471 snprintf(outfile, sizeof(outfile), "%s%s", file, GZ_SUFFIX);
511 snprintf(buf, sizeof(buf), "%s", file);
524 snprintf(buf + len, sizeof(buf) - len, "%s", GZ_SUFFIX);
566 snprintf(outmode, sizeof(outmode), "%s", "wb6 ");
  /hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/
tools_common.h 42 #define snprintf _snprintf macro
  /bionic/libc/include/
stdio.h 153 #define __SSTR 0x0200 /* this is an sprintf/snprintf string */
266 __printflike(2, 3) __warnattr("sprintf is often misused; please use snprintf");
286 int snprintf(char * __restrict, size_t, const char * __restrict, ...)
378 #if !defined(snprintf)
380 #define snprintf(...) __wrap_snprintf(__VA_ARGS__) macro
385 int snprintf(char *dest, size_t size, const char *format, ...) function
  /development/ndk/platforms/android-L/include/
stdio.h 141 #define __SSTR 0x0200 /* this is an sprintf/snprintf string */
261 __printflike(2, 3); //__warnattr("sprintf is often misused; please use snprintf");
281 int snprintf(char * __restrict, size_t, const char * __restrict, ...)
382 #if !defined(snprintf)
384 #define snprintf(...) __wrap_snprintf(__VA_ARGS__) macro
389 int snprintf(char *dest, size_t size, const char *format, ...) function
  /external/bison/darwin-lib/
stdio.h 1336 # define snprintf macro
1354 _GL_CXXALIASWARN (snprintf); variable
1356 # undef snprintf macro
    [all...]
  /external/bison/linux-lib/
stdio.h 1336 # define snprintf macro
1354 _GL_CXXALIASWARN (snprintf); variable
1356 # undef snprintf macro
    [all...]
  /external/chromium_org/native_client_sdk/src/libraries/nacl_io/httpfs/
http_fs_node.cc 19 #define snprintf _snprintf macro
450 snprintf(&buffer[0],
  /external/chromium_org/third_party/libxml/src/
runsuite.c 47 #define snprintf _snprintf macro
80 snprintf(buf, 500, "%s/%s", (const char *) dir, (const char *) path);
  /external/chromium_org/third_party/mesa/src/src/mesa/main/
imports.h 645 #if defined(_MSC_VER) && !defined(snprintf)
646 #define snprintf _snprintf macro
  /external/chromium_org/third_party/re2/re2/testing/
re2_test.cc 21 #define snprintf _snprintf macro
760 snprintf(buf, sizeof(buf), "%lld", (long long int)max);
763 snprintf(buf, sizeof(buf), "%lld", (long long int)min);
766 snprintf(buf, sizeof(buf), "%lld", (long long int)max);
771 snprintf(buf, sizeof(buf), "%lld", (long long int)min);
785 snprintf(buf, sizeof(buf), "%llu", (long long unsigned)max);
    [all...]
  /external/chromium_org/third_party/tcmalloc/chromium/src/windows/
port.h 64 #include <stdio.h> /* need this to override stdio's (v)snprintf */
303 * name vsnprintf, since windows defines that (but not snprintf (!)).
322 inline int snprintf(char *str, size_t size, const char *format, ...) { function
  /external/chromium_org/third_party/tcmalloc/vendor/src/windows/
port.h 61 #include <stdio.h> /* need this to override stdio's (v)snprintf */
300 * name vsnprintf, since windows defines that (but not snprintf (!)).
319 inline int snprintf(char *str, size_t size, const char *format, ...) { function
  /external/mesa3d/src/mesa/main/
imports.h 643 #if defined(_MSC_VER) && !defined(snprintf)
644 #define snprintf _snprintf macro

Completed in 1923 milliseconds

1 23 4 5