Searched refs:wch (Results 26 - 35 of 35) sorted by relevance

12

/freebsd-current/contrib/bsddialog/lib/
H A Dlib_util.h119 void mvwaddwch(WINDOW *w, int y, int x, wchar_t wch);
H A Dlib_util.c151 void mvwaddwch(WINDOW *w, int y, int x, wchar_t wch) argument
155 ws[0] = wch;
166 wchar_t wch; local
175 if (mbtowc(&wch, mbstring, mb_cur_max) < 0)
177 w = (wch == L'\t') ? TABSIZE : wcwidth(wch);
179 if (w > 1 && wch != L'\t')
197 wchar_t wch; local
205 if (mbtowc(&wch, mbstring, mb_cur_max) < 0)
207 w = (wch
[all...]
H A Dbarbox.c215 wchar_t wch; local
222 mbtowc(&wch, pmbstring, charlen);
223 w += (wch == L'\t') ? TABSIZE : wcwidth(wch);
H A Dformbox.c317 static bool insertch(struct privateitem *item, wchar_t wch, wchar_t securewch) argument
329 item->privwbuf[item->pos] = wch;
330 item->pubwbuf[item->pos] = item->secure ? securewch : wch;
/freebsd-current/sys/dev/sound/pcm/
H A Dvchan.c261 struct pcm_channel **ch, *wch, *rch, *c; local
268 wch = NULL;
273 ch = (c->direction == PCMDIR_PLAY) ? &wch : &rch;
294 *wrch = wch;
/freebsd-current/sys/dev/sbni/
H A Dif_sbni.c244 callout_init_mtx(&sc->wch, &sc->lock, 0);
263 callout_drain(&sc->wch);
311 callout_reset(&sc->wch, hz/SBNI_HZ, sbni_timeout, sc);
350 callout_stop(&sc->wch);
924 callout_reset(&sc->wch, hz/SBNI_HZ, sbni_timeout, sc);
/freebsd-current/usr.bin/printf/
H A Dprintf.c647 wchar_t wch; local
653 switch (mbrtowc(&wch, *gargv + 1, MB_LEN_MAX, &mbs)) {
656 wch = (unsigned char)gargv[0][1];
659 wch = 0;
662 ch = wch;
/freebsd-current/contrib/dialog/
H A Dutil.c699 wchar_t wch; local
705 len = mbrtowc(&wch, txt, given, &state);
706 if ((int) len > 0 && wcwidth(wch) == 0) {
H A Dconfigure23008 wchar_t wch = 'A';
23009 temp[0] = wch;
/freebsd-current/contrib/ncurses/form/
H A Dfrm_driver.c4938 wchar_t wch; local
4963 status = check_mbytes(wch, source + passed, tries, state);
4976 result[need] = wch;

Completed in 306 milliseconds

12