Searched defs:snprintf (Results 1 - 25 of 87) sorted by last modified time

1234

/external/zlib/src/
H A Dgzguts.h98 /* unlike snprintf (which is required in C99, yet still not supported by
103 # define snprintf _snprintf macro
/external/zlib/src/test/
H A Dminigzip.c44 # 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 ");
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dos.h457 * 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/wpa_supplicant_8/src/utils/
H A Dos.h457 * 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/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dos.h457 * 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/valgrind/main/perf/
H A Dtinycc.c5373 #define snprintf _snprintf
9709 snprintf(buf, sizeof(buf), "%d", file->line_num);
9723 snprintf(buf, sizeof(buf), "%s %2d %d",
9726 snprintf(buf, sizeof(buf), "%02d:%02d:%02d",
14493 snprintf(buf, sizeof(buf), "%s:%c1",
16916 snprintf(buf, sizeof(buf), "%d", sv->c.i);
16919 snprintf(buf, sizeof(buf), "%d(%%ebp)", sv->c.i);
16925 snprintf(buf, sizeof(buf), "(%%%s)",
16970 snprintf(buf, sizeof(buf), "%%%s", get_tok_str(reg, NULL));
17109 snprintf(bu
5371 #define snprintf macro
[all...]
/external/valgrind/main/coregrind/
H A Dm_libcprint.c228 /* --------- snprintf --------- */
264 UInt VG_(snprintf) ( HChar* buf, Int size, const HChar *format, ... ) function
/external/valgrind/main/drd/tests/
H A Dunit_vc.c43 UInt VG_(snprintf)(HChar* buf, Int size, const HChar *format, ...) function
/external/tcpdump/missing/
H A Dsnprintf.c34 /* $Id: snprintf.c,v 1.8 2003-11-16 09:36:51 guy Exp $ */
42 "@(#) $Header: /tcpdump/master/tcpdump/missing/snprintf.c,v 1.8 2003-11-16 09:36:51 guy Exp $";
466 snprintf (char *str, size_t sz, const char *format, ...) function
/external/tcpdump/
H A Dtcpdump-stdinc.h99 #define snprintf _snprintf macro
/external/stlport/src/
H A Dnum_put_float.cpp76 # include <cstdio> // for snprintf
88 # define snprintf _snprintf macro
761 snprintf(_STLP_ARRAY_AND_SIZE(static_buf), fmtbuf, precision, x);
849 snprintf(_STLP_ARRAY_AND_SIZE(cvtbuf), "%Lf", __x); // check for 1234.56!
851 snprintf(_STLP_ARRAY_AND_SIZE(cvtbuf), "%f", __x); // check for 1234.56!
/external/sqlite/dist/orig/
H A Dsqlite3ext.h139 char * (*snprintf)(int,char*,const char*,...); member in struct:sqlite3_api_routines
369 #define sqlite3_snprintf sqlite3_api->snprintf
/external/sqlite/dist/
H A Dsqlite3ext.h139 char * (*snprintf)(int,char*,const char*,...); member in struct:sqlite3_api_routines
369 #define sqlite3_snprintf sqlite3_api->snprintf
/external/qemu/distrib/zlib-1.2.8/
H A Dgzguts.h98 /* unlike snprintf (which is required in C99, yet still not supported by
103 # define snprintf _snprintf macro
/external/qemu-pc-bios/bochs/bios/
H A Drombios32.c386 int snprintf(char * buf, size_t size, const char *fmt, ...) function
2408 snprintf(start, 8, "DIMM %d", instance);
/external/protobuf/src/google/protobuf/stubs/
H A Dcommon.cc44 #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(). */ \
H A Dstrutil.cc42 // MSVC has only _snprintf, not snprintf.
44 // MinGW has both snprintf and _snprintf, but they appear to be different
47 // snprintf(buffer, 32, "%.*g\n", FLT_DIG, 1.23e10f);
52 #define snprintf _snprintf macro
957 // generate the digits in the first place rather than use snprintf(),
1027 snprintf(buffer, kDoubleToBufferSize, "%.*g", DBL_DIG, value);
1029 // The snprintf should never overflow because the buffer is significantly
1042 snprintf(buffer, kDoubleToBufferSize, "%.*g", DBL_DIG+2, value);
1082 snprintf(buffer, kFloatToBufferSize, "%.*g", FLT_DIG, value);
1084 // The snprintf shoul
[all...]
/external/pdfium/core/src/fxcodec/fx_zlib/zlib_v128/
H A Dgzguts.h100 /* unlike snprintf (which is required in C99, yet still not supported by
105 # define snprintf _snprintf macro
/external/pdfium/core/src/fxcodec/lcms2/lcms2-2.6/src/
H A Dlcms2_internal.h86 # ifndef snprintf
87 # define snprintf _snprintf macro
/external/netperf/
H A Dnetlib.h578 #define snprintf _snprintf macro
/external/mesa3d/src/gallium/auxiliary/util/
H A Du_snprintf.c16 * the version available at <http://www.jhweiss.de/software/snprintf.html>.
24 * 2008-01-20 Holger Weiss <holger@jhweiss.de> for C99-snprintf 1.1:
29 * 2008-01-06 Holger Weiss <holger@jhweiss.de> for C99-snprintf 1.0:
57 * C99 compliant snprintf(3) and vsnprintf(3) functions return the number
64 * The original code assumed that both snprintf(3) and vsnprintf(3) were
65 * missing. Some systems only have snprintf(3) but not vsnprintf(3), so
81 * gcc -DTEST_SNPRINTF -o snprintf snprintf.c -lm && ./snprintf
135 * #define snprintf rpl_snprint
172 #define snprintf macro
[all...]
/external/mesa3d/src/gtest/src/
H A Dgtest-printers.cc59 # 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/mesa3d/src/mesa/main/
H A Dimports.h643 #if defined(_MSC_VER) && !defined(snprintf)
644 #define snprintf _snprintf macro
H A Dvsnprintf.c2 * Revision 12: http://theos.com/~deraadt/snprintf.c
144 snprintf(char *str, size_t n, char const *fmt, ...) function
146 snprintf(str, n, fmt, va_alist)
/external/llvm/utils/unittest/googletest/src/
H A Dgtest-printers.cc59 # 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]);

Completed in 4975 milliseconds

1234