Searched refs:start_offset (Results 1 - 6 of 6) sorted by relevance
| /PHP_5_3/ext/pcre/pcrelib/ |
| H A D | pcredemo.c | 299 int start_offset = ovector[1]; /* Start at end of previous match */ local 318 start_offset, /* starting offset in the subject */ 339 ovector[1] = start_offset + 1; /* Advance one byte */ 341 start_offset < subject_length - 1 && /* we are at CRLF, */ 342 subject[start_offset] == '\r' && 343 subject[start_offset + 1] == '\n')
|
| H A D | pcre_exec.c | 1551 mstart == md->start_subject + md->start_offset))) 2079 if (eptr != md->start_subject + md->start_offset) RRETURN(MATCH_NOMATCH); 6219 start_offset where to start in the subject string 6233 PCRE_SPTR subject, int length, int start_offset, int options, int *offsets, 6238 PCRE_SPTR16 subject, int length, int start_offset, int options, int *offsets, 6243 PCRE_SPTR32 subject, int length, int start_offset, int options, int *offsets, 6264 PCRE_PUCHAR start_match = (PCRE_PUCHAR)subject + start_offset; 6285 start_offset == -999) 6299 if (start_offset < 0 || start_offset > lengt 6232 pcre_exec(const pcre *argument_re, const pcre_extra *extra_data, PCRE_SPTR subject, int length, int start_offset, int options, int *offsets, int offsetcount) argument [all...] |
| /PHP_5_3/ext/imap/ |
| H A D | php_imap.c | 1333 long start_offset = 0; /* Start offset (not used) */ local 1347 0, regex_flags, start_offset TSRMLS_CC);
|
| /PHP_5_3/ext/pcre/ |
| H A D | php_pcre.h | 58 zval *subpats, int global, int use_flags, long flags, long start_offset TSRMLS_DC);
|
| H A D | php_pcre.c | 515 long start_offset = 0; /* Where the new search starts */ local 518 &subject, &subject_len, &subpats, &flags, &start_offset) == FAILURE) { 528 global, ZEND_NUM_ARGS() >= 4, flags, start_offset TSRMLS_CC); 534 zval *subpats, int global, int use_flags, long flags, long start_offset TSRMLS_DC) 583 if (start_offset < 0) { 584 start_offset = subject_len + start_offset; 585 if (start_offset < 0) { 586 start_offset = 0; 633 count = pcre_exec(pce->re, extra, subject, subject_len, start_offset, 995 int start_offset; /* Where the new search starts */ local 1466 int start_offset; /* Where the new search starts */ local [all...] |
| /PHP_5_3/ext/zlib/ |
| H A D | zlib.c | 743 int start_offset = ((do_start && ZLIBG(compression_coding) == CODING_GZIP) ? 10 : 0); local 747 if ((outlen + start_offset + end_offset) > *p_buffer_len) { 748 buffer = (Bytef *) emalloc(outlen + start_offset + end_offset); 753 ZLIBG(stream).next_out = buffer + start_offset; 760 if ((outlen + start_offset + end_offset) > *p_buffer_len) { 761 buffer = erealloc(buffer, outlen + start_offset + end_offset); 764 ZLIBG(stream).next_out = buffer + start_offset + prev_outlen; 772 buffer[outlen + start_offset - ZLIBG(stream).avail_out] = '\0';
|
Completed in 23 milliseconds