Lines Matching defs:oct
12 our @EXPORT_OK = qw( PI e bpi bexp hex oct );
109 # the following two routines are for "use bigfloat qw/hex oct/;":
142 # Internal function with the same semantics as CORE::oct(). This function is
190 # Warn about trailing garbage. CORE::oct() only warns about 8 and 9, but it
212 sub oct(' . $proto . ') {' . <<'.';
240 : CORE::oct($_[0]);
246 $prev_oct = *CORE::GLOBAL::oct{CODE};
249 *CORE::GLOBAL::oct = \&_oct;
266 # for newer Perls always override hex() and oct() with a lexical version:
319 if ($param =~ /^(PI|e|bexp|bpi|hex|oct)\z/) {
431 use bigfloat qw/hex oct/;
433 print oct("01234567890123490");
522 =item oct
524 Override the built-in oct() method with a version that can handle big numbers.
526 higher, this is not so necessary, as oct() is lexically overridden in the
743 =item hex()/oct()
748 "oct" - and then it will be global and cannot be disabled inside a scope with
751 use bigfloat qw/hex oct/;