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 open_capitem *, compile_block *, PCRE2_SIZE *);
935 PCRE2_SIZE offset; in show_parsed()
1202 PCRE2_SIZE* ref_count; in pcre2_code_copy()
1216 ref_count = (PCRE2_SIZE *)(code->tables + TABLES_LENGTH); in pcre2_code_copy()
1236 PCRE2_SIZE* ref_count; in pcre2_code_copy_with_tables()
1246 newtables = code->memctl.malloc(TABLES_LENGTH + sizeof(PCRE2_SIZE), in pcre2_code_copy_with_tables()
1254 ref_count = (PCRE2_SIZE *)(newtables + TABLES_LENGTH); in pcre2_code_copy_with_tables()
1271 PCRE2_SIZE* ref_count; in pcre2_code_free()
1286 ref_count = (PCRE2_SIZE *)(code->tables + TABLES_LENGTH); in pcre2_code_free()
2171 PCRE2_SIZE i, bot, top; in get_ucp()
2465 PCRE2_SIZE *offsetptr, PCRE2_SPTR *nameptr, uint32_t *namelenptr, in read_name()
2483 *offsetptr = (PCRE2_SIZE)(ptr - cb->start_pattern); in read_name()
2601 cb->start_pattern - (PCRE2_SIZE)previous_callout[1]); in manage_callouts()
2874 PCRE2_SIZE offset; in parse_regex()
2968 PCRE2_SIZE verbnamelength; in parse_regex()
2982 verbnamelength = (PCRE2_SIZE)(parsed_pattern - verblengthptr - 1); in parse_regex()
3237 offset = (PCRE2_SIZE)(ptr - cb->start_pattern - 1); in parse_regex()
3522 PUTOFFSET((PCRE2_SIZE)0, parsed_pattern); in parse_regex()
4430 offset = (PCRE2_SIZE)(ptr - cb->start_pattern); in parse_regex()
4485 PCRE2_SIZE calloutlength; in parse_regex()
4518 calloutlength = (PCRE2_SIZE)(ptr - startptr); in parse_regex()
4525 offset = (PCRE2_SIZE)(startptr - cb->start_pattern); in parse_regex()
4616 offset = (PCRE2_SIZE)(ptr - cb->start_pattern - 2); in parse_regex()
4792 offset = (PCRE2_SIZE)(ptr - cb->start_pattern - 2); in parse_regex()
4874 PRIV(strncmp)(name, ng->name, (PCRE2_SIZE)namelen) == 0) in parse_regex()
5025 cb->erroroffset = (PCRE2_SIZE)(ptr - cb->start_pattern); in parse_regex()
5640 compile_block *cb, PCRE2_SIZE *lengthptr) in compile_branch()
5658 PCRE2_SIZE offset = 0; in compile_branch()
5659 PCRE2_SIZE length_prevgroup = 0; in compile_branch()
5775 if (OFLOW_MAX - *lengthptr < (PCRE2_SIZE)(code - orig_code)) in compile_branch()
5780 *lengthptr += (PCRE2_SIZE)(code - orig_code); in compile_branch()
7385 PCRE2_SIZE delta; in compile_branch()
7552 PCRE2_SIZE delta; in compile_branch()
7602 PCRE2_SIZE delta; in compile_branch()
8382 compile_block *cb, PCRE2_SIZE *lengthptr) in compile_regex()
8398 PCRE2_SIZE length; in compile_regex()
8580 PCRE2_SIZE branch_length = code - last_branch; in compile_regex()
8583 PCRE2_SIZE prev_length = GET(last_branch, 1); in compile_regex()
9452 PCRE2_SIZE offset; in get_branchlength()
9876 PCRE2_SIZE offset; in set_lookbehind_lengths()
10126 pcre2_compile(PCRE2_SPTR pattern, PCRE2_SIZE patlen, uint32_t options, in pcre2_compile()
10127 int *errorptr, PCRE2_SIZE *erroroffset, pcre2_compile_context *ccontext) in pcre2_compile()
10142 PCRE2_SIZE length = 1; /* Allow for final END opcode */ in pcre2_compile()
10143 PCRE2_SIZE usedlength; /* Actual length used */ in pcre2_compile()
10144 PCRE2_SIZE re_blocksize; /* Size of memory block */ in pcre2_compile()
10145 PCRE2_SIZE big32count = 0; /* 32-bit literals >= 0x80000000 */ in pcre2_compile()
10146 PCRE2_SIZE parsed_size_needed; /* Needed for parsed pattern */ in pcre2_compile()
10613 (PCRE2_SIZE)cb.names_found * (PCRE2_SIZE)cb.name_entry_size); in pcre2_compile()