Lines Matching refs:y
28 $y = (3/-10)*-10;
29 print $x+$y == 3 && abs($x) < 10 ? "ok 6\n" : "not ok 6\n";
41 $y = int ($x);
43 if ($y eq "4294967303") {
46 print "not ok 8 # int($x) is $y, not 4294967303\n"
49 $y = int (-$x);
51 if ($y eq "-4294967303") {
54 print "not ok 9 # int($x) is $y, not -4294967303\n"
58 $y = int ($x);
60 if ($y eq "4294967294") {
63 print "not ok 10 # int($x) is $y, not 4294967294\n"
67 $y = int ($x);
69 if ($y eq "4294967295") {
72 print "not ok 11 # int($x) is $y, not 4294967295\n"
76 $y = int ($x);
78 if ($y eq "4294967296") {
81 print "not ok 12 # int($x) is $y, not 4294967296\n"
84 $y = int(279964589018079/59);
85 if ($y == 4745162525730) {
88 print "not ok 13 # int(279964589018079/59) is $y, not 4745162525730\n"
91 $y = 279964589018079;
92 $y = int($y/59);
93 if ($y == 4745162525730) {
96 print "not ok 14 # int(279964589018079/59) is $y, not 4745162525730\n"