Home
last modified time | relevance | path

Searched refs:x (Results 76 – 100 of 1169) sorted by relevance

12345678910>>...47

/PHP-5.5/ext/standard/tests/array/
H A Dbug28739.phpt6 public $x;
7 function __construct($x){$this->x=$x;}
9 function a(&$a, &$b){var_dump(__FUNCTION__);return $a->x - $b->x;}
10 function b(&$a, &$b){var_dump(__FUNCTION__);return $a->x - $b->x;}
27 [x] => 0
32 [x] => 1
37 [x] => 2
55 [x] => 1
/PHP-5.5/ext/gd/libgd/
H A Dgd_interpolation.c293 x=(-x); in KernelBessel_Order1()
455 if (x < 1.0) return ((2.0 * x - 3) * x * x + 1.0 ); in filter_hermite()
473 if (x < 0.5) return (0.75 - x*x); in filter_bell()
496 return(KM_P0+x*x*(KM_P2-x*KM_P3)); in filter_mitchell()
498 return(KM_P0+x*x*(KM_P2+x*KM_P3)); in filter_mitchell()
520 if (x <= 1.5) return (x * x - 2.5* x + 1.5); in filter_quadratic()
537 if (x <= 0) c = 0.0f; else c = x*x*x; in filter_bspline()
550 if (x <= 1.5) return (0.5 * x * x - 1.5 * x + 1.125); in filter_quadratic_bspline()
2411 for (x = 0; x <= end_x; x++) { in gdTransformAffineCopy()
2425 for (x = 0; x <= end_x; x++) { in gdTransformAffineCopy()
[all …]
H A Dgd.c632 for (x = 0; x < to->sx; x++) { in gdImagePaletteCopy()
1934 for (x=x1; x>=0 && gdImageGetPixel(im,x, y)==oc; x--) { in gdImageFill()
2002 for (x=x1; x>=0 && (!pts[y][x] && gdImageGetPixel(im,x,y)==oc); x--) { in _gdImageFillTiled()
2028 skip: for(x++; x<=x2 && (pts[y][x] || gdImageGetPixel(im,x, y)!=oc); x++); in _gdImageFillTiled()
2157 for (x = x1; (x <= x2); x++) { in gdImageFilledRectangle()
2179 for (x = 0; (x < w); x++) { in gdImageCopy()
2187 for (x = 0; (x < w); x++) { in gdImageCopy()
2225 for (x = srcX; x < (srcX + w); x++) { in gdImageCopy()
2272 for (x = srcX; x < (srcX + w); x++) { in gdImageCopyMerge()
2831 for (x = 0; x < sx; x++) { in gdImageCompare()
[all …]
H A Dgd_filter.c18 int x, y; in gdImageNegate() local
31 for (x=0; x<src->sx; ++x) { in gdImageNegate()
51 int x, y; in gdImageGrayScale() local
63 for (x=0; x<src->sx; ++x) { in gdImageGrayScale()
84 int x, y; in gdImageBrightness() local
100 for (x=0; x<src->sx; ++x) { in gdImageBrightness()
129 int x, y; in gdImageContrast() local
146 for (x=0; x<src->sx; ++x) { in gdImageContrast()
201 for (x=0; x<src->sx; ++x) { in gdImageColor()
258 for(x=0; x<src->sx; x++) { in gdImageConvolution()
[all …]
/PHP-5.5/Zend/tests/
H A Ddereference_002.phpt10 $x = array();
11 $x[] = 3;
12 $x[] = array(1, 5);
13 $x[] = new foo;
14 return $x;
22 var_dump($x[0]);
24 var_dump($x->bar());
25 var_dump($x->bar()[0]);
27 $x = array();
28 $x[] = new foo;
[all …]
H A Dclosure_009.phpt6 $x = function ($x) use ($a) {
10 echo $x.':'.$a."\n";
12 $y = function ($x) use (&$a) {
16 echo $x.':'.$a."\n";
18 $x(1);
19 $x(2);
20 $x(3);
H A Doffset_assign.phpt2 Crash on $x['x']['y'] += 1 when $x is string
5 $x = "a";
6 $x['x']['y'] += 1;
11 Warning: Illegal string offset 'x' in %soffset_assign.php on line %d
/PHP-5.5/ext/gd/tests/
H A Dlines.phpt22 for ($x=1; $x<5; $x++) {
23 $p3 = $p3 && (imagecolorat($im, $x,5)==0x00ff00);
53 $x=1;
57 $p3 = $p3 && (imagecolorat($im, $x,$y)==0x00ff00);
58 $x++;
70 for ($x=0; $x<6; $x++) {
72 $p3 = $p3 && (imagecolorat($im, $x,$y)!=0x00ff00);
83 for ($x=0; $x<6; $x++) {
85 $p3 = $p3 && (imagecolorat($im, $x,$y)!=0x00ff00);
96 for ($x=0; $x<5; $x++) {
[all …]
/PHP-5.5/ext/hash/
H A Dhash_gost.c92 x[0] = x[2]; \
93 x[1] = x[3]; \
94 x[2] = x[4]; \
95 x[3] = x[5]; \
96 x[4] = x[6]; \
97 x[5] = x[7]; \
104 x[0] = x[4]; \
105 x[2] = x[6]; \
110 x[1] = x[5]; \
111 x[3] = x[7]; \
[all …]
/PHP-5.5/ext/standard/tests/strings/
H A Dvprintf_variation14.phpt23 '%x %+x %-x
24 %lx %Lx %4x %-4x
25 %10.4x %-10.4x %.4x
26 %\'#2x %\'2x %\'$2x %\'_2x
27 %3$x %4$x %1$x %2$x';
89 1e240 x fffffb2e 4d2
97 1e240 x ff439a5b bc65a5
105 7b x ffffff85 7b
113 1 x 1 1
121 1 x 0 1
H A Dvsprintf_variation14.phpt23 '%x %+x %-x
24 %lx %Lx %4x %-4x
25 %10.4x %-10.4x %.4x
26 %\'#2x %\'2x %\'$2x %\'_2x
27 %3$x %4$x %1$x %2$x';
87 1e240 x fffffb2e 4d2
94 1e240 x ff439a5b bc65a5
101 7b x ffffff85 7b
108 1 x 1 1
115 1 x 0 1
H A Dvprintf_variation14_64bit.phpt23 '%x %+x %-x
24 %lx %Lx %4x %-4x
25 %10.4x %-10.4x %.4x
26 %\'#2x %\'2x %\'$2x %\'_2x
27 %3$x %4$x %1$x %2$x';
89 1e240 x fffffffffffffb2e 4d2
97 1e240 x ffffffffff439a5b bc65a5
105 7b x ffffffffffffff85 7b
113 1 x 1 1
121 1 x 0 1
H A Dvsprintf_variation14_64bit.phpt23 '%x %+x %-x
24 %lx %Lx %4x %-4x
25 %10.4x %-10.4x %.4x
26 %\'#2x %\'2x %\'$2x %\'_2x
27 %3$x %4$x %1$x %2$x';
87 1e240 x fffffffffffffb2e 4d2
94 1e240 x ffffffffff439a5b bc65a5
101 7b x ffffffffffffff85 7b
108 1 x 1 1
115 1 x 0 1
H A Dvfprintf_variation14.phpt23 '%x %+x %-x
24 %lx %Lx %4x %-4x
25 %10.4x %-10.4x %.4x
26 %\'#2x %\'2x %\'$2x %\'_2x
27 %3$x %4$x %1$x %2$x';
97 1e240 x fffffb2e 4d2
103 1e240 x ff439a5b bc65a5
109 7b x ffffff85 7b
115 1 x 1 1
121 1 x 0 1
H A Dvfprintf_variation14_64bit.phpt23 '%x %+x %-x
24 %lx %Lx %4x %-4x
25 %10.4x %-10.4x %.4x
26 %\'#2x %\'2x %\'$2x %\'_2x
27 %3$x %4$x %1$x %2$x';
97 1e240 x fffffffffffffb2e 4d2
103 1e240 x ffffffffff439a5b bc65a5
109 7b x ffffffffffffff85 7b
115 1 x 1 1
121 1 x 0 1
/PHP-5.5/ext/interbase/tests/
H A Dibase_affected_rows_001.phpt10 $x = ibase_connect($test_base);
12 ibase_query($x, 'INSERT INTO test1 VALUES (1, 100)');
13 ibase_query($x, 'INSERT INTO test1 VALUES (10000, 100)');
15 ibase_query($x, 'UPDATE test1 SET i = 10000');
16 var_dump(ibase_affected_rows($x));
19 ibase_query($x, 'UPDATE test1 SET i = 10000 WHERE i = 2.0');
20 var_dump(ibase_affected_rows($x));
22 ibase_query($x, 'UPDATE test1 SET i =');
23 var_dump(ibase_affected_rows($x));
/PHP-5.5/tests/classes/
H A Dstatic_properties_003.phpt6 public static $x = 'C::$x';
13 var_dump(isset($c->x));
14 unset($c->x);
15 echo $c->x;
16 $c->x = 1;
18 $c->x =& $ref;
19 var_dump($c->x, C::$x);
33 Strict Standards: Accessing static property C::$x as non static in %s on line 11
35 Strict Standards: Accessing static property C::$x as non static in %s on line 12
37 Notice: Undefined property: C::$x in %s on line 12
[all …]
H A Dfactory_and_singleton_001.phpt8 protected $x;
24 $this->x = $x;
36 return $this->x;
41 return test::$test->x;
56 echo "Create x and y\n";
57 $x = test::factory(1);
61 var_dump($x->get());
64 echo "Destruct x\n";
65 $x = NULL;
86 Create x and y
[all …]
H A Dfactory_and_singleton_002.phpt8 protected $x;
24 $this->x = $x;
36 return $this->x;
41 return test::$test->x;
56 echo "Create x and y\n";
57 $x = test::factory(1);
61 var_dump($x->get());
64 echo "Destruct x\n";
65 $x = NULL;
86 Create x and y
[all …]
/PHP-5.5/ext/standard/tests/math/
H A Dmt_rand_basic.phpt39 for ($x = 0; $x < count($min); $x++) {
41 $res = mt_rand($min[$x], $max[$x]);
43 if (!is_int($res) || $res < intval($min[$x]) || $res > intval($max[$x])) {
44 echo "FAILED: res = ", $res, " min = ", intval($min[$x]), " max = ", intval($max[$x]), "\n";
50 echo "PASSED: range min = ", intval($min[$x]), " max = ", intval($max[$x]), "\n";
69 for ($x = 0; $x < count($min); $x++) {
71 $res = mt_rand($min[$x], 100);
73 if (!is_int($res) || $res < intval($minval[$x]) || $res > 100) {
74 echo "FAILED: res = ", $res, " min = ", intval($min[$x]), " max = ", intval($max[$x]), "\n";
80 echo "PASSED range min = ", intval($min[$x]), " max = 100\n";
H A Drand_basic.phpt39 for ($x = 0; $x < count($min); $x++) {
41 $res = rand($min[$x], $max[$x]);
43 if (!is_int($res) || $res < intval($min[$x]) || $res > intval($max[$x])) {
44 echo "FAILED: res = ", $res, " min = ", intval($min[$x]), " max = ", intval($max[$x]), "\n";
50 echo "PASSED: range min = ", intval($min[$x]), " max = ", intval($max[$x]), "\n";
69 for ($x = 0; $x < count($min); $x++) {
71 $res = rand($min[$x], 100);
73 if (!is_int($res) || $res < intval($minval[$x]) || $res > 100) {
74 echo "FAILED: res = ", $res, " min = ", intval($min[$x]), " max = ", intval($max[$x]), "\n";
80 echo "PASSED range min = ", intval($min[$x]), " max = 100\n";
/PHP-5.5/ext/reflection/tests/
H A Dbug39067.phpt7 private $x;
11 private $x;
15 private $x;
19 var_dump($rc->getProperty('x')->getDeclaringClass()->getName());
22 var_dump($rc->getProperty('x')->getDeclaringClass()->getName());
25 var_dump($rc->getProperty('x')->getDeclaringClass()->getName());
28 private $x;
32 public $x;
36 var_dump($rc->getProperty('x')->getDeclaringClass()->getName());
/PHP-5.5/ext/pcre/tests/
H A Dsplit.phpt7 var_dump(preg_split('/*/', 'x'));
9 var_dump(preg_split('/[\s, ]+/', 'x yy,zzz'));
10 var_dump(preg_split('/[\s, ]+/', 'x yy,zzz', -1));
11 var_dump(preg_split('/[\s, ]+/', 'x yy,zzz', 0));
12 var_dump(preg_split('/[\s, ]+/', 'x yy,zzz', 1));
13 var_dump(preg_split('/[\s, ]+/', 'x yy,zzz', 2));
27 string(1) "x"
35 string(1) "x"
43 string(1) "x"
51 string(8) "x yy,zzz"
[all …]
/PHP-5.5/tests/lang/
H A DpassByReference_008.phpt5 function valRef($x, &$y) {
6 var_dump($x, $y);
7 $x = 'changed.x';
11 function refVal(&$x, $y) {
12 var_dump($x, $y);
13 $x = 'changed.x';
40 string(9) "changed.x"
H A Dexecution_order.phpt73 $x = 1;
74 $z = $x - ($x++);
79 $x = 1;
80 $z = ($x++) - $x;
85 $x = 1;
86 $z = $x - (++$x);
91 $x = 1;
92 $z = (++$x) - $x;
98 $x = 1;
100 $z = $x - ($x=$y);
[all …]

Completed in 50 milliseconds

12345678910>>...47