Home
last modified time | relevance | path

Searched refs:hexdec (Results 1 – 11 of 11) sorted by relevance

/PHP-5.5/ext/standard/tests/math/
H A Dhexdec_basic_64bit.phpt2 Test hexdec() - basic function test hexdec()
40 -- hexdec 1194684 --
43 -- hexdec 7904751 --
67 -- hexdec 311015 --
70 -- hexdec 311015 --
73 -- hexdec 31101.3 --
79 -- hexdec 4767 --
82 -- hexdec 011237 --
85 -- hexdec 1 --
88 -- hexdec --
[all …]
H A Dhexdec.phpt8 var_dump(hexdec("012345"));
9 var_dump(hexdec("12345"));
10 var_dump(hexdec("q12345"));
11 var_dump(hexdec("12345+?!"));
12 var_dump(hexdec("12345q"));
13 var_dump((float)hexdec("1234500001"));
14 var_dump((float)hexdec("17fffffff"));
H A Dhexdec_error.phpt2 Test hexdec() - wrong params test hexdec()
5 /* Prototype : number hexdec ( string $hex_string )
10 echo "*** Testing hexdec() : error conditions ***\n";
18 hexdec();
19 hexdec('0x123abc',true);
22 hexdec(new classA());
26 *** Testing hexdec() : error conditions ***
30 Warning: hexdec() expects exactly 1 parameter, 0 given in %s on line %d
32 Warning: hexdec() expects exactly 1 parameter, 2 given in %s on line %d
H A Dhexdec_variation1.phpt2 Test hexdec() function : usage variations - different data types as $number arg
11 /* Prototype : number hexdec ( string $hex_string )
16 echo "*** Testing hexdec() : usage variations ***\n";
76 // loop through each element of $inputs to check the behaviour of hexdec()
80 var_dump(hexdec($input));
87 *** Testing hexdec() : usage variations ***
H A Dhexdec_variation1_64bit.phpt2 Test hexdec() function : usage variations - different data types as $number arg
11 /* Prototype : number hexdec ( string $hex_string )
16 echo "*** Testing hexdec() : usage variations ***\n";
76 // loop through each element of $inputs to check the behaviour of hexdec()
80 var_dump(hexdec($input));
87 *** Testing hexdec() : usage variations ***
H A Dhexdec_basic.phpt2 Test hexdec() - basic function test hexdec()
28 $res = hexdec($values[$i]);
H A Dhexdec_basiclong_64bit.phpt2 Test hexdec function : 64bit long tests
29 var_dump(hexdec($strVal));
/PHP-5.5/ext/standard/html_tables/
H A Dhtml_table_gen.php195 foreach ($map as $v) { $mappy[hexdec($v[0])] = hexdec($v[1]); }
339 if (hexdec($v[0]) >= $e['range'][0] && hexdec($v[0]) <= $e['range'][1])
340 $mappy[hexdec($v[1])] = array(hexdec($v[0]), strtolower($v[2]));
439 usort($dp, function($a, $b) { return hexdec($a[1])-hexdec($b[1]); });
527 $s1 = (hexdec($el[1]) & 0xFFF000) >> 12;
528 $s2 = (hexdec($el[1]) & 0xFC0) >> 6;
529 $s3 = hexdec($el[1]) & 0x3F;
763 $h[0], strlen($h[0]), hexdec($h[1]), hexdec($h[2]));
766 $h[0], strlen($h[0]), hexdec($h[1]));
/PHP-5.5/ext/standard/
H A Dphp_math.h62 PHP_FUNCTION(hexdec);
H A Dmath.c985 PHP_FUNCTION(hexdec) in PHP_FUNCTION() argument
H A Dbasic_functions.c2931 PHP_FE(hexdec, arginfo_hexdec)

Completed in 42 milliseconds