Searched refs:vsnprintf (Results 1 - 25 of 73) sorted by relevance

123

/haiku-buildtools/binutils/libiberty/
H A Dsnprintf.c50 int vsnprintf (char *, size_t, const char *, va_list);
58 result = vsnprintf (s, n, format, ap);
/haiku-buildtools/gcc/libiberty/
H A Dsnprintf.c50 int vsnprintf (char *, size_t, const char *, va_list);
58 result = vsnprintf (s, n, format, ap);
/haiku-buildtools/gcc/gcc/testsuite/gcc.c-torture/execute/builtins/
H A Dvsnprintf-chk.c14 extern int vsnprintf (char *, size_t, const char *, va_list);
37 vsnprintf (buffer, 4, "foo", ap);
40 ret = vsnprintf (buffer, 4, "foo bar", ap);
43 vsnprintf (buffer, 32, "%s", ap);
46 ret = vsnprintf (buffer, 21, "%s", ap);
49 ret = vsnprintf (buffer, 4, "%d%d%d", ap);
52 ret = vsnprintf (buffer, 32, "%d%d%d", ap);
55 ret = vsnprintf (buffer, strlen (ptr) + 1, "%s", ap);
58 vsnprintf (buffer, l1 + 31, "%d - %c", ap);
61 vsnprintf (s
[all...]
/haiku-buildtools/legacy/binutils/libiberty/
H A Dsnprintf.c47 int vsnprintf (char *, size_t, const char *, va_list);
57 result = vsnprintf (s, n, format, ap);
H A Dvsnprintf.c1 /* Implement the vsnprintf function.
28 @deftypefn Supplemental int vsnprintf (char *@var{buf}, size_t @var{n}, const char *@var{format}, va_list @var{ap})
57 vsnprintf (char *s, size_t n, const char *format, va_list ap) function
99 result = vsnprintf (s, n, format, ap);
/haiku-buildtools/gcc/gmp/printf/
H A DMakefile.am29 vasprintf.c vfprintf.c vprintf.c vsnprintf.c vsprintf.c \
30 repl-vsnprintf.c
H A Dsnprntffuns.c40 #define vsnprintf __gmp_replacement_vsnprintf macro
44 /* glibc 2.0.x vsnprintf returns either -1 or size-1 for an overflow, with
48 "size-1" would mean success from a C99 vsnprintf, and the re-run is
50 of vsnprintf we've got. size-1 should occur rarely in normal
53 vsnprintf might trash it's given ap (it does for instance in glibc 2.1.3
72 ret = vsnprintf (d->buf, avail, fmt, ap);
100 ret = vsnprintf (p, alloc, fmt, ap);
H A Dvasprintf.c36 #define vsnprintf __gmp_replacement_vsnprintf macro
43 that. Using vsnprintf unfortunately means we might have to re-run it if
48 ISO C99 standard vsnprintf will tell us what we really need.
50 GLIBC 2.0.x vsnprintf returns either -1 or space-1 to indicate overflow,
54 A return of space-1 is success on a C99 vsnprintf, but we're not
55 bothering to identify which style vsnprintf we've got, so just take the
59 the next vsnprintf return value will be space-2, which is unambiguously
63 vsnprintf might trash it's given ap, so copy it in case we need to use it
79 ret = vsnprintf (d->buf + d->size, space, fmt, ap);
/haiku-buildtools/gcc/libssp/
H A Dvsnprintf-chk.c1 /* Checking vsnprintf.
51 return vsnprintf (s, n, format, arg);
H A Dsnprintf-chk.c56 done = vsnprintf (s, n, format, arg);
H A Dsprintf-chk.c60 done = vsnprintf (s, slen, format, arg);
H A Dvsprintf-chk.c57 done = vsnprintf (s, slen, format, arg);
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/lto/
H A D20081024_0.c14 (void) vsnprintf (buf, sizeof (buf), fmt, args);
/haiku-buildtools/legacy/gcc/libio/stdio/
H A Dsnprintf.c48 ret = vsnprintf(string, maxlen, format, args);
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/
H A Dshrink-wrap-pretend.c24 len = vsnprintf (&(s)[0], (DEBUG_BUFFER_SIZE), fmt, args);
/haiku-buildtools/gcc/liboffloadmic/runtime/
H A Dliboffload_msg.c57 vsnprintf(buf + 1, sizeof(buf) - 2,
/haiku-buildtools/gcc/gcc/testsuite/gcc.dg/format/
H A Dc90-printf-3.c34 vsnprintf (s, n, "%d", v6);
35 vsnprintf (s, n, "%Y", v7);
H A Dc99-printf-3.c31 vsnprintf (s, n, "%d", v0);
32 vsnprintf (s, n, "%Y", v1); /* { dg-warning "format" "vsnprintf" } */
H A Dext-6.c33 vsnprintf (s, n, "%d", v6);
34 vsnprintf (s, n, "%Y", v7); /* { dg-warning "format" "vsnprintf" } */
H A Dms_c90-printf-3.c35 vsnprintf (s, n, "%d", v6);
36 vsnprintf (s, n, "%Y", v7);
H A Dms_c99-printf-3.c32 vsnprintf (s, n, "%d", v0);
33 vsnprintf (s, n, "%Y", v1); /* { dg-warning "format" "vsnprintf" } */
/haiku-buildtools/gcc/gcc/testsuite/jit.dg/
H A Dtest-threads.c37 vsnprintf (buffer, sizeof (buffer), fmt, ap);
52 vsnprintf (buffer, sizeof (buffer), fmt, ap);
67 vsnprintf (buffer, sizeof (buffer), fmt, ap);
/haiku-buildtools/gcc/libstdc++-v3/testsuite/tr1/8_c_compatibility/cstdio/
H A Dfunctions.cc44 ret = std::tr1::vsnprintf(s, n, format, ap);
/haiku-buildtools/gcc/libssp/ssp/
H A Dstdio.h48 #undef vsnprintf macro
73 #define vsnprintf(str, len, fmt, ap) \ macro
/haiku-buildtools/legacy/binutils/gas/
H A Dmessages.c208 vsnprintf (buffer, sizeof (buffer), format, args);
225 vsnprintf (buffer, sizeof (buffer), format, args);
246 vsnprintf (buffer, sizeof (buffer), format, args);
265 vsnprintf (buffer, sizeof (buffer), format, args);
307 vsnprintf (buffer, sizeof (buffer), format, args);
323 vsnprintf (buffer, sizeof (buffer), format, args);
342 vsnprintf (buffer, sizeof (buffer), format, args);
360 vsnprintf (buffer, sizeof (buffer), format, args);

Completed in 109 milliseconds

123