Home
last modified time | relevance | path

Searched refs:max (Results 151 – 175 of 216) sorted by last modified time

123456789

/PHP-5.5/ext/standard/
H A Dstring.c3220 …similar_str(const char *txt1, int len1, const char *txt2, int len2, int *pos1, int *pos2, int *max) argument
3227 *max = 0;
3231 if (l > *max) {
3232 *max = l;
3246 int pos1 = 0, pos2 = 0, max; local
3248 php_similar_str(txt1, len1, txt2, len2, &pos1, &pos2, &max);
3249 if ((sum = max)) {
3254 if ((pos1 + max < len1) && (pos2 + max < len2)) {
3255 sum += php_similar_char(txt1 + pos1 + max, len1 - pos1 - max,
3256 txt2 + pos2 + max, len2 - pos2 - max);
H A Drand.c292 long max; in PHP_FUNCTION() local
296 if (argc != 0 && zend_parse_parameters(argc TSRMLS_CC, "ll", &min, &max) == FAILURE) in PHP_FUNCTION()
301 RAND_RANGE(number, min, max, PHP_RAND_MAX); in PHP_FUNCTION()
313 long max; in PHP_FUNCTION() local
318 if (zend_parse_parameters(argc TSRMLS_CC, "ll", &min, &max) == FAILURE) { in PHP_FUNCTION()
320 } else if (max < min) { in PHP_FUNCTION()
321 php_error_docref(NULL TSRMLS_CC, E_WARNING, "max(%ld) is smaller than min(%ld)", max, min); in PHP_FUNCTION()
340 RAND_RANGE(number, min, max, PHP_MT_RAND_MAX); in PHP_FUNCTION()
H A Dphp_var.h53 PHPAPI int php_var_unserialize(zval **rval, const unsigned char **p, const unsigned char *max, php_…
H A Dphp_array.h51 PHP_FUNCTION(max);
H A Dbasic_functions.c1927 ZEND_ARG_INFO(0, max)
1932 ZEND_ARG_INFO(0, max)
3310 PHP_FE(max, arginfo_max)
H A Darray.c992 PHP_FUNCTION(max) in PHP_FUNCTION() argument
1020 zval **max, result; in PHP_FUNCTION() local
1023 max = args[0]; in PHP_FUNCTION()
1026 is_smaller_or_equal_function(&result, *args[i], *max TSRMLS_CC); in PHP_FUNCTION()
1028 max = args[i]; in PHP_FUNCTION()
1032 RETVAL_ZVAL(*max, 1, 0); in PHP_FUNCTION()
/PHP-5.5/ext/standard/html_tables/
H A Dhtml_table_gen.php253 $maxencnum = max(array_map(function($e) { return $e['enumid']; }, $encodings));
741 $numelems = max(pow(2, ceil(log(1.5*count($origdp))/log(2))),16);
/PHP-5.5/ext/sqlite3/libsqlite/
H A Dsqlite3.c15413 int max; in getDigits() local
15421 max = va_arg(ap, int); in getDigits()
15432 if( val<min || val>max || (nextC!=0 && nextC!=*zDate) ){ in getDigits()
79201 i64 max = SQLITE_MAX_MMAP_SIZE;
79202 sqlite3OsFileControlHint(*ppFd, SQLITE_FCNTL_MMAP_SIZE, (void*)&max);
97942 int max;
97953 max = sqlite3_user_data(context)!=0;
97955 if( (max && cmp<0) || (!max && cmp>0) ){
98139 FUNCTION(max, -1, 1, 1, minmaxFunc ),
98140 FUNCTION(max, 0, 1, 1, 0 ),
[all …]
/PHP-5.5/ext/spl/internal/
H A Dsplfileobject.inc240 * @return current setting for max line
/PHP-5.5/ext/soap/interop/
H A Dtest.utility.php46 $d = max(min(strlen(count($m1)?$m1[1]:'0'),strlen(count($m2)?$m2[1]:'0')),2);
/PHP-5.5/ext/phar/phar/
H A Dpharcommand.inc1528 $l = max(strlen($which), $l);
1582 $klen = max($klen, strlen($k));
/PHP-5.5/ext/pdo_pgsql/tests/
H A Dbug69752.phpt29 $max = 1000;
32 for($i = 0; $i < $max; $i++) {
/PHP-5.5/ext/pdo_mysql/
H A Dget_error_codes.php10 $maxlen = max($maxlen, strlen($matches[1]));
/PHP-5.5/ext/pcre/tests/
H A Dbug67238.phpt2 Bug #67238 Ungreedy and min/max quantifier bug in PCRE 8.34 upstream
/PHP-5.5/ext/pcre/pcrelib/
H A Dpcre_jit_compile.c957 max = 0; in detect_repeat()
970 max++; in detect_repeat()
3600 if (max <= 1) in fast_forward_first_n_chars()
3725 max -= 1; in fast_forward_first_n_chars()
4818 if (c > max) max = c; in compile_xclass_matchingpath()
4830 if (c > max) max = c; in compile_xclass_matchingpath()
4845 if (*other_cases > max) max = *other_cases; in compile_xclass_matchingpath()
6112 max = 0; in compile_ref_iterator_matchingpath()
6118 max = 0; in compile_ref_iterator_matchingpath()
6124 max = 1; in compile_ref_iterator_matchingpath()
[all …]
H A Dpcre_compile.c1610 int max = -1; in read_repeat_counts() local
1622 if (*p == CHAR_RIGHT_CURLY_BRACKET) max = min; else in read_repeat_counts()
1626 max = 0; in read_repeat_counts()
1629 max = max * 10 + (int)(*p++ - CHAR_0); in read_repeat_counts()
1630 if (max > 65535) in read_repeat_counts()
1636 if (max < min) in read_repeat_counts()
1645 *maxp = max; in read_repeat_counts()
H A Dpcre_exec.c57 #undef max
649 int max; in match()
2756 if (max == 0) max = INT_MAX; in match()
2764 if (max == 0) max = INT_MAX; in match()
2900 if (max == 0) max = INT_MAX; in match()
2910 if (max == 0) max = INT_MAX; in match()
3127 if (max == 0) max = INT_MAX; in match()
3137 if (max == 0) max = INT_MAX; in match()
3382 if (max == 0) max = INT_MAX; in match()
3776 if (max == 0) max = INT_MAX; in match()
[all …]
H A DChangeLog550 22. A typo in the code meant that in ungreedy mode the max/min qualifier
911 37. The value of the max lookbehind was not correctly preserved if a compiled
/PHP-5.5/ext/pcre/pcrelib/doc/
H A Dpcre.txt4937 { start min/max quantifier
/PHP-5.5/ext/opcache/Optimizer/
H A Doptimize_temp_vars_5.c69 if (i > max) { \
70 max = i; \
83 int max = -1; local
221 op_array->T = max + 1;
/PHP-5.5/ext/oci8/tests/
H A Dreflection2.phpt237 Method [ <internal%s> public method max ] {
H A Dcoll_007.phpt17 var_dump($coll1->max());
H A Dcoll_003.phpt17 var_dump($coll1->max());
H A Dbind_sqltafc.phpt38 $c3 = "AAAAAAAAAA"; // max length allowed in column
39 $c4 = "BBBBBBBBBB"; // max length allowed in column
/PHP-5.5/ext/oci8/
H A Dphp_oci8_int.h50 #if defined(max)
51 #undef max

Completed in 489 milliseconds

123456789