Searched refs:php_memnstr (Results 1 – 11 of 11) sorted by relevance
/PHP-7.2/main/ |
H A D | getopt.c | 103 if ((pos = php_memnstr(&argv[*optind][arg_start], "=", 1, argv[*optind]+arg_end)) != NULL) { in php_getopt()
|
H A D | php.h | 397 #define php_memnstr zend_memnstr macro
|
/PHP-7.2/ext/intl/grapheme/ |
H A D | grapheme_string.c | 143 found = php_memnstr(haystack + noffset, needle, needle_len, haystack + haystack_len); in PHP_FUNCTION() 210 found = php_memnstr(haystack_dup + noffset, needle_dup, needle_len, haystack_dup + haystack_len); in PHP_FUNCTION() 619 found = php_memnstr(haystack, needle, needle_len, haystack + haystack_len); in strstr_common_handler()
|
/PHP-7.2/ext/standard/ |
H A D | string.c | 1109 p2 = (char *) php_memnstr(p1, ZSTR_VAL(delim), ZSTR_LEN(delim), endp); in php_explode() 1147 p2 = (char *) php_memnstr(p1, ZSTR_VAL(delim), ZSTR_LEN(delim), endp); in php_explode_negative_limit() 1770 return (char*)php_memnstr(s, t, t_len, s + s_len); 1977 found = (char*)php_memnstr(ZSTR_VAL(haystack) + offset, 1987 found = (char*)php_memnstr(ZSTR_VAL(haystack) + offset, 2038 found = (char*)php_memnstr(ZSTR_VAL(haystack_dup) + offset, 2047 found = (char*)php_memnstr(ZSTR_VAL(haystack_dup) + offset, 3212 while ((o = (char*)php_memnstr(o, n, needle_len, endp))) { 3299 while ((o = (char*)php_memnstr(o, n, ZSTR_LEN(lc_needle), endp))) { 3382 while ((o = (char*)php_memnstr(o, n, needle_len, endp))) { [all …]
|
H A D | url_scanner_ex.c | 1302 start = (char *) php_memnstr(ZSTR_VAL(url_state->url_app.s), in php_url_scanner_reset_var_impl() 1340 start = (char *) php_memnstr(ZSTR_VAL(url_state->form_app.s), in php_url_scanner_reset_var_impl()
|
H A D | url_scanner_ex.re | 887 start = (char *) php_memnstr(ZSTR_VAL(url_state->url_app.s), 925 start = (char *) php_memnstr(ZSTR_VAL(url_state->form_app.s),
|
H A D | file.c | 610 if (php_memnstr(filename, "://", sizeof("://") - 1, filename + filename_len)) { in PHP_FUNCTION()
|
/PHP-7.2/ext/wddx/ |
H A D | wddx.c | 825 while ((p2 = php_memnstr(p1, ",", sizeof(",")-1, endp)) != NULL) { in php_wddx_push_element()
|
/PHP-7.2/ext/imap/ |
H A D | php_imap.c | 4290 …if ((charset_token = (zend_long)php_memnstr(&string[offset], "=?", 2, string + end))) { /* Is ther… in PHP_FUNCTION() 4301 …if ((encoding_token = (zend_long)php_memnstr(&string[charset_token+2], "?", 1, string+end))) { /*… in PHP_FUNCTION() 4303 …if ((end_token = (zend_long)php_memnstr(&string[encoding_token+3], "?=", 2, string+end))) { /* Fin… in PHP_FUNCTION()
|
/PHP-7.2/main/streams/ |
H A D | streams.c | 976 return php_memnstr((char*)&stream->readbuf[stream->readpos + skiplen], in _php_stream_search_delim()
|
/PHP-7.2/ext/mbstring/ |
H A D | mbstring.c | 739 while ((p2 = (char*)php_memnstr(p1, ",", 1, endp)) != NULL) { in php_mb_parse_encoding_list() 751 p2 = p = (char*)php_memnstr(p1, ",", 1, endp); in php_mb_parse_encoding_list()
|
Completed in 108 milliseconds