Home
last modified time | relevance | path

Searched refs:bit (Results 1 – 25 of 468) sorted by relevance

12345678910>>...19

/PHP-5.5/ext/standard/tests/strings/
H A Dbug47842.phpt2 Bug #47842 sscanf() does not support 64-bit values
12 echo "sscanf 32-bit signed int '2147483647' (2^31)-1 = ",$int,"\n";
14 echo "sscanf 32-bit unsign int '4294967295' (2^32)-1 = ",$int,"\n";
17 echo "sscanf 64-bit signed int '9223372036854775807' (2^63)-1 = ",$int,"\n";
19 echo "sscanf 64-bit unsign int '18446744073709551615' (2^64)-1 = ",$int,"\n";
28 sscanf 32-bit signed int '2147483647' (2^31)-1 = 2147483647
29 sscanf 32-bit unsign int '4294967295' (2^32)-1 = 4294967295
30 sscanf 64-bit signed int '9223372036854775807' (2^63)-1 = 9223372036854775807
31 sscanf 64-bit unsign int '18446744073709551615' (2^64)-1 = 18446744073709551615
32 printf 64-bit signed int '9223372036854775807' (2^63)-1 = 9223372036854775807
[all …]
H A Dbug38770.phpt2 Bug #38770 (unpack() broken with longs on 64 bit machines)
5 if (PHP_INT_SIZE != 8) die("skip this test is for 64bit platform only");
/PHP-5.5/ext/standard/tests/math/
H A Dbug30695.phpt2 Bug #30695 (32 bit issues)
11 case !($char_code & 0xffffff80): // 7 bit
14 case !($char_code & 0xfffff800): // 11 bit
18 case !($char_code & 0xffff0000): // 16 bit
23 case !($char_code & 0xffe00000): // 21 bit
29 case !($char_code & 0xfc000000): // 26 bit
35 default: // 31 bit
/PHP-5.5/ext/pcre/pcrelib/testdata/
H A Dtestoutput21-162 right away, and can be any old pattern compiled in 8-bit mode ("abc" is
9 Running in 16-bit mode but pattern was compiled in 8-bit mode
16 In 16-bit mode with options: S>testdata/saved16LE-1
18 In 32-bit mode with options: S>testdata/saved32LE-1
92 Running in 16-bit mode but pattern was compiled in 32-bit mode
98 Running in 16-bit mode but pattern was compiled in 32-bit mode
H A Dtestoutput21-322 right away, and can be any old pattern compiled in 8-bit mode ("abc" is
9 Running in 32-bit mode but pattern was compiled in 8-bit mode
16 In 16-bit mode with options: S>testdata/saved16LE-1
18 In 32-bit mode with options: S>testdata/saved32LE-1
26 Running in 32-bit mode but pattern was compiled in 16-bit mode
32 Running in 32-bit mode but pattern was compiled in 16-bit mode
H A Dtestoutput22-169 In 16-bit mode with options: S8>testdata/saved16LE-2
11 In 32-bit mode with options: S8>testdata/saved32LE-2
73 Running in 16-bit mode but pattern was compiled in 32-bit mode
79 Running in 16-bit mode but pattern was compiled in 32-bit mode
H A Dtestoutput22-329 In 16-bit mode with options: S8>testdata/saved16LE-2
11 In 32-bit mode with options: S8>testdata/saved32LE-2
19 Running in 32-bit mode but pattern was compiled in 16-bit mode
25 Running in 32-bit mode but pattern was compiled in 16-bit mode
H A Dtestinput212 right away, and can be any old pattern compiled in 8-bit mode ("abc" is
12 In 16-bit mode with options: S>testdata/saved16LE-1
14 In 32-bit mode with options: S>testdata/saved32LE-1
/PHP-5.5/ext/sybase_ct/tests/
H A Dtest_types.phpt30 convert(bit, 1) as "bit",
50 convert(bit, 1) as "bit",
80 ["bit"]=>
/PHP-5.5/ext/gd/tests/
H A Dimageinterlace_variation2.phpt2 Testing setting the interlace bit off with imageinterlace() of GD library
15 //setting the interlace bit to on
18 //setting de interlace bit to off
/PHP-5.5/ext/gd/libgd/
H A Dxbm.c45 int bit, x = 0, y = 0; in gdImageCreateFromXbm() local
139 for (bit = 1; bit <= max_bit; bit = bit << 1) { in gdImageCreateFromXbm()
140 gdImageSetPixel(im, x++, y, (b & bit) ? 1 : 0); in gdImageCreateFromXbm()
/PHP-5.5/Zend/tests/
H A Dbug62097.phpt2 Bug #62097: fix for bug #54547 is wrong for 32-bit machines
6 die('skip for system with 32-bit wide longs only');
H A Ddval_to_lval_64.phpt2 zend_dval_to_lval preserves low bits (64 bit long)
6 die("skip for machines with 64-bit longs");
H A Dint_overflow_32bit.phpt2 testing integer overflow (32bit)
4 <?php if (PHP_INT_SIZE != 4) die("skip this test is for 32bit platform only"); ?>
H A Dint_underflow_32bit.phpt2 testing integer underflow (32bit)
4 <?php if (PHP_INT_SIZE != 4) die("skip this test is for 32bit platform only"); ?>
H A Dint_underflow_64bit.phpt2 testing integer underflow (64bit)
4 <?php if (PHP_INT_SIZE != 8) die("skip this test is for 64bit platform only"); ?>
H A Doct_overflow_32bit.phpt2 testing integer overflow (32bit)
6 <?php if (PHP_INT_SIZE != 4) die("skip this test is for 32bit platform only"); ?>
H A Ddval_to_lval_32.phpt2 zend_dval_to_lval preserves low bits (32 bit long)
6 die("skip for machines with 32-bit longs");
H A Dhex_overflow_32bit.phpt2 testing integer overflow (32bit)
6 <?php if (PHP_INT_SIZE != 4) die("skip this test is for 32bit platform only"); ?>
H A Dint_overflow_64bit.phpt2 testing integer overflow (64bit)
4 <?php if (PHP_INT_SIZE != 8) die("skip this test is for 64bit platform only"); ?>
H A Dbug54547.phpt2 Bug #54547: wrong equality of string numbers near LONG_MAX with 64-bit longs
6 die("skip for 64-bit long systems only");
/PHP-5.5/ext/mbstring/tests/
H A Dmb_list_encodings.phpt7 var_dump(in_array("7bit", mb_list_encodings()));
8 var_dump(in_array("8bit", mb_list_encodings()));
/PHP-5.5/ext/ftp/tests/
H A Dfilesize_large.phpt2 Verify php can handle filesizes >32bit
7 die('skip 64-bit only');
/PHP-5.5/ext/date/tests/
H A Dstrtotime-mysql-64bit.phpt2 strtotime() and mysql timestamps (64 bit)
4 <?php echo PHP_INT_SIZE != 8 ? "skip 64-bit only" : "OK"; ?>
H A Dstrtotime-mysql.phpt2 strtotime() and mysql timestamps (32 bit)
4 <?php echo PHP_INT_SIZE == 8 ? "skip 32-bit only" : "OK"; ?>

Completed in 28 milliseconds

12345678910>>...19