Lines Matching refs:cbits
3311 set2 = (pcre_uint8 *)(cd->cbits + cbit_digit); in compare_opcodes()
3318 set2 = (pcre_uint8 *)(cd->cbits + cbit_space); in compare_opcodes()
3325 set2 = (pcre_uint8 *)(cd->cbits + cbit_word); in compare_opcodes()
4975 register const pcre_uint8 *cbits = cd->cbits; in compile_branch() local
5081 memcpy(pbits, cbits + posix_class_maps[posix_class], in compile_branch()
5092 for (c = 0; c < 32; c++) pbits[c] |= cbits[c + taboffset]; in compile_branch()
5094 for (c = 0; c < 32; c++) pbits[c] &= ~cbits[c + taboffset]; in compile_branch()
5154 register const pcre_uint8 *cbits = cd->cbits; in compile_branch() local
5175 for (c = 0; c < 32; c++) classbits[c] |= cbits[c+cbit_digit]; in compile_branch()
5180 for (c = 0; c < 32; c++) classbits[c] |= ~cbits[c+cbit_digit]; in compile_branch()
5184 for (c = 0; c < 32; c++) classbits[c] |= cbits[c+cbit_word]; in compile_branch()
5189 for (c = 0; c < 32; c++) classbits[c] |= ~cbits[c+cbit_word]; in compile_branch()
5200 for (c = 0; c < 32; c++) classbits[c] |= cbits[c+cbit_space]; in compile_branch()
5205 for (c = 0; c < 32; c++) classbits[c] |= ~cbits[c+cbit_space]; in compile_branch()
9072 cd->cbits = tables + cbits_offset; in pcre_compile2()