Home
last modified time | relevance | path

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

/titanic_44/usr/src/cmd/csh/
H A Dsh.tchar.c94 char *pmb; in tstostr() local
117 pmb = to; in tstostr()
119 if ((len = wctomb(pmb, wc)) <= 0) { in tstostr()
120 *pmb = (unsigned char)wc; in tstostr()
123 pmb += len; in tstostr()
125 *pmb = (char)0; in tstostr()
143 char *pmb = from; in mbstotcs() local
151 while (*pmb) { in mbstotcs()
152 if ((j = mbtowc(&wc, pmb, MB_CUR_MAX)) <= 0) { in mbstotcs()
155 pmb += j; in mbstotcs()
[all …]
H A Dsh.h53 #define mbtowc(pwc, pmb, n_is_ignored) ((*(pwc) = *(pmb)), 1) argument
54 #define wctomb(pmb, wc) ((*(pmb) = ((char)wc)), 1) argument
/titanic_44/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()