Searched refs:endp (Results 1 – 7 of 7) sorted by relevance
/PHP-8.3/sapi/phpdbg/ |
H A D | phpdbg_io.c | 85 const char *p = ptr, *endp = ptr + len; in phpdbg_output_pager() local 87 while ((p = memchr(p, '\n', endp - p))) { in phpdbg_output_pager() 94 if (memchr(p, '\n', endp - p)) { in phpdbg_output_pager()
|
/PHP-8.3/ext/pcre/pcre2lib/ |
H A D | pcre2_convert.c | 79 if (p >= endp) return PCRE2_ERROR_NOMEMORY; \ 132 PCRE2_UCHAR *endp = p + use_length - 1; /* Allow for trailing zero */ in convert_posix() local 217 if (p + clength > endp) return PCRE2_ERROR_NOMEMORY; in convert_posix() 244 if (p + 6 > endp) return PCRE2_ERROR_NOMEMORY; in convert_posix() 284 if (p + 1 > endp) return PCRE2_ERROR_NOMEMORY; in convert_posix() 314 if (p + 1 > endp) return PCRE2_ERROR_NOMEMORY; in convert_posix() 345 if (p + clength > endp) return PCRE2_ERROR_NOMEMORY; in convert_posix()
|
/PHP-8.3/ext/standard/ |
H A D | crypt_sha256.c | 357 char *endp; in php_sha256_crypt_r() local 358 zend_ulong srounds = ZEND_STRTOUL(num, &endp, 10); in php_sha256_crypt_r() 359 if (*endp == '$') { in php_sha256_crypt_r() 360 salt = endp + 1; in php_sha256_crypt_r()
|
H A D | crypt_sha512.c | 390 char *endp; in php_sha512_crypt_r() local 391 zend_ulong srounds = ZEND_STRTOUL(num, &endp, 10); in php_sha512_crypt_r() 393 if (*endp == '$') { in php_sha512_crypt_r() 394 salt = endp + 1; in php_sha512_crypt_r()
|
H A D | string.c | 840 if (p1 <= endp) { in php_explode() 2821 const char *endp; local 2849 endp = p + length; 2850 while (p != endp) { 2855 endp = p + length; 2856 while ((p = memchr(p, ch, endp-p))) { 2964 const char *endp = o + ZSTR_LEN(haystack); local 3040 const char *endp = o + ZSTR_LEN(haystack); local 3126 const char *endp = o + length; local 5368 const char *p, *endp; local [all …]
|
/PHP-8.3/ext/imap/ |
H A D | php_imap.c | 2272 const unsigned char *in, *inp, *endp; in PHP_FUNCTION() local 2294 for (endp = (inp = in) + inlen; inp < endp; inp++) { in PHP_FUNCTION() 2302 } else if (inp + 1 == endp) { in PHP_FUNCTION() 2351 for (endp = (inp = in) + inlen; inp < endp; inp++) { in PHP_FUNCTION() 2411 const unsigned char *in, *inp, *endp; in PHP_FUNCTION() local 2433 endp = (inp = in) + inlen; in PHP_FUNCTION() 2434 while (inp < endp) { in PHP_FUNCTION() 2467 endp = (inp = in) + inlen; in PHP_FUNCTION() 2468 while (inp < endp || state != ST_NORMAL) { in PHP_FUNCTION() 2477 } else if (inp == endp || !SPECIAL(*inp)) { in PHP_FUNCTION()
|
/PHP-8.3/ext/mbstring/ |
H A D | mbstring.c | 303 char *p1, *endp, *tmpstr; in php_mb_parse_encoding_list() local 314 endp = tmpstr + value_length; in php_mb_parse_encoding_list() 315 size = 1 + count_commas(tmpstr, endp) + MBSTRG(default_detect_order_list_size); in php_mb_parse_encoding_list() 322 char *comma = memchr(p1, ',', endp - p1); in php_mb_parse_encoding_list() 323 char *p = comma ? comma : endp; in php_mb_parse_encoding_list()
|
Completed in 85 milliseconds