Home | History | Annotate | Download | only in Objects

Lines Matching defs:pz

1858         digit *pz, *pzstop;
1929 pz = z->ob_digit;
1930 pzstop = pz + Py_SIZE(z);
1931 for (; pz < pzstop; ++pz) {
1932 c += (twodigits)*pz * convmult;
1933 *pz = (digit)(c & PyLong_MASK);
1940 *pz = (digit)c;
2596 digit *pz = z->ob_digit + (i << 1);
2605 carry = *pz + f * f;
2606 *pz++ = (digit)(carry & PyLong_MASK);
2615 carry += *pz + *pa++ * f;
2616 *pz++ = (digit)(carry & PyLong_MASK);
2621 carry += *pz;
2622 *pz++ = (digit)(carry & PyLong_MASK);
2626 *pz += (digit)(carry & PyLong_MASK);
2634 digit *pz = z->ob_digit + i;
2644 carry += *pz + *pb++ * f;
2645 *pz++ = (digit)(carry & PyLong_MASK);
2650 *pz += (digit)(carry & PyLong_MASK);