Home
last modified time | relevance | path

Searched refs:pmb (Results 1 – 3 of 3) sorted by relevance

/illumos-gate/usr/src/cmd/csh/
H A Dsh.tchar.c93 char *pmb; in tstostr() local
116 pmb = to; in tstostr()
118 if ((len = wctomb(pmb, wc)) <= 0) { in tstostr()
119 *pmb = (unsigned char)wc; in tstostr()
122 pmb += len; in tstostr()
124 *pmb = (char)0; in tstostr()
142 char *pmb = from; in mbstotcs() local
150 while (*pmb) { in mbstotcs()
151 if ((j = mbtowc(&wc, pmb, MB_CUR_MAX)) <= 0) { in mbstotcs()
154 pmb += j; in mbstotcs()
[all …]
H A Dsh.h51 #define mbtowc(pwc, pmb, n_is_ignored) ((*(pwc) = *(pmb)), 1) argument
52 #define wctomb(pmb, wc) ((*(pmb) = ((char)wc)), 1) argument
/illumos-gate/usr/src/uts/common/os/
H A Dmodsubr.c540 struct bind **pmb; in make_mbind() local
557 pmb = &hashtab[nm_hash(name)]; in make_mbind()
558 mb->b_next = *pmb; in make_mbind()
559 *pmb = mb; in make_mbind()