Home | History | Annotate | Download | only in Support

Lines Matching refs:cs

116 #define	CHadd(cs, c)	((cs)->ptr[(uch)(c)] |= (cs)->mask, (cs)->hash += (c))
117 #define CHsub(cs, c) ((cs)->ptr[(uch)(c)] &= ~(cs)->mask, (cs)->hash -= (c))
118 #define CHIN(cs, c) ((cs)->ptr[(uch)(c)] & (cs)->mask)
119 #define MCadd(p, cs, cp) mcadd(p, cs, cp) /* llvm_regcomp() internal fns */
120 #define MCsub(p, cs, cp) mcsub(p, cs, cp)
121 #define MCin(p, cs, cp) mcin(p, cs, cp)