Searched refs:INT_STRLEN_BOUND (Results 1 - 25 of 42) sorted by relevance

12

/haiku-fatelf/src/bin/coreutils/lib/
H A Dsig2str.h28 # define SIG2STR_MAX (sizeof "SIGRTMAX" + INT_STRLEN_BOUND (int) - 1)
H A Dinttostr.c32 char *p = buf + INT_STRLEN_BOUND (inttype);
H A Dintprops.h61 When compiling with GCC, INT_STRLEN_BOUND uses this macro to obtain a
75 # define INT_STRLEN_BOUND(t) \ macro
81 # define INT_BUFSIZE_BOUND(t) (INT_STRLEN_BOUND (t) + 1)
H A Dopenat-proc.c49 + INT_STRLEN_BOUND (int) + (len) + 1)
H A Dstrerror.c338 static char msg_buf[sizeof fmt + INT_STRLEN_BOUND (n)];
H A Dhuman.c90 char buf[2 * INT_STRLEN_BOUND (uintmax_t) + 1];
/haiku-fatelf/src/bin/diffutils/lib/
H A Dinttostr.c30 char *p = buf + INT_STRLEN_BOUND (inttype);
H A Dinttostr.h45 #define INT_STRLEN_BOUND(t) \ macro
48 #define INT_BUFSIZE_BOUND(t) (INT_STRLEN_BOUND (t) + 1)
/haiku-fatelf/src/bin/findutils/gnulib/lib/
H A Dstrerror.c41 static char mesg[sizeof fmt + INT_STRLEN_BOUND (n)];
H A Dintprops.h57 When compiling with GCC, INT_STRLEN_BOUND uses this macro to obtain a
71 #define INT_STRLEN_BOUND(t) \ macro
77 #define INT_BUFSIZE_BOUND(t) (INT_STRLEN_BOUND (t) + 1)
H A Dopenat-proc.c45 + INT_STRLEN_BOUND (int) + (len) + 1)
H A Dhuman.c90 char buf[2 * INT_STRLEN_BOUND (uintmax_t) + 1];
/haiku-fatelf/src/bin/bash/lib/sh/
H A Ditos.c47 char *p, lbuf[INT_STRLEN_BOUND(intmax_t) + 1];
68 char *p, lbuf[INT_STRLEN_BOUND(uintmax_t) + 1];
/haiku-fatelf/src/bin/network/wget/lib/
H A Dintprops.h58 When compiling with GCC, INT_STRLEN_BOUND uses this macro to obtain a
72 #define INT_STRLEN_BOUND(t) \ macro
78 #define INT_BUFSIZE_BOUND(t) (INT_STRLEN_BOUND (t) + 1)
H A Dstrerror.c338 static char msg_buf[sizeof fmt + INT_STRLEN_BOUND (n)];
/haiku-fatelf/src/bin/bash/lib/readline/
H A Dshell.c84 #define INT_STRLEN_BOUND(t) \ macro
130 b = (char *)xmalloc (INT_STRLEN_BOUND (int) + 1);
135 b = (char *)xmalloc (INT_STRLEN_BOUND (int) + 1);
141 b = (char *)xmalloc (INT_STRLEN_BOUND (int) + sizeof ("LINES=") + 1);
145 b = (char *)xmalloc (INT_STRLEN_BOUND (int) + sizeof ("COLUMNS=") + 1);
/haiku-fatelf/src/bin/gdb/readline/
H A Dshell.c81 #define INT_STRLEN_BOUND(t) \ macro
127 b = (char *)xmalloc (INT_STRLEN_BOUND (int) + sizeof ("LINES=") + 1);
130 b = (char *)xmalloc (INT_STRLEN_BOUND (int) + sizeof ("COLUMNS=") + 1);
135 b = (char *)xmalloc (INT_STRLEN_BOUND (int) + 1);
138 b = (char *)xmalloc (INT_STRLEN_BOUND (int) + 1);
/haiku-fatelf/src/bin/patch/
H A Dbackupfile.c88 #define INT_STRLEN_BOUND(t) ((sizeof (t) * CHAR_BIT - 1) * 302 / 1000 + 2) macro
123 size_t numbered_suffix_size_max = INT_STRLEN_BOUND (int) + 4;
/haiku-fatelf/src/bin/less/
H A Dprompt.c119 char buf[INT_STRLEN_BOUND(pos) + 2];
132 char buf[INT_STRLEN_BOUND(linenum) + 2];
145 char buf[INT_STRLEN_BOUND(num) + 2];
H A Doutput.c366 char tbuf[INT_STRLEN_BOUND(num)+2]; \
388 char buf[INT_STRLEN_BOUND(num)];
402 char buf[INT_STRLEN_BOUND(num)];
/haiku-fatelf/src/bin/coreutils/src/
H A Dwho.c86 char Var[INT_STRLEN_BOUND (Utmp_ent->ut_pid) + 1]; \
217 static char buf[INT_STRLEN_BOUND (intmax_t) + sizeof "-%m-%d %H:%M"];
249 char x_pid[1 + INT_STRLEN_BOUND (pid_t) + 1];
453 + INT_STRLEN_BOUND (UT_EXIT_E_TERMINATION (utmp_ent)) + 1
455 + INT_STRLEN_BOUND (UT_EXIT_E_EXIT (utmp_ent))
H A Dpinky.c155 static char buf[INT_STRLEN_BOUND (long int) + 2];
182 static char buf[INT_STRLEN_BOUND (intmax_t) + sizeof "-%m-%d %H:%M"];
/haiku-fatelf/src/bin/diffutils/src/
H A Dcontext.c59 char buf[MAX (INT_STRLEN_BOUND (int) + 32,
60 INT_STRLEN_BOUND (time_t) + 11)];
/haiku-fatelf/src/bin/bash/
H A Dgeneral.h100 #define INT_STRLEN_BOUND(t) \ macro
/haiku-fatelf/src/bin/gawk/missing_d/
H A Dstrftime.c158 #ifndef INT_STRLEN_BOUND
164 #define INT_STRLEN_BOUND(t) \ macro
626 ? INT_STRLEN_BOUND (time_t)
627 : INT_STRLEN_BOUND (int))];

Completed in 334 milliseconds

12