/src/lib/libcurses/ |
in_wchstr.c | 127 cchar_t *wcp; local in function:win_wchnstr 143 wcp = wchstr; 147 wcp->vals[0] = start->ch; 148 wcp->attributes = start->attr; 149 wcp->elements = 1; 153 wcp->vals[wcp->elements++] = np->ch; 157 wcp++; 163 wcp->vals[0] = L'\0'; 164 wcp->elements = 1 [all...] |
inwstr.c | 132 wchar_t *wcp; local in function:winnwstr 148 wcp = wstr; 152 *wcp = start->ch; 153 wcp++; 159 *wcp = L'\0';
|
/src/tests/lib/libc/locale/ |
t_wcscoll.c | 115 const wchar_t * const *wcp; local in function:h_wcscoll 123 for (wcp = &t->in_order[0], owcp = wcp++; 124 *wcp != NULL; owcp = wcp++) { 125 printf("Check L\"%S\" < L\"%S\"\n", *owcp, *wcp); 126 ATF_CHECK(wcscoll(*owcp, *wcp) < 0);
|
t_btowc.c | 84 const wchar_t *wcp; local in function:h_iso10646 93 for (cp = t->legal, wcp = t->wlegal; *cp != '\0'; ++cp, ++wcp) { 103 c, wc, *wcp); 104 ATF_REQUIRE(btowc(c) == *wcp); 108 for (wcp = t->willegal; *wcp != '\0'; ++wcp) { 110 (unsigned long)*wcp); 111 ATF_REQUIRE_EQ(wctob(*wcp), EOF) 122 const wchar_t *wcp; local in function:h_btowc 199 const wchar_t *wcp; local in function:ATF_TC_BODY [all...] |
/src/sys/fs/msdosfs/ |
msdosfs_conv.c | 393 u_char gentext[6], *wcp; local in function:msdosfs_unix2dosfn 521 for (wcp = gentext + sizeof(gentext); wcp > gentext && gen; gen /= 10) 522 *--wcp = gen % 10 + '0'; 527 if (gentext + sizeof(gentext) - wcp + 1 > 8 - i) 528 i = 8 - (gentext + sizeof(gentext) - wcp + 1); 530 while (wcp < gentext + sizeof(gentext)) 531 dn[i++] = *wcp++;
|
/src/lib/libc/stdio/ |
vfscanf.c | 174 wchar_t *wcp; /* handy wide-character pointer */ local in function:__svfscanf_unlocked_l 397 wcp = va_arg(ap, wchar_t *); 399 wcp = NULL; 410 nconv = mbrtowc_l(wcp, buf, n, &mbs, 417 *wcp = L'\0'; 422 wcp++; 479 wcp = va_arg(ap, wchar_t *); 481 wcp = &twc; 493 nconv = mbrtowc_l(wcp, buf, n, &mbs, 500 *wcp = L'\0' [all...] |
vfwprintf.c | 424 wchar_t *convbuf, *wcp; local in function:__mbsconv 466 wcp = convbuf; 471 nconv = mbrtowc_l(wcp, p, insize, &mbs, loc); 474 wcp++; 484 *wcp = L'\0';
|