Home
last modified time | relevance | path

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

/titanic_44/usr/src/lib/libxcurses2/src/libc/wide/
H A Dwio_get.c77 return ((wint_t)wio->_mb[wio->_next++]); in m_wio_get()
87 wio->_mb[wio->_next] = (unsigned char)ch; in m_wio_get()
89 wio->_size = mbtowc(&wc, (char *)wio->_mb, wio->_next + 1); in m_wio_get()
111 return (0 < wio->_size ? (wint_t) wio->_mb[wio->_next++] : WEOF); in m_wio_get()
H A Dwio_put.c73 if ((mb_len = wctomb((char *) wio->_mb, wc)) < 0) in m_wio_put()
87 for (ptr = wio->_mb, count = 0; count < mb_len; ++ptr, ++count) in m_wio_put()
/titanic_44/usr/src/lib/libxcurses/src/libc/wide/
H A Dwio_get.c122 return (wint_t) wio->_mb[wio->_next++];
131 wio->_mb[wio->_next] = ch;
135 &wc, (char *) (wio->_mb + wio->_next), 1, &wio->_state
172 return 0 < wio->_size ? (wint_t) wio->_mb[wio->_next++] : WEOF;
H A Dwio_put.c72 if ((mb_len = wcrtomb((char *) wio->_mb, wc, &wio->_state)) < 0)
85 for (ptr = wio->_mb, count = 0; count < mb_len; ++ptr, ++count)
/titanic_44/usr/src/lib/libxcurses2/h/
H A Dm_wio.h58 unsigned char _mb[MB_LEN_MAX]; member
/titanic_44/usr/src/lib/libxcurses/h/
H A Dm_wio.h59 unsigned char _mb[MB_LEN_MAX]; member
/titanic_44/usr/src/lib/libxcurses/src/libc/xcurses/
H A Dwget_wch.c133 PUSH(wio->_mb[--wio->_size]);
/titanic_44/usr/src/lib/libxcurses2/src/libc/xcurses/
H A Dwget_wch.c144 iqPush(wio->_mb[--wio->_size]); in wget_wch()