Lines Matching defs:oct
12 our @EXPORT_OK = qw( PI e bpi bexp hex oct );
142 # the following two routines are for "use bignum qw/hex oct/;":
175 # Internal function with the same semantics as CORE::oct(). This function is
223 # Warn about trailing garbage. CORE::oct() only warns about 8 and 9, but it
245 sub oct(' . $proto . ') {' . <<'.';
273 : CORE::oct($_[0]);
279 $prev_oct = *CORE::GLOBAL::oct{CODE};
282 *CORE::GLOBAL::oct = \&_oct;
299 # for newer Perls always override hex() and oct() with a lexical version:
365 if ($param =~ /^(PI|e|bexp|bpi|hex|oct)\z/) {
475 use bignum qw/hex oct/;
477 print oct("01234567890123490");
637 =item oct
639 Override the built-in oct() method with a version that can handle big numbers.
641 higher, this is not so necessary, as oct() is lexically overridden in the
882 =item hex()/oct()
887 "oct" - and then it will be global and cannot be disabled inside a scope with
890 use bignum qw/hex oct/;