Lines Matching refs:base
4606 /* Three simple macros defining base-64. */
4608 /* Is c a base-64 character? */
4616 /* given that c is a base-64 character, what is its base-64 value? */
4624 /* What is the base-64 character of the bottom 6 bits of n? */
4736 if (inShift) { /* in a base-64 section */
4737 if (IS_BASE64(ch)) { /* consume a base-64 character */
4772 else { /* now leaving a base-64 section */
4776 /* We've seen at least one base-64 character */
14126 /* If it's a compact object, account for base structure +
14134 /* If it is a two-block object, account for base object, and
14490 /* Get rid of base marker unless F_ALT */
14593 int base;
14602 base = 10;
14605 base = 8;
14609 base = 16;
14613 if (_PyLong_FormatWriter(writer, v, base, alternate) == -1) {