Home
last modified time | relevance | path

Searched refs:high (Results 1 – 25 of 69) sorted by path

123

/PHP-5.5/
H A DNEWS2803 . Fixed bug #62432 (ReflectionMethod random corrupt memory on high
4343 . Fixed bug #54055 (buffer overrun with high values for precision ini
8079 high-ascii chars). (Ilia)
8501 - Fixed bug #37569 (WDDX incorrectly encodes high-ascii characters). (Ilia)
9005 day/night at high latitudes). (Derick)
H A DREADME.MAILINGLIST_RULES70 4. Do not high-jack threads, by bringing up entirely new topics. Please
H A Dconfigure.in1495 dnl Selectively disable optimization due to high RAM usage during
/PHP-5.5/Zend/RFCs/
H A D001.txt119 after a very small amount of modifications would be high.
/PHP-5.5/Zend/
H A DZEND_CHANGES20 high.
/PHP-5.5/ext/date/tests/
H A Ddate_sunrise_variation9.phpt2 Test date_sunrise() function : usage variation - Passing high positive and negative float values t…
H A Ddate_sunset_variation9.phpt2 Test date_sunset() function : usage variation - Passing high positive and negative float values to …
H A Dgetdate_variation7.phpt2 Test getdate() function : usage variation - Passing high positive and negative float values to time…
H A Dgmdate_variation14.phpt2 Test gmdate() function : usage variation - Passing high positive and negetive float values to times…
/PHP-5.5/ext/dba/
H A DREADME20 toolkit that provides high-performance built-in database support
/PHP-5.5/ext/fileinfo/tests/
H A Dmagic1478 # Container format for high-end audio purposes.
3070 >>(0x08.l) uleshort =3000 with high compression
3071 >>(0x08.l) uleshort =4000 with extra high compression
3079 >>6 uleshort =3000 with high compression
3080 >>6 uleshort =4000 with extra high compression
4926 # skip many RAR by test for low byte 0 ,high byte 0|2|even of block size, 0|a|e|d7 , 0|64h
7401 # 11111001 Double density 3 1/2 floppy disk, high density 5 1/4
8105 >>11 byte x %d chars high
10137 >3 byte 2 \b, high precision
12966 # Hmm, not a PE but the relocation table is too high for a traditional DOS exe,
[all …]
/PHP-5.5/ext/filter/
H A Dsanitizing_filters.c67 …code_url(zval *value, const unsigned char* chars, const int char_len, int high, int low, int encod… in php_filter_encode_url() argument
/PHP-5.5/ext/gd/libgd/
H A Dgd_interpolation.c76 #define CLAMP(x, low, high) (((x) > (high)) ? (high) : (((x) < (low)) ? (low) : (x))) argument
/PHP-5.5/ext/mbstring/oniguruma/
H A DHISTORY1638 2003/03/17: [bug] mistake(high -> to) in add_wc_range_to_buf().
H A Dregcomp.c5607 OnigCodePoint low, high, x; in onig_is_in_code_range() local
5613 for (low = 0, high = n; low < high; ) { in onig_is_in_code_range()
5614 x = (low + high) >> 1; in onig_is_in_code_range()
5618 high = x; in onig_is_in_code_range()
H A Dregexec.c3226 *high = p - reg->dmin; in forward_search_range()
3247 UChar** low, UChar** high) in backward_search_range() argument
3330 *high = p - reg->dmin; in backward_search_range()
3331 *high = onigenc_get_right_adjust_char_head(reg->enc, adjrange, *high); in backward_search_range()
3336 (int )(*low - str), (int )(*high - str)); in backward_search_range()
3582 UChar *sch_range, *low, *high, *low_prev; in onig_search() local
3605 while (s <= high) { in onig_search()
3663 &low, &high) <= 0) in onig_search()
3666 if (s > high) in onig_search()
3667 s = high; in onig_search()
[all …]
H A Dregparse.c1692 int low, high, bound, x; in add_code_range_to_buf() local
1721 for (high = low, bound = n; high < bound; ) { in add_code_range_to_buf()
1722 x = (high + bound) >> 1; in add_code_range_to_buf()
1724 high = x + 1; in add_code_range_to_buf()
1729 inc_n = low + 1 - high; in add_code_range_to_buf()
1736 if (to < data[(high - 1)*2 + 1]) in add_code_range_to_buf()
1737 to = data[(high - 1)*2 + 1]; in add_code_range_to_buf()
1740 if (inc_n != 0 && (OnigCodePoint )high < n) { in add_code_range_to_buf()
1741 int from_pos = SIZE_CODE_POINT * (1 + high * 2); in add_code_range_to_buf()
1743 int size = (n - high) * 2 * SIZE_CODE_POINT; in add_code_range_to_buf()
/PHP-5.5/ext/mbstring/oniguruma/enc/
H A Dutf16_be.c105 unsigned int plane, high; in utf16be_code_to_mbc() local
109 high = (code & 0xff00) >> 8; in utf16be_code_to_mbc()
110 *p++ = ((plane & 0x03) << 6) + (high >> 2); in utf16be_code_to_mbc()
111 *p++ = (high & 0x03) + 0xdc; in utf16be_code_to_mbc()
H A Dutf16_le.c107 unsigned int plane, high; in utf16le_code_to_mbc() local
110 high = (code & 0xff00) >> 8; in utf16le_code_to_mbc()
112 *p++ = ((plane & 0x03) << 6) + (high >> 2); in utf16le_code_to_mbc()
115 *p = (high & 0x03) + 0xdc; in utf16le_code_to_mbc()
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_stmt_bind_param_many_columns.phpt2 mysqli_stmt_bind_param() - Binding with very high number of columns
/PHP-5.5/ext/pcre/pcrelib/
H A DChangeLog1042 caselessly. Previously, the high codepoint matched the low one, but not
3051 11. Because Perl interprets \Q...\E at a high level, and ignores orphan \E
3454 and pcrecpp.cc because they annoy compilers at high warning levels.
3661 because it contains high-valued characters or Unicode property items, e.g.
H A DNEWS195 that are reserved for coding high values in UTF-16.)
/PHP-5.5/ext/pcre/pcrelib/doc/
H A Dpcre.txt474 PCRE_UTF16_ERR2 Invalid low surrogate follows high surrogate
5240 ASCII characters by default, these always match certain high-valued
/PHP-5.5/ext/pdo/tests/
H A Dbug_36798.phpt2 PDO Common: Bug #36798 (Error parsing named parameters with queries containing high-ascii chars)
/PHP-5.5/ext/posix/tests/
H A Dposix_getgrgid_wrongparams.phpt16 $gid = PHP_INT_MAX; // obscene high gid

Completed in 167 milliseconds

123