Lines Matching refs:cbits
3313 set2 = (pcre_uint8 *)(cd->cbits + cbit_digit); in compare_opcodes()
3320 set2 = (pcre_uint8 *)(cd->cbits + cbit_space); in compare_opcodes()
3327 set2 = (pcre_uint8 *)(cd->cbits + cbit_word); in compare_opcodes()
4977 register const pcre_uint8 *cbits = cd->cbits; in compile_branch() local
5083 memcpy(pbits, cbits + posix_class_maps[posix_class], in compile_branch()
5094 for (c = 0; c < 32; c++) pbits[c] |= cbits[c + taboffset]; in compile_branch()
5096 for (c = 0; c < 32; c++) pbits[c] &= ~cbits[c + taboffset]; in compile_branch()
5156 register const pcre_uint8 *cbits = cd->cbits; in compile_branch() local
5177 for (c = 0; c < 32; c++) classbits[c] |= cbits[c+cbit_digit]; in compile_branch()
5182 for (c = 0; c < 32; c++) classbits[c] |= ~cbits[c+cbit_digit]; in compile_branch()
5186 for (c = 0; c < 32; c++) classbits[c] |= cbits[c+cbit_word]; in compile_branch()
5191 for (c = 0; c < 32; c++) classbits[c] |= ~cbits[c+cbit_word]; in compile_branch()
5202 for (c = 0; c < 32; c++) classbits[c] |= cbits[c+cbit_space]; in compile_branch()
5207 for (c = 0; c < 32; c++) classbits[c] |= ~cbits[c+cbit_space]; in compile_branch()
9060 cd->cbits = tables + cbits_offset; in pcre_compile2()