Home | History | Annotate | Download | only in Objects

Lines Matching defs:pz

1870         digit *pz, *pzstop;

1941 pz = z->ob_digit;
1942 pzstop = pz + Py_SIZE(z);
1943 for (; pz < pzstop; ++pz) {
1944 c += (twodigits)*pz * convmult;
1945 *pz = (digit)(c & PyLong_MASK);
1952 *pz = (digit)c;
2608 digit *pz = z->ob_digit + (i << 1);
2617 carry = *pz + f * f;
2618 *pz++ = (digit)(carry & PyLong_MASK);
2627 carry += *pz + *pa++ * f;
2628 *pz++ = (digit)(carry & PyLong_MASK);
2633 carry += *pz;
2634 *pz++ = (digit)(carry & PyLong_MASK);
2638 *pz += (digit)(carry & PyLong_MASK);
2646 digit *pz = z->ob_digit + i;
2656 carry += *pz + *pb++ * f;
2657 *pz++ = (digit)(carry & PyLong_MASK);
2662 *pz += (digit)(carry & PyLong_MASK);