Home
last modified time | relevance | path

Searched refs:yield (Results 1 – 11 of 11) sorted by relevance

/PHP-5.4/ext/pcre/pcrelib/
H A Dpcre_maketables.c80 unsigned char *yield, *p; in pcre_maketables() local
84 yield = (unsigned char*)(PUBL(malloc))(tables_length); in pcre_maketables()
86 yield = (unsigned char*)malloc(tables_length); in pcre_maketables()
89 if (yield == NULL) return NULL; in pcre_maketables()
90 p = yield; in pcre_maketables()
153 return yield; in pcre_maketables()
H A Dpcre_get.c347 int yield; in pcre_copy_substring() local
351 yield = ovector[stringnumber+1] - ovector[stringnumber]; in pcre_copy_substring()
352 if (size < yield + 1) return PCRE_ERROR_NOMEMORY; in pcre_copy_substring()
353 memcpy(buffer, subject + ovector[stringnumber], IN_UCHARS(yield)); in pcre_copy_substring()
354 buffer[yield] = 0; in pcre_copy_substring()
355 return yield; in pcre_copy_substring()
556 int yield; in pcre_get_substring() local
561 yield = ovector[stringnumber+1] - ovector[stringnumber]; in pcre_get_substring()
562 substring = (pcre_uchar *)(PUBL(malloc))(IN_UCHARS(yield + 1)); in pcre_get_substring()
565 substring[yield] = 0; in pcre_get_substring()
[all …]
H A Dpcre_study.c800 int yield = SSB_DONE; in set_start_bits() local
984 yield = SSB_CONTINUE; in set_start_bits()
1418 return yield; in set_start_bits()
H A Dpcre_compile.c3961 register int yield = 0; in check_posix_name() local
3962 while (posix_name_lengths[yield] != 0) in check_posix_name()
3964 if (len == posix_name_lengths[yield] && in check_posix_name()
3965 STRNCMP_UC_C8(ptr, pn, (unsigned int)len) == 0) return yield; in check_posix_name()
3966 pn += posix_name_lengths[yield] + 1; in check_posix_name()
3967 yield++; in check_posix_name()
H A DChangeLog649 now prints out the matched string after a yield of 0 or 1.
1269 pcre_exec() was not big enough for this capture, the yield of the function
/PHP-5.4/Zend/tests/
H A Dbug30394.phpt2 Bug #30394 (Assignment operators yield wrong result with __get/__set)
/PHP-5.4/ext/standard/tests/array/
H A Dcompact_basic.phpt30 // cases which should not yield any output.
/PHP-5.4/ext/pcre/pcrelib/doc/
H A Dpcre.txt1951 ANYCRLF, and ANY yield the same values. However, the value for LF is
2314 PCRE_NEWLINE_CRLF, but other combinations may yield unused numbers and
2688 variable to receive the data. The yield of the function is zero for
3041 yield of the function is the new value. However, the value of the count
3653 use by callout functions that want to yield a distinctive error code.
3895 The yield of the function is the length of the string, not including
3912 pointer. The yield of the function is zero if all went well, or the
3960 piled pattern, and the second is the name. The yield of the function is
4043 matches, pcre_exec() will yield PCRE_ERROR_NOMATCH.
4182 On success, the yield of the function is a number greater than zero,
[all …]
/PHP-5.4/
H A Dphp.ini-development216 ; Turning on this setting and managing its maximum buffer size can yield some
H A Dphp.ini-production216 ; Turning on this setting and managing its maximum buffer size can yield some
H A DNEWS8517 - Fixed bug #30394 (Assignment operators yield wrong result with __get/__set).

Completed in 146 milliseconds