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 *);
929 PCRE2_SIZE offset; in show_parsed()
1196 PCRE2_SIZE* ref_count; in pcre2_code_copy()
1210 ref_count = (PCRE2_SIZE *)(code->tables + TABLES_LENGTH); in pcre2_code_copy()
1230 PCRE2_SIZE* ref_count; in pcre2_code_copy_with_tables()
1240 newtables = code->memctl.malloc(TABLES_LENGTH + sizeof(PCRE2_SIZE), in pcre2_code_copy_with_tables()
1248 ref_count = (PCRE2_SIZE *)(newtables + TABLES_LENGTH); in pcre2_code_copy_with_tables()
1265 PCRE2_SIZE* ref_count; in pcre2_code_free()
1280 ref_count = (PCRE2_SIZE *)(code->tables + TABLES_LENGTH); in pcre2_code_free()
2093 PCRE2_SIZE i, bot, top; in get_ucp()
2382 PCRE2_SIZE *offsetptr, PCRE2_SPTR *nameptr, uint32_t *namelenptr, in read_name()
2396 *offsetptr = (PCRE2_SIZE)(ptr - cb->start_pattern); in read_name()
2512 cb->start_pattern - (PCRE2_SIZE)previous_callout[1]); in manage_callouts()
2698 PCRE2_SIZE offset; in parse_regex()
2781 PCRE2_SIZE verbnamelength; in parse_regex()
2795 verbnamelength = (PCRE2_SIZE)(parsed_pattern - verblengthptr - 1); in parse_regex()
3043 offset = (PCRE2_SIZE)(ptr - cb->start_pattern - 1); in parse_regex()
3343 PUTOFFSET((PCRE2_SIZE)0, parsed_pattern); in parse_regex()
4219 offset = (PCRE2_SIZE)(ptr - cb->start_pattern); in parse_regex()
4274 PCRE2_SIZE calloutlength; in parse_regex()
4307 calloutlength = (PCRE2_SIZE)(ptr - startptr); in parse_regex()
4314 offset = (PCRE2_SIZE)(startptr - cb->start_pattern); in parse_regex()
4405 offset = (PCRE2_SIZE)(ptr - cb->start_pattern - 2); in parse_regex()
4581 offset = (PCRE2_SIZE)(ptr - cb->start_pattern - 2); in parse_regex()
4662 PRIV(strncmp)(name, ng->name, (PCRE2_SIZE)namelen) == 0) in parse_regex()
4812 cb->erroroffset = (PCRE2_SIZE)(ptr - cb->start_pattern); in parse_regex()
5392 compile_block *cb, PCRE2_SIZE *lengthptr) in compile_branch()
5409 PCRE2_SIZE offset = 0; in compile_branch()
5410 PCRE2_SIZE length_prevgroup = 0; in compile_branch()
5526 if (OFLOW_MAX - *lengthptr < (PCRE2_SIZE)(code - orig_code)) in compile_branch()
5531 *lengthptr += (PCRE2_SIZE)(code - orig_code); in compile_branch()
7120 PCRE2_SIZE delta = replicate*(1 + LINK_SIZE); in compile_branch()
7290 PCRE2_SIZE delta = (repeat_min - 1)*length_prevgroup; in compile_branch()
7342 PCRE2_SIZE delta = repeat_max*(length_prevgroup + 1 + 2 + 2*LINK_SIZE) - in compile_branch()
8100 branch_chain *bcptr, compile_block *cb, PCRE2_SIZE *lengthptr) in compile_regex()
8115 PCRE2_SIZE length; in compile_regex()
8279 PCRE2_SIZE branch_length = code - last_branch; in compile_regex()
8282 PCRE2_SIZE prev_length = GET(last_branch, 1); in compile_regex()
9143 PCRE2_SIZE offset; in get_branchlength()
9550 PCRE2_SIZE offset; in set_lookbehind_lengths()
9764 pcre2_compile(PCRE2_SPTR pattern, PCRE2_SIZE patlen, uint32_t options, in pcre2_compile()
9765 int *errorptr, PCRE2_SIZE *erroroffset, pcre2_compile_context *ccontext) in pcre2_compile()
9780 PCRE2_SIZE length = 1; /* Allow for final END opcode */ in pcre2_compile()
9781 PCRE2_SIZE usedlength; /* Actual length used */ in pcre2_compile()
9782 PCRE2_SIZE re_blocksize; /* Size of memory block */ in pcre2_compile()
9783 PCRE2_SIZE big32count = 0; /* 32-bit literals >= 0x80000000 */ in pcre2_compile()
9784 PCRE2_SIZE parsed_size_needed; /* Needed for parsed pattern */ in pcre2_compile()
10250 (PCRE2_SIZE)cb.names_found * (PCRE2_SIZE)cb.name_entry_size); in pcre2_compile()