HomeSort by: relevance | last modified time | path
    Searched defs:wcp (Results 1 - 9 of 9) sorted by relevancy

  /src/lib/libcurses/
in_wchstr.c 127 cchar_t *wcp; local
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
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
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
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
199 const wchar_t *wcp; local
    [all...]
  /src/sys/fs/msdosfs/
msdosfs_conv.c 393 u_char gentext[6], *wcp; local
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
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
466 wcp = convbuf;
471 nconv = mbrtowc_l(wcp, p, insize, &mbs, loc);
474 wcp++;
484 *wcp = L'\0';
  /src/external/gpl3/gcc/dist/libquadmath/printf/
printf_fp.c 797 wchar_t *wstartp, *wcp;
900 wcp = wstartp = wbuffer + 2; /* Let room for rounding. */
909 *wcp++ = hack_digit ();
915 *wcp++ = decimalwc;
921 *wcp++ = L_('0');
923 *wcp++ = decimalwc;
933 *wcp = hack_digit ();
934 if (*wcp++ != L_('0'))
945 last_digit = wcp[-1] != decimalwc ? wcp[-1] : wcp[-2]
795 wchar_t *wstartp, *wcp; local
    [all...]
  /src/external/gpl3/gcc.old/dist/libquadmath/printf/
printf_fp.c 797 wchar_t *wstartp, *wcp;
900 wcp = wstartp = wbuffer + 2; /* Let room for rounding. */
909 *wcp++ = hack_digit ();
915 *wcp++ = decimalwc;
921 *wcp++ = L_('0');
923 *wcp++ = decimalwc;
933 *wcp = hack_digit ();
934 if (*wcp++ != L_('0'))
945 last_digit = wcp[-1] != decimalwc ? wcp[-1] : wcp[-2]
795 wchar_t *wstartp, *wcp; local
    [all...]

Completed in 38 milliseconds