Home
last modified time | relevance | path

Searched refs:_base (Results 1 – 25 of 58) sorted by last modified time

123

/illumos-gate/usr/src/uts/intel/sys/amdzen/
H A Dsmn.h493 #define AMDZEN_MAKE_SMN_REG_FN(_fn, _unit, _base, _mask, _nunits, _unitshift) \ argument
494 CTASSERT(((_base) & ~(_mask)) == 0); \
514 const uint32_t aperture_base = (_base); \
/illumos-gate/usr/src/lib/libc/port/stdio/
H A Dflush.c381 fp->_base = 0; in _findiop()
541 Uchar *base = iop->_base; in _xflsbuf()
679 iop->_ptr = iop->_base; in _fflush_u()
685 if (iop->_base != NULL && iop->_ptr > iop->_base) { in _fflush_u()
717 (void) free((char *)iop->_base - PUSHBACK); in fclose()
719 iop->_base = NULL; in fclose()
767 free((char *)iop->_base - PUSHBACK); in fcloseall()
768 iop->_base = NULL; in fcloseall()
798 (void) free((char *)iop->_base - PUSHBACK); in close_fd()
800 iop->_base = NULL; in close_fd()
[all …]
H A Dungetc.c57 if (iop->_ptr <= iop->_base) { in _ungetc_unlocked()
58 if (iop->_base == 0) { in _ungetc_unlocked()
61 } else if (iop->_ptr <= iop->_base - PUSHBACK) in _ungetc_unlocked()
H A Dvscanf.c123 strbuf._ptr = strbuf._base = (unsigned char *)str; in _vsscanf_c89()
H A Dvwscanf.c125 strbuf._ptr = strbuf._base = (unsigned char *)tmp_buf; in _vswscanf_c89()
H A Dgets.c62 if (stdin->_base == NULL) { in gets()
H A Dsetbuf.c56 if ((iop->_base != NULL) && (iop->_flag & _IOMYBUF)) in setbuf()
57 free((char *)iop->_base - PUSHBACK); in setbuf()
90 iop->_base = temp; in setbuf()
H A Ddoscan.c1318 if (iop->_ptr <= iop->_base) {
1319 if (iop->_base == NULL) {
1322 if ((iop->_ptr == iop->_base) && (iop->_cnt == 0)) {
1324 } else if ((iop->_ptr - n) < (iop->_base - PUSHBACK)) {
H A Dfgets.c62 if (iop->_base == NULL) { in fgets()
H A D_findbuf.c108 iop->_base = buf + PUSHBACK; /* bytes for pushback */ in _findbuf()
110 endbuf = iop->_base + size; in _findbuf()
/illumos-gate/usr/src/cmd/bnu/
H A Dcntrl.c515 fp->_ptr = fp->_base; in cntrl()
678 fp->_ptr = fp->_base; in cntrl()
869 fp->_ptr = fp->_base; in cntrl()
1261 fp->_ptr = fp->_base; in cntrl()
/illumos-gate/usr/src/uts/common/io/sfxge/common/
H A Defx_types.h1315 #define EFX_SHIFT64(_bit, _base) \ argument
1316 (((_bit) >= (_base) && (_bit) < (_base) + 64) ? \
1317 ((uint64_t)1 << ((_bit) - (_base))) : \
1323 #define EFX_SHIFT32(_bit, _base) \ argument
1324 (((_bit) >= (_base) && (_bit) < (_base) + 32) ? \
1325 ((uint32_t)1 << ((_bit) - (_base))) : \
1328 #define EFX_SHIFT16(_bit, _base) \ argument
1329 (((_bit) >= (_base) && (_bit) < (_base) + 16) ? \
1333 #define EFX_SHIFT8(_bit, _base) \ argument
1334 (((_bit) >= (_base) && (_bit) < (_base) + 8) ? \
[all …]
/illumos-gate/usr/src/boot/sys/sys/
H A Dlinker.h246 extern caddr_t preload_search_next_name(caddr_t _base);
/illumos-gate/usr/src/uts/common/krtld/
H A Dkobj.c3744 file->_ptr = file->_base; in kobj_open_file()
3753 file->_base = kobj_zalloc(MAXBSIZE, KM_WAIT); in kobj_open_file()
3770 file->_base = kobj_zalloc(cbuf.blksize, KM_WAIT|KM_TMP); in kobj_open_file()
3800 file->_base = kobj_alloc(hdr->ch_blksize, KM_WAIT|KM_TMP); in kobj_comp_setup()
3809 if (file->_base != NULL) in kobj_close_file()
3810 kobj_free(file->_base, file->_bsize); in kobj_close_file()
3901 bcopy(file->_base+b_off, buf, c_size); in kobj_read_file()
3938 c_size = kobj_read_blks(file, file->_base, in kobj_read_file()
3940 file->_ptr = file->_base; in kobj_read_file()
/illumos-gate/usr/src/ucblib/libucb/port/stdio/
H A Dvsprintf.c55 siop._base = siop._ptr = (unsigned char *)string; in vsprintf()
H A Ddoprnt.c263 if (iop->_base == 0 && _findbuf(iop) == 0) in _doprnt()
H A Dsprintf.c56 siop._base = siop._ptr = (unsigned char *)string; in sprintf()
/illumos-gate/usr/src/ucblib/libucb/inc/
H A Dstdiom.h116 (iop->_base == 0) || \
117 (iop->_ptr == iop->_base && iop->_cnt == 0 && \
/illumos-gate/usr/src/ucblib/libcurses/
H A Dscanw.c78 junk._base = junk._ptr = (unsigned char *)buf; in _sscans()
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dscr_dump.c91 free(w->_base); in scr_replace()
103 new->_base = NULL; in scr_replace()
H A Dnewwin.c144 w->_base = (cchar_t *) malloc((size_t) (nlines * ncols) * in __m_newwin()
145 sizeof (*w->_base)); in __m_newwin()
146 if (w->_base == NULL) in __m_newwin()
149 w->_line[0] = w->_base; in __m_newwin()
167 w->_base = NULL; in __m_newwin()
249 if (w->_base != NULL) in delwin()
250 free(w->_base); in delwin()
/illumos-gate/usr/src/lib/libxcurses2/h/
H A Dcurses.h154 cchar_t *_base; /* Block of M*N screen cells. */ member
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dscr_dump.c93 free(w->_base);
104 new->_base = (cchar_t *) 0;
H A Dnewwin.c141 w->_base = (cchar_t *) malloc(
142 (size_t) (nlines * ncols) * sizeof *w->_base
144 if (w->_base == (cchar_t *) 0)
147 w->_line[y = 0] = w->_base;
162 w->_base = (cchar_t *) 0;
236 if (w->_base != (cchar_t *) 0)
237 free(w->_base);
/illumos-gate/usr/src/lib/libxcurses/h/
H A Dcurses.h155 cchar_t *_base; /* Block of M*N screen cells. */ member

123