Lines Matching refs:as
23 0x123B, // integer as hexadecimal
27 -0x80000000, // max negative integer as hexadecimal
28 '0x7fffffff', // max positive integer as hexadecimal
29 0x7FFFFFFF, // max positive integer as hexadecimal
30 '0123', // integer as octal
32 -020000000000, // max negative integer as octal
33 017777777777, // max positive integer as octal
40 foreach ($valid_ints as $value ) {
45 echo "\n***Output with base value of 10( explicitly passed as argument) ***\n";
46 foreach ($valid_ints as $value ) {
52 foreach ($valid_ints as $value ) {
57 foreach ($valid_ints as $value ) {
145 foreach ($not_int_types as $type ) {
183 ***Output with base value of 10( explicitly passed as argument) ***