Lines Matching defs:oct
12 our @EXPORT_OK = qw( PI e bpi bexp hex oct );
120 # the following two routines are for "use bigint qw/hex oct/;":
153 # Internal function with the same semantics as CORE::oct(). This function is
201 # Warn about trailing garbage. CORE::oct() only warns about 8 and 9, but it
223 sub oct(' . $proto . ') {' . <<'.';
251 : CORE::oct($_[0]);
257 $prev_oct = *CORE::GLOBAL::oct{CODE};
260 *CORE::GLOBAL::oct = \&_oct;
277 # for newer Perls always override hex() and oct() with a lexical version:
330 if ($param =~ /^(PI|e|bexp|bpi|hex|oct)\z/) {
425 use bigint qw/hex oct/;
427 print oct("01234567890123490");
559 =item oct
561 Override the built-in oct() method with a version that can handle big numbers.
563 higher, this is not so necessary, as oct() is lexically overridden in the
770 =item hex()/oct()
775 "oct" - and then it will be global and cannot be disabled inside a scope with
778 use bigint qw/hex oct/;