Home
last modified time | relevance | path

Searched refs:siop (Results 1 – 8 of 8) sorted by relevance

/illumos-gate/usr/src/lib/libc/port/print/
H A Dvsnprintf.c60 FILE siop; in _vsnprintf_c89() local
64 siop._cnt = n - 1; in _vsnprintf_c89()
65 siop._base = siop._ptr = (unsigned char *)string; in _vsnprintf_c89()
66 siop._flag = _IOREAD; /* distinguish dummy file descriptor */ in _vsnprintf_c89()
75 siop._end = NULL; in _vsnprintf_c89()
85 siop._base = siop._ptr = tmpbuf; in _vsnprintf_c89()
86 siop._cnt = 0; in _vsnprintf_c89()
94 count = _ndoprnt(format, ap, &siop, _F_INTMAX32); in _vsnprintf_c89()
96 count = _ndoprnt(format, ap, &siop, 0); in _vsnprintf_c89()
99 *siop._ptr = '\0'; /* plant terminating null character */ in _vsnprintf_c89()
H A Dsnprintf.c46 FILE siop; in snprintf() local
51 siop._cnt = n - 1; in snprintf()
52 siop._base = siop._ptr = (unsigned char *)string; in snprintf()
53 siop._flag = _IOREAD; /* distinguish dummy file descriptor */ in snprintf()
62 siop._end = NULL; in snprintf()
72 siop._base = siop._ptr = tmpbuf; in snprintf()
73 siop._cnt = 0; in snprintf()
80 count = _ndoprnt(format, ap, &siop, 0); in snprintf()
83 *siop._ptr = '\0'; /* plant terminating null character */ in snprintf()
H A Dvsprintf.c60 FILE siop; in _vsprintf_c89() local
62 siop._cnt = MAXINT; in _vsprintf_c89()
63 siop._base = siop._ptr = (unsigned char *)string; in _vsprintf_c89()
64 siop._flag = _IOREAD; /* distinguish dummy file descriptor */ in _vsprintf_c89()
66 count = _ndoprnt(format, ap, &siop, _F_INTMAX32); in _vsprintf_c89()
68 count = _ndoprnt(format, ap, &siop, 0); in _vsprintf_c89()
70 *siop._ptr = '\0'; /* plant terminating null character */ in _vsprintf_c89()
H A Dsprintf.c46 FILE siop; in sprintf() local
49 siop._cnt = MAXINT; in sprintf()
50 siop._base = siop._ptr = (unsigned char *)string; in sprintf()
51 siop._flag = _IOREAD; /* distinguish dummy file descriptor */ in sprintf()
54 count = _ndoprnt(format, ap, &siop, 0); in sprintf()
56 *siop._ptr = '\0'; /* plant terminating null character */ in sprintf()
H A Dvwprintf.c158 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 Dwprintf.c148 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()
/illumos-gate/usr/src/ucblib/libucb/port/stdio/
H A Dvsprintf.c52 FILE siop; in vsprintf() local
54 siop._cnt = MAXINT; in vsprintf()
55 siop._base = siop._ptr = (unsigned char *)string; in vsprintf()
56 siop._flag = _IOREAD; in vsprintf()
57 (void) _doprnt(format, ap, &siop); in vsprintf()
58 *siop._ptr = '\0'; /* plant terminating null character */ in vsprintf()
H A Dsprintf.c52 FILE siop; in sprintf() local
55 siop._cnt = MAXINT; in sprintf()
56 siop._base = siop._ptr = (unsigned char *)string; in sprintf()
57 siop._flag = _IOREAD; in sprintf()
59 (void) _doprnt((char *) format, ap, &siop); in sprintf()
61 *siop._ptr = '\0'; /* plant terminating null character */ in sprintf()