Searched refs:cbit_word (Results 1 – 5 of 5) sorted by relevance
/PHP-5.6/ext/pcre/pcrelib/ |
H A D | pcre_maketables.c | 119 if (isalnum(i)) p[cbit_word + i/8] |= 1 << (i&7); in pcre_maketables() 120 if (i == '_') p[cbit_word + i/8] |= 1 << (i&7); in pcre_maketables()
|
H A D | pcre_study.c | 1190 set_nottype_bits(start_bits, cbit_word, table_limit, cd); in set_start_bits() 1195 set_type_bits(start_bits, cbit_word, table_limit, cd); in set_start_bits() 1299 set_nottype_bits(start_bits, cbit_word, table_limit, cd); in set_start_bits() 1303 set_type_bits(start_bits, cbit_word, table_limit, cd); in set_start_bits()
|
H A D | pcre_compile.c | 314 cbit_word, cbit_digit, -2, /* alpha */ 317 cbit_word, -1, 2, /* alnum - word without underscore */ 326 cbit_word, -1, 0, /* word - a Perl extension */ 3327 set2 = (pcre_uint8 *)(cd->cbits + cbit_word); in compare_opcodes() 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()
|
H A D | pcre_internal.h | 2605 #define cbit_word 160 /* [:word:] or \w */ macro
|
H A D | pcre_jit_compile.c | 3403 …mmon->utf && !is_char7_bitset((const pcre_uint8 *)common->ctypes - cbit_length + cbit_word, FALSE)) in scan_prefix() 5352 …if (common->utf && is_char7_bitset((const pcre_uint8*)common->ctypes - cbit_length + cbit_word, FA… in compile_char1_matchingpath()
|
Completed in 50 milliseconds