Searched refs:_base (Results 1 - 25 of 48) sorted by relevance

12

/osnet-11/usr/src/lib/libc/port/stdio/
H A Dungetc.c59 if (iop->_ptr <= iop->_base) {
60 if (iop->_base == 0) {
63 } else if (iop->_ptr <= iop->_base - PUSHBACK)
H A D_wrtchk.c53 if (iop->_base == NULL && _findbuf(iop) == NULL)
55 else if ((iop->_ptr == iop->_base) &&
H A D_filbuf.c76 if (iop->_base == 0) {
115 iop->_ptr = iop->_base;
119 nbyte = endbuf - iop->_base;
120 if ((res = read(GET_FD(iop), (char *)iop->_base, nbyte)) > 0) {
H A D__extensions.c94 if ((stream->_ptr = stream->_base) != NULL)
109 amount = stream->_ptr - stream->_base;
124 size = _bufend(stream) - stream->_base;
H A Dftell.c67 (iop->_base != 0))
68 adjust = iop->_ptr - iop->_base;
69 else if ((iop->_flag & _IORW) && (iop->_base != 0))
H A Dsetbuf.c53 if ((iop->_base != 0) && (iop->_flag & _IOMYBUF))
54 free((char *)iop->_base - PUSHBACK);
81 iop->_base = temp;
H A Dfwrite.c86 iop->_cnt = iop->_base - iop->_ptr;
88 ssize_t buflen = bufend - iop->_base;
103 if (iop->_base != iop->_ptr) {
108 bytes = iop->_ptr - iop->_base;
109 data = (char *)iop->_base;
123 iop->_ptr = iop->_base;
H A Dsetvbuf.c104 if (iop->_base != NULL && sflag)
105 free((char *)iop->_base - PUSHBACK);
107 iop->_base = temp;
H A Drewind.c60 iop->_ptr = iop->_base;
H A D_findbuf.c96 iop->_base = buf + PUSHBACK; /* bytes for pushback */
98 endbuf = iop->_base + size;
H A D_flsbuf.c56 if (iop->_base != 0 && iop->_ptr > iop->_base)
H A Dfseek.c65 if (ptrname == 1 && iop->_base && !(iop->_flag&_IONBF)) {
75 iop->_ptr = iop->_base;
H A Dfseeko.c72 if (ptrname == 1 && iop->_base && !(iop->_flag&_IONBF)) {
82 iop->_ptr = iop->_base;
H A Dftello.c75 (iop->_base != 0))
76 adjust = iop->_ptr - iop->_base;
H A Dflush.c378 fp->_base = 0;
529 Uchar *base = iop->_base;
668 iop->_ptr = iop->_base;
674 if (iop->_base != NULL && iop->_ptr > iop->_base) {
706 (void) free((char *)iop->_base - PUSHBACK);
708 iop->_base = NULL;
756 free((char *)iop->_base - PUSHBACK);
757 iop->_base = NULL;
787 (void) free((char *)iop->_base
[all...]
/osnet-11/usr/src/lib/libc/port/i18n/
H A D__ungetwc_xpg5.c83 if (iop->_ptr <= iop->_base) {
84 if (iop->_base == NULL) {
88 if (iop->_ptr == iop->_base && iop->_cnt == 0) {
90 } else if ((iop->_ptr - n) < (iop->_base - PUSHBACK)) {
/osnet-11/usr/src/lib/libc/inc/
H A Dfile64.h65 unsigned char *_base; /* the buffer */ member in struct:__FILE_TAG
/osnet-11/usr/src/lib/libc/port/print/
H A Dsnprintf.c54 siop._base = siop._ptr = (unsigned char *)string;
74 siop._base = siop._ptr = tmpbuf;
H A Dvsnprintf.c67 siop._base = siop._ptr = (unsigned char *)string;
87 siop._base = siop._ptr = tmpbuf;
H A Dsprintf.c52 siop._base = siop._ptr = (unsigned char *)string;
H A Dvsprintf.c65 siop._base = siop._ptr = (unsigned char *)string;
/osnet-11/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dnewwin.c143 w->_base = (cchar_t *) malloc(
144 (size_t) (nlines * ncols) * sizeof *w->_base
146 if (w->_base == (cchar_t *) 0)
149 w->_line[y = 0] = w->_base;
164 w->_base = (cchar_t *) 0;
238 if (w->_base != (cchar_t *) 0)
239 free(w->_base);
H A Dscr_dump.c95 free(w->_base);
106 new->_base = (cchar_t *) 0;
/osnet-11/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dnewwin.c146 w->_base = (cchar_t *) malloc((size_t) (nlines * ncols) *
147 sizeof (*w->_base));
148 if (w->_base == NULL)
151 w->_line[0] = w->_base;
169 w->_base = NULL;
251 if (w->_base != NULL)
252 free(w->_base);
H A Dscr_dump.c93 free(w->_base);
105 new->_base = NULL;

Completed in 62 milliseconds

12