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

/freebsd-10.0-release/contrib/diff/lib/
H A Dinttostr.h41 #define INT_STRLEN_BOUND(t) ((sizeof (t) * CHAR_BIT - 1) * 302 / 1000 + 2) macro
43 #define INT_BUFSIZE_BOUND(t) (INT_STRLEN_BOUND (t) + 1)
H A Dstrftime.c113 #define INT_STRLEN_BOUND(t) \ macro
470 ? INT_STRLEN_BOUND (time_t)
471 : INT_STRLEN_BOUND (int))];
/freebsd-10.0-release/contrib/libreadline/
H A Dshell.c85 #define INT_STRLEN_BOUND(t) \ macro
131 b = (char *)xmalloc (INT_STRLEN_BOUND (int) + 1);
136 b = (char *)xmalloc (INT_STRLEN_BOUND (int) + 1);
142 b = (char *)xmalloc (INT_STRLEN_BOUND (int) + sizeof ("LINES=") + 1);
146 b = (char *)xmalloc (INT_STRLEN_BOUND (int) + sizeof ("COLUMNS=") + 1);
/freebsd-10.0-release/contrib/less/
H A Dprompt.c117 char buf[INT_STRLEN_BOUND(pos) + 2];
130 char buf[INT_STRLEN_BOUND(linenum) + 2];
143 char buf[INT_STRLEN_BOUND(num) + 2];
H A Doutput.c400 char tbuf[INT_STRLEN_BOUND(num)+2]; \
422 char buf[INT_STRLEN_BOUND(num)];
436 char buf[INT_STRLEN_BOUND(num)];
H A Dless.h215 #define INT_STRLEN_BOUND(t) ((sizeof(t) * CHAR_BIT - 1) * 302 / 1000 + 1 + 1) macro
H A Dline.c208 char buf[INT_STRLEN_BOUND(pos) + 2];
/freebsd-10.0-release/contrib/diff/src/
H A Dcontext.c58 char buf[MAX (INT_STRLEN_BOUND (int) + 32,
59 INT_STRLEN_BOUND (time_t) + 11)];

Completed in 76 milliseconds