/illumos-gate/usr/src/lib/libbc/libc/stdio/4.2/ |
H A D | sprintf.c | 42 FILE siop; local 45 siop._cnt = MAXINT; 46 siop._base = siop._ptr = (unsigned char *)string; 47 siop._flag = _IOWRT+_IOSTRG; 49 (void) _doprnt(format, ap, &siop); 51 *siop._ptr = '\0'; /* plant terminating null character */
|
H A D | vsprintf.c | 42 FILE siop; local 44 siop._cnt = MAXINT; 45 siop._base = siop._ptr = (unsigned char *)string; 46 siop._flag = _IOWRT+_IOSTRG; 47 (void) _doprnt(format, ap, &siop); 48 *siop._ptr = '\0'; /* plant terminating null character */
|
/illumos-gate/usr/src/ucblib/libucb/port/stdio/ |
H A D | sprintf.c | 54 FILE siop; local 57 siop._cnt = MAXINT; 58 siop._base = siop._ptr = (unsigned char *)string; 59 siop._flag = _IOREAD; 61 (void) _doprnt((char *) format, ap, &siop); 63 *siop._ptr = '\0'; /* plant terminating null character */
|
H A D | vsprintf.c | 54 FILE siop; local 56 siop._cnt = MAXINT; 57 siop._base = siop._ptr = (unsigned char *)string; 58 siop._flag = _IOREAD; 59 (void) _doprnt(format, ap, &siop); 60 *siop._ptr = '\0'; /* plant terminating null character */
|
/illumos-gate/usr/src/lib/libbc/libc/stdio/sys5/ |
H A D | sprintf.c | 43 FILE siop; local 46 siop._cnt = MAXINT; 47 siop._base = siop._ptr = (unsigned char *)string; 48 siop._flag = _IOWRT+_IOSTRG; 50 count = _doprnt(format, ap, &siop); 52 *siop._ptr = '\0'; /* plant terminating null character */
|
H A D | vsprintf.c | 49 FILE siop; local 51 siop._cnt = MAXINT; 52 siop._base = siop._ptr = (unsigned char *)string; 53 siop._flag = _IOWRT+_IOSTRG; 54 count = _doprnt(format, ap, &siop); 55 *siop._ptr = '\0'; /* plant terminating null character */
|
/illumos-gate/usr/src/lib/libc/port/print/ |
H A D | sprintf.c | 48 FILE siop; local 51 siop._cnt = MAXINT; 52 siop._base = siop._ptr = (unsigned char *)string; 53 siop._flag = _IOREAD; /* distinguish dummy file descriptor */ 56 count = _ndoprnt(format, ap, &siop, 0); 58 *siop._ptr = '\0'; /* plant terminating null character */
|
H A D | vsprintf.c | 62 FILE siop; local 64 siop._cnt = MAXINT; 65 siop._base = siop._ptr = (unsigned char *)string; 66 siop._flag = _IOREAD; /* distinguish dummy file descriptor */ 68 count = _ndoprnt(format, ap, &siop, _F_INTMAX32); 70 count = _ndoprnt(format, ap, &siop, 0); 72 *siop._ptr = '\0'; /* plant terminating null character */
|
H A D | snprintf.c | 48 FILE siop; local 53 siop._cnt = n - 1; 54 siop._base = siop._ptr = (unsigned char *)string; 55 siop._flag = _IOREAD; /* distinguish dummy file descriptor */ 64 siop._end = NULL; 74 siop._base = siop._ptr = tmpbuf; 75 siop._cnt = 0; 82 count = _ndoprnt(format, ap, &siop, [all...] |
H A D | vsnprintf.c | 62 FILE siop; local 66 siop._cnt = n - 1; 67 siop._base = siop._ptr = (unsigned char *)string; 68 siop._flag = _IOREAD; /* distinguish dummy file descriptor */ 77 siop._end = NULL; 87 siop._base = siop._ptr = tmpbuf; 88 siop._cnt = 0; 96 count = _ndoprnt(format, ap, &siop, _F_INTMAX3 [all...] |
H A D | vwprintf.c | 158 FILE siop; local 164 siop._cnt = (ssize_t)n - 1; 165 siop._base = siop._ptr = (unsigned char *)string; 166 siop._flag = _IOREAD; 169 count = _wndoprnt(format, ap, &siop, _F_INTMAX32); 171 count = _wndoprnt(format, ap, &siop, 0); 173 wp = (wchar_t *)(uintptr_t)siop._ptr;
|
H A D | wprintf.c | 148 FILE siop; local 154 siop._cnt = (ssize_t)n - 1; 155 siop._base = siop._ptr = (unsigned char *)string; 156 siop._flag = _IOREAD; 159 count = _wndoprnt(format, ap, &siop, 0); 161 wp = (wchar_t *)(uintptr_t)siop._ptr;
|
/illumos-gate/usr/src/lib/libbc/libc/gen/common/ |
H A D | syslog.c | 302 FILE siop; local 307 siop._cnt = n - 1; 308 siop._base = siop._ptr = (unsigned char *)string; 309 siop._flag = _IOWRT+_IOSTRG; 311 count = _doprnt(format, ap, &siop); 313 *siop._ptr = '\0'; /* plant terminating null character */ 321 FILE siop; local 325 siop._cnt = n - 1; 326 siop [all...] |