Home
last modified time | relevance | path

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

/netbsd/src/tests/lib/libc/locale/
Dt_wctype.c144 wctype_t wct; in h_ctype() local
161 wct = wctype(typenames[i]); in h_ctype()
162 ATF_REQUIRE(wct != 0); in h_ctype()
167 testall(i, (unsigned char)*cp, wc, wct, 1); in h_ctype()
172 testall(i, (unsigned char)*cp, wc, wct, 0); in h_ctype()
177 void testall(int idx, int c, wchar_t wc, wctype_t wct, int inout) in testall() argument
180 idx, typenames[idx], c, c, wc, (long int)wct, inout); in testall()
181 ATF_REQUIRE(!!iswctype(wc, wct) == inout); in testall()
/netbsd/src/external/bsd/tcpdump/dist/
Dprint-smb.c401 u_int wct, bcc; in print_negprot() local
404 wct = GET_U_1(words); in print_negprot()
408 if (wct == 1) in print_negprot()
410 else if (wct == 17) in print_negprot()
412 else if (wct == 13) in print_negprot()
417 smb_fdata(ndo, words + 1, f1, ND_MIN(words + 1 + wct * 2, maxbuf), in print_negprot()
421 ND_MIN(wct * 2, ND_BYTES_BETWEEN(words + 1, maxbuf))); in print_negprot()
439 u_int wct, bcc; in print_sesssetup() local
442 wct = GET_U_1(words); in print_sesssetup()
444 if (wct == 10) in print_sesssetup()
[all …]
/netbsd/src/lib/libc/regex/
Dregcomp.c168 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) argument
1827 if (iswctype(i, wct))
1836 cs->types[cs->ntypes++] = wct;