Searched refs:subject_len (Results 1 – 6 of 6) sorted by relevance
/PHP-8.2/ext/standard/ |
H A D | mail.c | 249 size_t subject_len, i; in PHP_FUNCTION() local 255 Z_PARAM_PATH(subject, subject_len) in PHP_FUNCTION() 297 if (subject_len > 0) { in PHP_FUNCTION() 298 subject_r = estrndup(subject, subject_len); in PHP_FUNCTION() 299 for (; subject_len; subject_len--) { in PHP_FUNCTION() 300 if (!isspace((unsigned char) subject_r[subject_len - 1])) { in PHP_FUNCTION() 303 subject_r[subject_len - 1] = '\0'; in PHP_FUNCTION()
|
/PHP-8.2/ext/pcre/ |
H A D | php_pcre.c | 1190 size_t subject_len = ZSTR_LEN(subject_str); in php_pcre_match_impl() local 1227 if ((PCRE2_SIZE)-start_offset <= subject_len) { in php_pcre_match_impl() 1228 start_offset2 = subject_len + start_offset; in php_pcre_match_impl() 1236 if (start_offset2 > subject_len) { in php_pcre_match_impl() 1407 if (start_offset2 < subject_len) { in php_pcre_match_impl() 1578 const char *subject, size_t subject_len, in php_pcre_replace() argument 1788 if (start_offset < subject_len) { in php_pcre_replace_impl() 1806 alloc_len = result_len + subject_len - last_end_offset; in php_pcre_replace_impl() 1814 result_len += subject_len - last_end_offset; in php_pcre_replace_impl() 1997 if (start_offset < subject_len) { in php_pcre_replace_func_impl() [all …]
|
H A D | php_pcre.h | 28 …d_string *regex, zend_string *subject_str, const char *subject, size_t subject_len, zend_string *r… 56 …ache_entry *pce, zend_string *subject_str, const char *subject, size_t subject_len, zend_string *r…
|
/PHP-8.2/ext/openssl/ |
H A D | xp_ssl.c | 422 size_t suffix_len, subject_len; in php_openssl_matches_wildcard_name() local 440 subject_len = strlen(subjectname); in php_openssl_matches_wildcard_name() 441 if (suffix_len <= subject_len) { in php_openssl_matches_wildcard_name() 445 return strcasecmp(wildcard + 1, subjectname + subject_len - suffix_len) == 0 && in php_openssl_matches_wildcard_name() 446 memchr(subjectname + prefix_len, '.', subject_len - suffix_len - prefix_len) == NULL; in php_openssl_matches_wildcard_name()
|
/PHP-8.2/ext/mbstring/ |
H A D | php_mbregex.c | 709 size_t subject_len, in mb_regex_substitute() argument 824 if (regs->beg[no] >= 0 && regs->beg[no] < regs->end[no] && (size_t)regs->end[no] <= subject_len) { in mb_regex_substitute()
|
H A D | mbstring.c | 4008 size_t subject_len; in PHP_FUNCTION() local 4052 Z_PARAM_PATH(subject, subject_len) in PHP_FUNCTION() 4165 orig_str.len = subject_len; in PHP_FUNCTION()
|
Completed in 42 milliseconds