Searched refs:siop (Results 1 - 6 of 6) sorted by relevance

/osnet-11/usr/src/lib/libc/port/print/
H A Dvsprintf.c62 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 Dvsnprintf.c62 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 Dsnprintf.c48 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 Dsprintf.c48 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 Dvwprintf.c160 FILE siop; local
166 siop._cnt = (ssize_t)n - 1;
167 siop._base = siop._ptr = (unsigned char *)string;
168 siop._flag = _IOREAD;
171 count = _wndoprnt(format, ap, &siop, _F_INTMAX32);
173 count = _wndoprnt(format, ap, &siop, 0);
175 wp = (wchar_t *)(uintptr_t)siop._ptr;
H A Dwprintf.c149 FILE siop; local
155 siop._cnt = (ssize_t)n - 1;
156 siop._base = siop._ptr = (unsigned char *)string;
157 siop._flag = _IOREAD;
160 count = _wndoprnt(format, ap, &siop, 0);
162 wp = (wchar_t *)(uintptr_t)siop._ptr;

Completed in 25 milliseconds