Lines Matching defs:cs
73 cset_in(struct cset *cs, wchar_t ch)
76 if (ch < CS_CACHE_SIZE && cs->cs_havecache)
77 return (cs->cs_cache[ch]);
78 return (cset_in_hard(cs, ch));
351 struct cset *cs;
353 cs = cset_alloc();
354 if (cs == NULL)
358 (void) cset_add(cs, str->lastch);
360 (void) cset_addclass(cs, wctype("rune"), true);
362 cset_invert(cs);
363 cset_cache(cs);
364 return (cs);