Lines Matching refs:PCRE2_SIZE

102   { s = ((PCRE2_SIZE)p[0] << 32) | (PCRE2_SIZE)p[1]; p += 2; }
104 { s = ((PCRE2_SIZE)p[1] << 32) | (PCRE2_SIZE)p[2]; p += 2; }
106 { s = ((PCRE2_SIZE)p[1] << 32) | (PCRE2_SIZE)p[2]; }
128 compile_block *, PCRE2_SIZE *);
927 PCRE2_SIZE offset; in show_parsed()
1194 PCRE2_SIZE* ref_count; in pcre2_code_copy()
1208 ref_count = (PCRE2_SIZE *)(code->tables + TABLES_LENGTH); in pcre2_code_copy()
1228 PCRE2_SIZE* ref_count; in pcre2_code_copy_with_tables()
1238 newtables = code->memctl.malloc(TABLES_LENGTH + sizeof(PCRE2_SIZE), in pcre2_code_copy_with_tables()
1246 ref_count = (PCRE2_SIZE *)(newtables + TABLES_LENGTH); in pcre2_code_copy_with_tables()
1263 PCRE2_SIZE* ref_count; in pcre2_code_free()
1276 ref_count = (PCRE2_SIZE *)(code->tables + TABLES_LENGTH); in pcre2_code_free()
2089 PCRE2_SIZE i, bot, top; in get_ucp()
2295 PCRE2_SIZE *offsetptr, PCRE2_SPTR *nameptr, uint32_t *namelenptr, in read_name()
2309 *offsetptr = (PCRE2_SIZE)(ptr - cb->start_pattern); in read_name()
2425 cb->start_pattern - (PCRE2_SIZE)previous_callout[1]); in manage_callouts()
2611 PCRE2_SIZE offset; in parse_regex()
2694 PCRE2_SIZE verbnamelength; in parse_regex()
2708 verbnamelength = (PCRE2_SIZE)(parsed_pattern - verblengthptr - 1); in parse_regex()
2956 offset = (PCRE2_SIZE)(ptr - cb->start_pattern - 1); in parse_regex()
3256 PUTOFFSET((PCRE2_SIZE)0, parsed_pattern); in parse_regex()
4132 offset = (PCRE2_SIZE)(ptr - cb->start_pattern); in parse_regex()
4187 PCRE2_SIZE calloutlength; in parse_regex()
4220 calloutlength = (PCRE2_SIZE)(ptr - startptr); in parse_regex()
4227 offset = (PCRE2_SIZE)(startptr - cb->start_pattern); in parse_regex()
4318 offset = (PCRE2_SIZE)(ptr - cb->start_pattern - 2); in parse_regex()
4494 offset = (PCRE2_SIZE)(ptr - cb->start_pattern - 2); in parse_regex()
4575 PRIV(strncmp)(name, ng->name, (PCRE2_SIZE)namelen) == 0) in parse_regex()
4725 cb->erroroffset = (PCRE2_SIZE)(ptr - cb->start_pattern); in parse_regex()
5305 compile_block *cb, PCRE2_SIZE *lengthptr) in compile_branch()
5322 PCRE2_SIZE offset = 0; in compile_branch()
5323 PCRE2_SIZE length_prevgroup = 0; in compile_branch()
5440 if (OFLOW_MAX - *lengthptr < (PCRE2_SIZE)(code - orig_code)) in compile_branch()
5445 *lengthptr += (PCRE2_SIZE)(code - orig_code); in compile_branch()
7025 PCRE2_SIZE delta = replicate*(1 + LINK_SIZE); in compile_branch()
7195 PCRE2_SIZE delta = (repeat_min - 1)*length_prevgroup; in compile_branch()
7247 PCRE2_SIZE delta = repeat_max*(length_prevgroup + 1 + 2 + 2*LINK_SIZE) - in compile_branch()
8005 branch_chain *bcptr, compile_block *cb, PCRE2_SIZE *lengthptr) in compile_regex()
8020 PCRE2_SIZE length; in compile_regex()
8184 PCRE2_SIZE branch_length = code - last_branch; in compile_regex()
8187 PCRE2_SIZE prev_length = GET(last_branch, 1); in compile_regex()
9049 PCRE2_SIZE offset; in get_branchlength()
9456 PCRE2_SIZE offset; in set_lookbehind_lengths()
9670 pcre2_compile(PCRE2_SPTR pattern, PCRE2_SIZE patlen, uint32_t options, in pcre2_compile()
9671 int *errorptr, PCRE2_SIZE *erroroffset, pcre2_compile_context *ccontext) in pcre2_compile()
9686 PCRE2_SIZE length = 1; /* Allow for final END opcode */ in pcre2_compile()
9687 PCRE2_SIZE usedlength; /* Actual length used */ in pcre2_compile()
9688 PCRE2_SIZE re_blocksize; /* Size of memory block */ in pcre2_compile()
9689 PCRE2_SIZE big32count = 0; /* 32-bit literals >= 0x80000000 */ in pcre2_compile()
9690 PCRE2_SIZE parsed_size_needed; /* Needed for parsed pattern */ in pcre2_compile()
10156 (PCRE2_SIZE)cb.names_found * (PCRE2_SIZE)cb.name_entry_size); in pcre2_compile()