Home
last modified time | relevance | path

Searched refs:ptrend (Results 1 - 2 of 2) sorted by relevance

/third_party/pcre2/pcre2/src/
H A Dpcre2_compile.c1306 ptrend points to the end of the input string
1319 read_number(PCRE2_SPTR *ptrptr, PCRE2_SPTR ptrend, int32_t allow_sign, in read_number() argument
1329 if (allow_sign >= 0 && ptr < ptrend) in read_number()
1344 if (ptr >= ptrend || !IS_DIGIT(*ptr)) return FALSE; in read_number()
1345 while (ptr < ptrend && IS_DIGIT(*ptr)) in read_number()
1393 ptrend pointer to end of input
1405 read_repeat_counts(PCRE2_SPTR *ptrptr, PCRE2_SPTR ptrend, uint32_t *minp, in read_repeat_counts() argument
1420 if (p >= ptrend) return FALSE; in read_repeat_counts()
1435 if (!read_number(&p, ptrend, -1, MAX_REPEAT_COUNT, ERR5, &min, errorcodeptr)) in read_repeat_counts()
1447 if (!read_number(&p, ptrend, in read_repeat_counts()
1504 check_escape(PCRE2_SPTR *ptrptr, PCRE2_SPTR ptrend, uint32_t *chptr, int *errorcodeptr, uint32_t options, uint32_t extra_options, BOOL isclass, compile_block *cb) check_escape() argument
2295 check_posix_syntax(PCRE2_SPTR ptr, PCRE2_SPTR ptrend, PCRE2_SPTR *endptr) check_posix_syntax() argument
2381 read_name(PCRE2_SPTR *ptrptr, PCRE2_SPTR ptrend, BOOL utf, uint32_t terminator, PCRE2_SIZE *offsetptr, PCRE2_SPTR *nameptr, uint32_t *namelenptr, int *errorcodeptr, compile_block *cb) read_name() argument
2630 PCRE2_SPTR ptrend = cb->end_pattern; parse_regex() local
[all...]
H A Dpcre2_substitute.c71 ptrend end of the whole string
79 find_text_end(const pcre2_code *code, PCRE2_SPTR *ptrptr, PCRE2_SPTR ptrend, in find_text_end() argument
87 for (; ptr < ptrend; ptr++) in find_text_end()
91 if (ptr[0] == CHAR_BACKSLASH && ptr < ptrend - 1 && ptr[1] == CHAR_E) in find_text_end()
108 if (ptr < ptrend - 1 && ptr[1] == CHAR_LEFT_CURLY_BRACKET) in find_text_end()
121 if (ptr < ptrend - 1) switch (ptr[1]) in find_text_end()
132 erc = PRIV(check_escape)(&ptr, ptrend, &ch, &errorcode, in find_text_end()

Completed in 10 milliseconds