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