Home
last modified time | relevance | path

Searched refs:max (Results 151 – 175 of 216) sorted by relevance

123456789

/PHP-5.5/ext/standard/tests/mail/
H A Dmail_variation_alt1-win32.phpt54 $repeat_count = 20; // we will repeat a max of 20 times
H A Dmail_variation_alt2-win32.phpt54 $repeat_count = 20; // we will repeat a max of 20 times
H A Dmail_variation_alt3-win32.phpt53 $repeat_count = 20; // we will repeat a max of 20 times
/PHP-5.5/ext/standard/tests/strings/
H A Dchunk_split_variation5.phpt33 PHP_INT_MAX, //max positive integer number
H A Dchunk_split_variation8.phpt39 PHP_INT_MAX, // max positive integer number
/PHP-5.5/ext/standard/tests/general_functions/
H A Dgettype_settype_variation6.phpt118 -2147483648, // max -ne int value
123 0xF674593039, // a hex value > than max int
127 02224242434343152, // an octal value > than max int
H A Dgettype_settype_variation8.phpt118 -2147483648, // max -ne int value
123 0xF674593039, // a hex value > than max int
127 02224242434343152, // an octal value > than max int
H A Dgettype_settype_variation7.phpt118 -2147483648, // max -ne int value
123 0xF674593039, // a hex value > than max int
127 02224242434343152, // an octal value > than max int
H A Dgettype_settype_variation5.phpt118 -2147483648, // max -ne int value
123 0xF674593039, // a hex value > than max int
127 02224242434343152, // an octal value > than max int
H A Dgettype_settype_variation2.phpt121 -2147483648, // max -ne int value
126 0xF674593039, // a hex value > than max int
130 02224242434343152, // an octal value > than max int
H A Dgettype_settype_variation3.phpt118 -2147483648, // max -ne int value
123 0xF674593039, // a hex value > than max int
127 02224242434343152, // an octal value > than max int
/PHP-5.5/ext/iconv/tests/
H A Diconv_mime_encode.phpt26 $max = max(array_map("strlen", explode("\n", $result)));
28 var_dump(($max <= $line_len));
/PHP-5.5/ext/standard/tests/file/
H A Dfscanf_variation8.phpt27 -0x80000001, // float value, beyond max negative int
28 0x800000001, // float value, beyond max positive int
29 020000000001, // float value, beyond max positive int
30 -020000000001, // float value, beyond max negative int
/PHP-5.5/main/
H A Drfc1867.c609 int len, max; in multipart_buffer_read() local
619 max = bound - self->buf_begin; in multipart_buffer_read()
624 max = self->bytes_in_buffer; in multipart_buffer_read()
628 len = max < bytes-1 ? max : bytes-1; in multipart_buffer_read()
/PHP-5.5/ext/standard/tests/math/
H A Dmt_rand_variation1.phpt5 /* Prototype : int mt_rand ([ int $min , int $max ] )
H A Drand_variation1.phpt5 /* Prototype : int rand ([ int $min , int $max ] )
/PHP-5.5/ext/oci8/
H A Dphp_oci8_int.h50 #if defined(max)
51 #undef max
/PHP-5.5/ext/oci8/tests/
H A Dreflection2.phpt237 Method [ <internal%s> public method max ] {
/PHP-5.5/
H A Dphp.ini-development370 ; http://php.net/max-execution-time
381 ; http://php.net/max-input-time
491 ; http://php.net/log-errors-max-len
659 ; http://php.net/post-max-size
791 ; http://php.net/upload-max-filesize
1044 ; http://php.net/odbc.max-persistent
1048 ; http://php.net/odbc.max-links
1113 ; http://php.net/mysql.max-links
1168 ; http://php.net/mysqli.max-links
1294 ; http://php.net/pgsql.max-links
[all …]
H A Dphp.ini-production370 ; http://php.net/max-execution-time
381 ; http://php.net/max-input-time
491 ; http://php.net/log-errors-max-len
659 ; http://php.net/post-max-size
791 ; http://php.net/upload-max-filesize
1044 ; http://php.net/odbc.max-persistent
1048 ; http://php.net/odbc.max-links
1113 ; http://php.net/mysql.max-links
1168 ; http://php.net/mysqli.max-links
1294 ; http://php.net/pgsql.max-links
[all …]
/PHP-5.5/win32/build/
H A Dconfutils.js1540 var max = new Array(l);
1559 max[j] = tmax;
1561 max[j] = header[j].length;
1571 k += max[i] + 3;
1583 for (var i = 0; i < (max[j] - header[j].length); i++){
1597 for (var k = 0; k < (max[j] - line[j].length); k++){
/PHP-5.5/ext/wddx/
H A Dwddx.c96 int top, max; member
179 stack->max = STACK_BLOCK_SIZE; in wddx_stack_init()
191 if (stack->top >= stack->max) { /* we need to allocate more memory */ in wddx_stack_push()
193 (sizeof(void **) * (stack->max += STACK_BLOCK_SIZE))); in wddx_stack_push()
/PHP-5.5/ext/mysqli/tests/
H A Dmysqli_stmt_bind_result_format.phpt15 function create_table($link, $column, $min, $max, $engine, $offset) {
35 $col1 = mt_rand($min, $max);
/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);
/PHP-5.5/sapi/apache_hooks/
H A Dmod_php5.c58 int top, max, persistent; member
123 stack->max = STACK_BLOCK_SIZE; in sapi_stack_init_ex()
129 if (stack->top >= stack->max) { /* we need to allocate more memory */ in sapi_stack_push()
131 (sizeof(void **) * (stack->max += STACK_BLOCK_SIZE)), stack->persistent); in sapi_stack_push()

Completed in 98 milliseconds

123456789