Searched refs:vsprintf (Results 1 - 25 of 81) sorted by relevance

1234

/freebsd-9.3-release/contrib/nvi/clib/
H A Dvsnprintf.c26 (void)vsprintf(str, fmt, ap);
29 return (vsprintf(str, fmt, ap));
H A Dsnprintf.c37 (void)vsprintf(str, fmt, ap);
41 rval = vsprintf(str, fmt, ap);
/freebsd-9.3-release/contrib/binutils/libiberty/
H A Dvsprintf.c1 /* Simple implementation of vsprintf for systems without it.
3 implementations of stdio; newer ones should already have vsprintf.
32 #undef vsprintf macro
37 vsprintf (char *buf, const char *format, va_list ap) function
H A Dvasprintf.c1 /* Like vsprintf but provides a pointer to malloc'd storage, which must
49 Like @code{vsprintf}, but instead of passing a pointer to a buffer,
53 returned is the same as @code{vsprintf} would return. If memory could
146 return vsprintf (*result, format, args);
/freebsd-9.3-release/contrib/gcclibs/libiberty/
H A Dvsprintf.c1 /* Simple implementation of vsprintf for systems without it.
3 implementations of stdio; newer ones should already have vsprintf.
32 #undef vsprintf macro
37 vsprintf (char *buf, const char *format, va_list ap) function
H A Dvasprintf.c1 /* Like vsprintf but provides a pointer to malloc'd storage, which must
49 Like @code{vsprintf}, but instead of passing a pointer to a buffer,
53 returned is the same as @code{vsprintf} would return. If memory could
146 return vsprintf (*result, format, args);
/freebsd-9.3-release/contrib/tcp_wrappers/
H A Dmyvsyslog.c29 vsprintf(obuf, percent_m(fbuf, format), ap);
/freebsd-9.3-release/contrib/ntp/sntp/libopts/compat/
H A Dsnprintf.c37 rp = vsprintf(str, fmt, ap);
43 rval = vsprintf(str, fmt, ap);
58 return (strlen(vsprintf(str, fmt, ap)));
60 return (vsprintf(str, fmt, ap));
/freebsd-9.3-release/contrib/gcclibs/libssp/
H A Dsprintf-chk.c58 done = vsprintf (s, format, arg);
H A Dvsprintf-chk.c1 /* Checking vsprintf.
56 done = vsprintf (s, format, arg);
H A DMakefile.am34 vsnprintf-chk.c vsprintf-chk.c
/freebsd-9.3-release/lib/libc/stdio/
H A Dsprintf.c57 ret = vsprintf(str, fmt, ap);
H A Dvsprintf.c39 static char sccsid[] = "@(#)vsprintf.c 8.1 (Berkeley) 6/4/93";
65 vsprintf(char * __restrict str, const char * __restrict fmt, __va_list ap) function
/freebsd-9.3-release/contrib/gdtoa/
H A Dstdio1.h89 #undef vsprintf macro
99 #define vsprintf Vsprintf macro
/freebsd-9.3-release/sys/gnu/fs/xfs/FreeBSD/support/
H A Ddebug.c80 vsprintf(message, fp, ap);
94 vsprintf(message, fmt, ap);
/freebsd-9.3-release/contrib/libstdc++/config/locale/generic/
H A Dc_locale.h49 #include <cstdio> // get std::vsnprintf or std::vsprintf
60 // fall back to the unsafe vsprintf which, in general, can be dangerous
82 const int __ret = std::vsprintf(__out, __fmt, __args);
/freebsd-9.3-release/contrib/ofed/management/infiniband-diags/src/
H A Dibdiag_common.c64 n = vsprintf(buf, msg, va);
/freebsd-9.3-release/contrib/gcclibs/libssp/ssp/
H A Dstdio.h47 #undef vsprintf macro
62 #define vsprintf(str, fmt, ap) \ macro
/freebsd-9.3-release/contrib/libstdc++/config/locale/gnu/
H A Dc_locale.h48 #include <cstdio> // get std::vsnprintf or std::vsprintf
73 // fall back to the unsafe vsprintf which, in general, can be dangerous
96 const int __ret = std::vsprintf(__out, __fmt, __args);
/freebsd-9.3-release/contrib/libstdc++/include/c/
H A Dstd_cstdio.h82 #undef vsprintf macro
/freebsd-9.3-release/gnu/lib/libssp/
H A DMakefile21 vsnprintf-chk.c vsprintf-chk.c
/freebsd-9.3-release/sys/cddl/contrib/opensolaris/uts/common/sys/
H A Dcmn_err.h109 extern char *vsprintf(char *, const char *, __va_list)
/freebsd-9.3-release/contrib/libstdc++/include/c_std/
H A Dstd_cstdio.h96 #undef vsprintf macro
143 using ::vsprintf;
/freebsd-9.3-release/contrib/ncurses/ncurses/base/
H A Dsafe_sprintf.c214 * Wrapper for vsprintf that allocates a buffer big enough to hold the result.
232 vsprintf(my_buffer, fmt, ap);
253 vsprintf(my_buffer, fmt, ap); /* ANSI */
/freebsd-9.3-release/contrib/libstdc++/include/c_compatibility/
H A Dstdio.h60 using std::vsprintf;

Completed in 102 milliseconds

1234