/PHP-5.6/ext/standard/tests/array/ |
H A D | range_variation.phpt | 26 *** Testing range() with various low and high values *** 67 -- creating an array with low = 'ABCD' and high = '' -- 73 -- creating an array with low = 'ABCD' and high = '' -- 371 -- creating an array with low = '' and high = '' -- 377 -- creating an array with low = '' and high = '' -- 383 -- creating an array with low = '' and high = '' -- 437 -- creating an array with low = '' and high = '' -- 443 -- creating an array with low = '' and high = '' -- 449 -- creating an array with low = '' and high = '' -- 503 -- creating an array with low = '' and high = '' -- [all …]
|
H A D | range_errors.phpt | 10 echo "\n-- Testing ( (low < high) && (step = 0) ) --"; 14 echo "\n\n-- Testing ( (low > high) && (step = 0) ) --"; 18 echo "\n\n-- Testing ( (low < high) && (high-low < step) ) --"; 21 echo "\n\n-- Testing ( (low > high) && (low-high < step) ) --"; 43 -- Testing ( (low < high) && (step = 0) ) -- 51 -- Testing ( (low > high) && (step = 0) ) -- 59 -- Testing ( (low < high) && (high-low < step) ) -- 64 -- Testing ( (low > high) && (low-high < step) ) --
|
H A D | range.phpt | 11 echo "-- An array of elements from low to high --\n"; 13 echo "\n-- An array of elements from high to low --\n"; 17 echo "-- An array of elements from low to high --\n"; 19 echo "\n-- An array of elements from high to low --\n"; 23 echo "-- An array of elements from low to high --\n"; 55 -- An array of elements from low to high -- 79 -- An array of elements from high to low -- 104 -- An array of elements from low to high -- 128 -- An array of elements from high to low -- 153 -- An array of elements from low to high -- [all …]
|
H A D | bug41121.phpt | 21 // low > high
|
/PHP-5.6/win32/ |
H A D | flock.c | 58 DWORD low = 1, high = 0; in flock() local 64 UnlockFileEx(hdl, 0, low, high, &offset); in flock() 69 0, low, high, &offset)) in flock() 74 0, low, high, &offset)) in flock()
|
/PHP-5.6/ext/standard/ |
H A D | flock_compat.c | 125 DWORD low = 1, high = 0; 135 UnlockFileEx(hdl, 0, low, high, &offset); 140 0, low, high, &offset)) 145 0, low, high, &offset))
|
H A D | array.c | 1626 unsigned char *low, *high; in PHP_FUNCTION() local 1644 unsigned char ch = *low; in PHP_FUNCTION() 1657 unsigned char ch = *low; in PHP_FUNCTION() 1674 double low, high, value; in PHP_FUNCTION() local 1679 low = Z_DVAL_P(zlow); in PHP_FUNCTION() 1689 for (value = low; value >= (high - DOUBLE_DRIFT_FIX); value = low - (++i * step)) { in PHP_FUNCTION() 1698 for (value = low; value <= (high + DOUBLE_DRIFT_FIX); value = low + (++i * step)) { in PHP_FUNCTION() 1705 double low, high; in PHP_FUNCTION() local 1710 low = Z_DVAL_P(zlow); in PHP_FUNCTION() 1719 for (; low >= high; low -= lstep) { in PHP_FUNCTION() [all …]
|
H A D | basic_functions.c | 353 ZEND_ARG_INFO(0, low)
|
/PHP-5.6/ext/xmlrpc/libxmlrpc/ |
H A D | queue.c | 721 if(low < high) { in QuickSort() 722 i = low; in QuickSort() 725 key = list[ low ]; in QuickSort() 744 temp = list[low]; in QuickSort() 745 list[low] = list[j]; in QuickSort() 748 QuickSort(list, low, j-1, Comp); in QuickSort() 856 int low, mid, hi, val; in Q_BSearch() local 858 low = 0; in Q_BSearch() 861 while(low <= hi) { in Q_BSearch() 862 mid = (low + hi) / 2; in Q_BSearch() [all …]
|
/PHP-5.6/Zend/tests/ |
H A D | dval_to_lval_64.phpt | 2 zend_dval_to_lval preserves low bits (64 bit long)
|
H A D | dval_to_lval_32.phpt | 2 zend_dval_to_lval preserves low bits (32 bit long)
|
/PHP-5.6/ext/openssl/tests/ |
H A D | bug46127.phpt | 7 if (OPENSSL_VERSION_NUMBER < 0x009070af) die("skip openssl version too low");
|
H A D | bug48182.phpt | 7 if (OPENSSL_VERSION_NUMBER < 0x009070af) die("skip openssl version too low");
|
/PHP-5.6/ext/posix/tests/ |
H A D | posix_kill_basic.phpt | 15 // for now start at a low pid and find first pid which does not exist.
|
/PHP-5.6/ext/mbstring/oniguruma/ |
H A D | regexec.c | 3196 *low = p; in forward_search_range() 3198 if (*low > s) in forward_search_range() 3207 *low = p - reg->dmax; in forward_search_range() 3209 *low = (UChar* )str; in forward_search_range() 3214 if (*low > s) { in forward_search_range() 3251 UChar** low, UChar** high) in backward_search_range() argument 3333 *low = p - reg->dmax; in backward_search_range() 3605 if (s < low) { in onig_search() 3606 s = low; in onig_search() 3667 &low, &high) <= 0) in onig_search() [all …]
|
H A D | regparse.c | 1703 int low, high, bound, x; in add_code_range_to_buf() local 1724 for (low = 0, bound = n; low < bound; ) { in add_code_range_to_buf() 1725 x = (low + bound) >> 1; in add_code_range_to_buf() 1727 low = x + 1; in add_code_range_to_buf() 1740 inc_n = low + 1 - high; in add_code_range_to_buf() 1745 if (from > data[low*2]) in add_code_range_to_buf() 1746 from = data[low*2]; in add_code_range_to_buf() 2323 int low, up, syn_allow, non_low = 0; in fetch_range_quantifier() local 2348 if (low > ONIG_MAX_REPEAT_NUM) in fetch_range_quantifier() 2354 low = 0; in fetch_range_quantifier() [all …]
|
H A D | regint.h | 357 #define BBUF_EXPAND(buf,low) do{\ argument 358 do { (buf)->alloc *= 2; } while ((buf)->alloc < (unsigned int )low);\
|
H A D | regcomp.c | 5606 OnigCodePoint low, high, x; in onig_is_in_code_range() local 5612 for (low = 0, high = n; low < high; ) { in onig_is_in_code_range() 5613 x = (low + high) >> 1; in onig_is_in_code_range() 5615 low = x + 1; in onig_is_in_code_range() 5620 return ((low < n && code >= data[low * 2]) ? 1 : 0); in onig_is_in_code_range()
|
/PHP-5.6/ext/odbc/tests/ |
H A D | bug60616.phpt | 20 ini_set("odbc.defaultlrl", 4); // Set artifically low
|
/PHP-5.6/ext/filter/ |
H A D | sanitizing_filters.c | 67 …url(zval *value, const unsigned char* chars, const int char_len, int high, int low, int encode_nul) in php_filter_encode_url() argument
|
/PHP-5.6/ext/mbstring/oniguruma/doc/ |
H A D | RE | 154 ..&&.. intersection (low precedence at the next of ^)
|
/PHP-5.6/ext/gd/libgd/ |
H A D | gd_interpolation.c | 78 #define CLAMP(x, low, high) (((x) > (high)) ? (high) : (((x) < (low)) ? (low) : (x))) argument
|
/PHP-5.6/ext/pcre/pcrelib/doc/ |
H A D | pcre.txt | 473 PCRE_UTF16_ERR1 Missing low surrogate at end of string 474 PCRE_UTF16_ERR2 Invalid low surrogate follows high surrogate 475 PCRE_UTF16_ERR3 Isolated low surrogate 5212 trolled by PCRE's low-valued character tables, and may vary if locale- 8273 are all low-valued characters, unless the PCRE_UCP option is set.
|
/PHP-5.6/ext/pcre/pcrelib/ |
H A D | ChangeLog | 1042 caselessly. Previously, the high codepoint matched the low one, but not 3076 the "low surrogate" sequence 0xD800 to 0xDFFF. Previously, PCRE allowed the 3237 concerned the use of low-level troff macros .br and .in. I have therefore
|
/PHP-5.6/ext/fileinfo/tests/ |
H A D | magic | 1851 # there were many low-quality sigs, i.e. easy to trigger false positives. 5190 # skip many JPG. ZIP, BZ2 by test for reserved bytes NULL , 0|2 , 0|1 , low byte of block size 5192 # skip many RAR by test for low byte 0 ,high byte 0|2|even of block size, 0|a|e|d7 , 0|64h 8702 # 28: low order byte of the current PTD entry, always 0 since the 12326 # yes, this is separate from the low-order magic number bit
|