Lines Matching defs:intp
3097 BcNum intp, fracp1, fracp2, digit, flen1, flen2;
3121 // intp into a number of the specified base, but it does it directly,
3127 // The algorithm takes the current least significant limb (after intp has
3165 // intp will be the "integer part" of the number, so copy it.
3166 bc_num_createCopy(&intp, n);
3172 // Make intp an integer.
3173 bc_num_truncate(&intp, intp.scale);
3176 bc_num_sub(n, &intp, &fracp1, 0);
3208 bc_num_printPrepare(&intp, vm->last_rem, vm->last_pow);
3215 for (i = 0; i < intp.len; ++i)
3218 acc = (BcBigDig) intp.num[i];
3221 for (j = 0; j < exp && (i < intp.len - 1 || acc != 0); ++j)
3351 bc_num_free(&intp);