Lines Matching refs:cbits
4400 register const uint8_t *cbits = cb->cbits; in compile_branch() local
4505 memcpy(pbits, cbits + posix_class_maps[posix_class], in compile_branch()
4516 for (c = 0; c < 32; c++) pbits[c] |= cbits[(int)c + taboffset]; in compile_branch()
4518 for (c = 0; c < 32; c++) pbits[c] &= ~cbits[(int)c + taboffset]; in compile_branch()
4582 register const uint8_t *cbits = cb->cbits; in compile_branch() local
4604 for (c = 0; c < 32; c++) classbits[c] |= cbits[c+cbit_digit]; in compile_branch()
4609 for (c = 0; c < 32; c++) classbits[c] |= ~cbits[c+cbit_digit]; in compile_branch()
4613 for (c = 0; c < 32; c++) classbits[c] |= cbits[c+cbit_word]; in compile_branch()
4618 for (c = 0; c < 32; c++) classbits[c] |= ~cbits[c+cbit_word]; in compile_branch()
4629 for (c = 0; c < 32; c++) classbits[c] |= cbits[c+cbit_space]; in compile_branch()
4634 for (c = 0; c < 32; c++) classbits[c] |= ~cbits[c+cbit_space]; in compile_branch()
8427 cb.cbits = tables + cbits_offset; /* tables */ in pcre2_compile()