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

  /src/tests/lib/libc/locale/
t_wctype.c 144 wctype_t wct; local
161 wct = wctype(typenames[i]);
162 ATF_REQUIRE(wct != 0);
167 testall(i, (unsigned char)*cp, wc, wct, 1);
172 testall(i, (unsigned char)*cp, wc, wct, 0);
177 void testall(int idx, int c, wchar_t wc, wctype_t wct, int inout)
179 printf("Testing class %d (%s), char %c (0x%2.2x), wc %x, wct %ld, expect %d\n",
180 idx, typenames[idx], c, c, wc, (long int)wct, inout);
181 ATF_REQUIRE(!!iswctype(wc, wct) == inout);
183 /* Switch based on wct and call is{,w}* to check *
    [all...]
  /src/external/bsd/tcpdump/dist/
print-smb.c 401 u_int wct, bcc; local
404 wct = GET_U_1(words);
408 if (wct == 1)
410 else if (wct == 17)
412 else if (wct == 13)
417 smb_fdata(ndo, words + 1, f1, ND_MIN(words + 1 + wct * 2, maxbuf),
421 ND_MIN(wct * 2, ND_BYTES_BETWEEN(words + 1, maxbuf)));
439 u_int wct, bcc; local
442 wct = GET_U_1(words);
444 if (wct == 10
480 u_int wct, bcc; local
836 int wct; local
    [all...]
  /src/lib/libc/regex/
regcomp.c 168 static void CHaddtype(struct parse *p, cset *cs, wctype_t wct);
1322 wctype_t wct; local
1324 if ((wct = wctype(clname)) == 0) {
1328 CHaddtype(p, cs, wct);
1818 CHaddtype(struct parse *p, cset *cs, wctype_t wct)
1827 if (iswctype(i, wct))
1836 cs->types[cs->ntypes++] = wct;

Completed in 42 milliseconds