Home | History | Annotate | Download | only in Objects

Lines Matching refs:pz

2275         digit *pz, *pzstop;
2386 pz = z->ob_digit;
2387 pzstop = pz + Py_SIZE(z);
2388 for (; pz < pzstop; ++pz) {
2389 c += (twodigits)*pz * convmult;
2390 *pz = (digit)(c & PyLong_MASK);
2397 *pz = (digit)c;
3171 digit *pz = z->ob_digit + (i << 1);
3180 carry = *pz + f * f;
3181 *pz++ = (digit)(carry & PyLong_MASK);
3190 carry += *pz + *pa++ * f;
3191 *pz++ = (digit)(carry & PyLong_MASK);
3196 carry += *pz;
3197 *pz++ = (digit)(carry & PyLong_MASK);
3201 *pz += (digit)(carry & PyLong_MASK);
3209 digit *pz = z->ob_digit + i;
3219 carry += *pz + *pb++ * f;
3220 *pz++ = (digit)(carry & PyLong_MASK);
3225 *pz += (digit)(carry & PyLong_MASK);