Lines Matching refs:match_len
881 int match_len; /* Length of the match */ in preg_do_eval() local
908 match_len = offsets[(backref<<1)+1] - offsets[backref<<1]; in preg_do_eval()
909 if (match_len) { in preg_do_eval()
910 esc_match = php_addslashes_ex(match, match_len, &esc_match_len, 0, 1 TSRMLS_CC); in preg_do_eval()
992 int match_len; /* Length of the current match */ in php_pcre_replace_impl() local
1147 match_len = offsets[(backref<<1)+1] - offsets[backref<<1]; in php_pcre_replace_impl()
1148 memcpy(walkbuf, subject + offsets[backref<<1], match_len); in php_pcre_replace_impl()
1149 walkbuf += match_len; in php_pcre_replace_impl()
1545 int i, match_len; in php_pcre_split_impl() local
1547 match_len = offsets[(i<<1)+1] - offsets[i<<1]; in php_pcre_split_impl()
1549 if (!no_empty || match_len > 0) { in php_pcre_split_impl()
1551 add_offset_pair(return_value, &subject[offsets[i<<1]], match_len, offsets[i<<1], NULL); in php_pcre_split_impl()
1555 match_len, 1); in php_pcre_split_impl()