Home
last modified time | relevance | path

Searched refs:_next (Results 1 – 25 of 25) sorted by relevance

/illumos-gate/usr/src/lib/libxcurses2/src/libc/wide/
H A Dwio_get.c74 if (wio->_next < wio->_size) { in m_wio_get()
75 return ((wint_t)wio->_mb[wio->_next++]); in m_wio_get()
80 for (wio->_next = 0; wio->_next < (int)MB_CUR_MAX; ) { in m_wio_get()
85 wio->_mb[wio->_next] = (unsigned char)ch; in m_wio_get()
87 wio->_size = mbtowc(&wc, (char *)wio->_mb, wio->_next + 1); in m_wio_get()
89 ++wio->_next; in m_wio_get()
93 wio->_size = wio->_next; in m_wio_get()
106 wio->_size = wio->_next; in m_wio_get()
107 wio->_next = 0; in m_wio_get()
109 return (0 < wio->_size ? (wint_t) wio->_mb[wio->_next++] : WEOF); in m_wio_get()
H A Dwio_put.c91 wio->_next = count; in m_wio_put()
/illumos-gate/usr/src/lib/libxcurses/src/libc/wide/
H A Dwio_get.c119 if (wio->_next < wio->_size)
120 return (wint_t) wio->_mb[wio->_next++];
125 for (wio->_next = 0; wio->_next < MB_CUR_MAX; ) {
129 wio->_mb[wio->_next] = ch;
133 &wc, (char *) (wio->_mb + wio->_next), 1, &wio->_state
136 ++wio->_next;
154 wio->_size = wio->_next;
167 wio->_size = wio->_next;
168 wio->_next = 0;
170 return 0 < wio->_size ? (wint_t) wio->_mb[wio->_next++] : WEOF;
H A Dwio_put.c89 wio->_next = count;
/illumos-gate/usr/src/contrib/ast/src/lib/libast/include/
H A Dsfio.h347 #define __sf_putc(f,c) (_SF_(f)->_next >= _SF_(f)->_endw ? \
349 (int)(*_SF_(f)->_next++ = (unsigned char)(c)) )
350 #define __sf_getc(f) (_SF_(f)->_next >= _SF_(f)->_endr ? _sffilbuf(_SF_(f),0) : \
351 (int)(*_SF_(f)->_next++) )
425 (char*)((f)->_next = (f)->_data+(p)) ) \
427 ((f)->_next += (p), \
428 (((f)->_next < (f)->_data || (f)->_next > (f)->_data+(f)->_size) ? \
429 ((f)->_next -= (p), (char*)0) : (char*)(f)->_next ) ) \
432 (char*)((f)->_next = (f)->_data+(f)->_size+(p)) ) \
437 #define sfstrtell(f) ((f)->_next - (f)->_data)
[all …]
H A Dstk.h46 #define stktop(sp) ((char*)(sp)->_next)
47 #define stktell(sp) ((sp)->_next-(sp)->_data)
48 #define stkseek(sp,n) ((n)==0?(char*)((sp)->_next=(sp)->_data):_stkseek(sp,n))
H A Dsfio_s.h32 #define _next next macro
36 { unsigned char* _next; /* next position to read/write from */ member
H A Dstak.h44 #define stakputs(s) (sfputr(stkstd,(s),0),--stkstd->_next)
/illumos-gate/usr/src/contrib/ast/src/lib/libast/misc/
H A Dstk.c178 stream->_data = stream->_next = 0; in stkexcept()
367 stream->_next = (unsigned char*)loc+offset; in stkset()
388 stream->_data = stream->_next = (unsigned char*)cp; in stkset()
406 stream->_data = stream->_next = old+n; in stkalloc()
420 stream->_next = stream->_data+n; in _stkseek()
434 top = stream->_next; in stkfreeze()
437 if(extra > (stream->_endb-stream->_next)) in stkfreeze()
446 stream->_next = stream->_data += roundof(top-old,STK_ALIGN); in stkfreeze()
482 stream->_data = stream->_next = cp+n; in stkcopy()
563 return((char*)(stream->_next = stream->_data+m)); in stkgrow()
/illumos-gate/usr/src/lib/libxcurses2/h/
H A Dm_wio.h54 int _next; member
/illumos-gate/usr/src/lib/libxcurses/h/
H A Dm_wio.h54 int _next; member
/illumos-gate/usr/src/contrib/ast/src/lib/libast/disc/
H A Dsfstrtmp.c56 f->_next = f->_data = (unsigned char*)buf;
/illumos-gate/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dwget_wch.c130 while (wio->_next < wio->_size)
H A Dm_cc.c227 convert._next = convert._size = 0;
/illumos-gate/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dwget_wch.c141 while (wio->_next < wio->_size) in wget_wch()
H A Dm_cc.c229 convert._next = convert._size = 0; in __m_cc_mbs()
/illumos-gate/usr/src/contrib/ast/src/lib/libast/features/
H A Dstdio88 #define _ptr _next
552 …#define fputc(c,f) (_sf_(f)->_next>=_sf_(f)->_endw?_sfflsbuf(_sf_(f),(int)((unsigned char)(c))):(i…
553 #define getc(f) (_sf_(f)->_next>=_sf_(f)->_endr?_sffilbuf(_sf_(f),0):(int)(*_sf_(f)->_next++))
/illumos-gate/usr/src/cmd/ast/libast/amd64/FEATURE/
H A Dstdio149 #define _ptr _next
568 #define fputc(c,f) (_sf_(f)->_next>=_sf_(f)->_endw?_sfflsbuf(_sf_(f),(int)((unsigned char)(c))):(in…
569 #define getc(f) (_sf_(f)->_next>=_sf_(f)->_endr?_sffilbuf(_sf_(f),0):(int)(*_sf_(f)->_next++))
/illumos-gate/usr/src/cmd/ast/libast/i386/FEATURE/
H A Dstdio149 #define _ptr _next
568 #define fputc(c,f) (_sf_(f)->_next>=_sf_(f)->_endw?_sfflsbuf(_sf_(f),(int)((unsigned char)(c))):(in…
569 #define getc(f) (_sf_(f)->_next>=_sf_(f)->_endr?_sffilbuf(_sf_(f),0):(int)(*_sf_(f)->_next++))
/illumos-gate/usr/src/cmd/ast/libast/sparc/FEATURE/
H A Dstdio149 #define _ptr _next
568 #define fputc(c,f) (_sf_(f)->_next>=_sf_(f)->_endw?_sfflsbuf(_sf_(f),(int)((unsigned char)(c))):(in…
569 #define getc(f) (_sf_(f)->_next>=_sf_(f)->_endr?_sffilbuf(_sf_(f),0):(int)(*_sf_(f)->_next++))
/illumos-gate/usr/src/cmd/ast/libast/sparcv9/FEATURE/
H A Dstdio149 #define _ptr _next
568 #define fputc(c,f) (_sf_(f)->_next>=_sf_(f)->_endw?_sfflsbuf(_sf_(f),(int)((unsigned char)(c))):(in…
569 #define getc(f) (_sf_(f)->_next>=_sf_(f)->_endr?_sffilbuf(_sf_(f),0):(int)(*_sf_(f)->_next++))
/illumos-gate/usr/src/cmd/sgs/libld/common/
H A Dfiles.c1870 char _name[PATH_MAX], *nptr, *_next; in expand() local
2053 if ((_next = lptr = libld_malloc(mlen)) == NULL) in expand()
2095 *next = _next; in expand()
/illumos-gate/usr/src/contrib/ast/src/lib/libast/sfio/
H A Dsfhdr.h32 #define _next next macro
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/sh/
H A Dnvtype.c656 cp = (char*)out->_next; in typeinfo()
/illumos-gate/usr/src/uts/common/io/qede/579xx/drivers/ecore/documentation/
H A Decore.tex1052 \texttt{rcv\_next} & In passive-open, SYN sequence number + 1. NA in active open \\ \hline
1168 …\texttt{sq\_next\_page\_addr} & The physical address of the second SQ page (or the first in case o…