Home
last modified time | relevance | path

Searched refs:max (Results 1 – 25 of 244) sorted by path

12345678910

/PHP-7.1/
H A D.gdbinit609 usage: print_zstr <ptr> [max length]
H A DINSTALL347 "max-procs" => 1,
357 reached. The directives "min-procs" and "max-procs" should generally be
H A DNEWS507 . Fixed bug #73725 (Unable to retrieve value of varchar(max) type). (Anatol)
635 . Fixed bug #75514 (mt_rand returns value outside [$min,$max]+ on 32-bit)
1111 . Fixed bug #72071 (setcookie allows max-age to be negative). (Craig Duncan)
3882 . Fixed bug #69975 (PHP segfaults when accessing nvarchar(max) defined
H A DREADME.GIT-RULES100 <max 79 characters short description>\n
H A DUPGRADING504 automatically prefixed with \\?\. The max path length is limited to
/PHP-7.1/Zend/
H A DZEND_CHANGES845 return $this->num < $this->obj->max;
865 public $max = 3;
H A Dzend.c1055 CG(stack).top = CG(stack).max = 0; \
H A Dzend_ptr_stack.c31 stack->top = stack->max = 0; in zend_ptr_stack_init_ex()
H A Dzend_ptr_stack.h26 int top, max; member
47 if (stack->top+count > stack->max) { \ in END_EXTERN_C()
50 stack->max += PTR_STACK_BLOCK_SIZE; \ in END_EXTERN_C()
51 } while (stack->top+count > stack->max); \ in END_EXTERN_C()
52 …stack->elements = (void **) perealloc(stack->elements, (sizeof(void *) * (stack->max)), stack->per… in END_EXTERN_C()
H A Dzend_stack.c31 stack->max = 0; in zend_stack_init()
39 if (stack->top >= stack->max) { in zend_stack_push()
40 stack->max += STACK_BLOCK_SIZE; in zend_stack_push()
41 stack->elements = safe_erealloc(stack->elements, stack->size, stack->max, 0); in zend_stack_push()
164 stack->top = stack->max = 0; in zend_stack_clean()
H A Dzend_stack.h26 int size, top, max; member
/PHP-7.1/Zend/tests/
H A Dbug30394.phpt26 $c->a += max( 0, 1 );
H A Dbug34062.phpt11 max(0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0,
/PHP-7.1/build/
H A Dlibtool.m4834 # the test eventually succeeds (with a max line length of 256k).
/PHP-7.1/ext/date/lib/
H A Dparse_date.re1775 /*!max:re2c */
H A Dparse_iso_intervals.re405 /*!max:re2c */
/PHP-7.1/ext/date/tests/
H A Dcheckdate_basic1.phpt24 var_dump( checkdate(7, 2, 32767) ); // max year
31 var_dump( checkdate(7, 2, 32768) ); // >max year
H A Dformat-negative-timestamp.phpt8 $max = getrandmax();
9 $max_2 = $max / 2;
12 $new_tm = rand(1, $max);
/PHP-7.1/ext/exif/
H A Dexif.c86 #ifndef max
87 # define max(a,b) ((a)>(b) ? (a) : (b)) macro
2375 value_ptr = safe_emalloc(max(byte_count, 4), 1, 0); in exif_ifd_make_value()
/PHP-7.1/ext/fileinfo/
H A Dlibmagic.patch383 mset[i].max += ALLOC_INCR;
385 - realloc(mset[i].me, sizeof(*mp) * mset[i].max))) ==
386 + erealloc(mset[i].me, sizeof(*mp) * mset[i].max))) ==
388 file_oomem(ms, sizeof(*mp) * mset[i].max);
/PHP-7.1/ext/fileinfo/libmagic/
H A Dapprentice.c111 uint32_t max; member
1002 if (mset[i].count == mset[i].max) { in addentry()
1005 mset[i].max += ALLOC_INCR; in addentry()
1007 erealloc(mset[i].me, sizeof(*mp) * mset[i].max))) == in addentry()
1009 file_oomem(ms, sizeof(*mp) * mset[i].max); in addentry()
/PHP-7.1/ext/fileinfo/tests/
H A Dmagic4479 >8 byte 2 \b, max compression
4480 >8 byte 4 \b, max speed
12789 # display UUID in LVM format + display all 32 bytes (instead of max string length: 31)
12801 # display UUID in LVM format + display all 32 bytes (instead of max string length: 31)
12813 # display UUID in LVM format + display all 32 bytes (instead of max string length: 31)
16757 >>>13 byte >1 \b, max fanout %d
16763 >>>10 byte >1 \b, max fanout %d
16769 >>>13 byte >1 \b, max fanout %d
16775 >>>10 byte >1 \b, max fanout %d
17695 # audio format tag. Assume limits: max 1024 bit, 128 channels, 1 MHz
[all …]
H A Dmagic私はガラスを食べられます4479 >8 byte 2 \b, max compression
4480 >8 byte 4 \b, max speed
12789 # display UUID in LVM format + display all 32 bytes (instead of max string length: 31)
12801 # display UUID in LVM format + display all 32 bytes (instead of max string length: 31)
12813 # display UUID in LVM format + display all 32 bytes (instead of max string length: 31)
16757 >>>13 byte >1 \b, max fanout %d
16763 >>>10 byte >1 \b, max fanout %d
16769 >>>13 byte >1 \b, max fanout %d
16775 >>>10 byte >1 \b, max fanout %d
17695 # audio format tag. Assume limits: max 1024 bit, 128 channels, 1 MHz
[all …]
/PHP-7.1/ext/filter/tests/
H A D046.phpt7 $max = sprintf("%d", PHP_INT_MAX);
8 switch($max) {
32 test_validation($max, "max");
38 max filtered: int(%d)
39 max is_long: bool(true)
40 max equal: bool(true)
H A Dfilter_ipv4_rfc6890.phpt21 list($min, $max) = $range;
24 var_dump(filter_var($max, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4 | FILTER_FLAG_NO_PRIV_RANGE));
75 list($min, $max) = $range;
78 var_dump(filter_var($max, FILTER_VALIDATE_IP, FILTER_FLAG_IPV4 | FILTER_FLAG_NO_RES_RANGE));

Completed in 231 milliseconds

12345678910