Searched refs:bslice (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Devices/EFI/Firmware/AppPkg/Applications/Python/PyMod-2.7.2/Objects/
H A Dlongobject.c2924 PyLongObject *bslice = NULL; local
2935 /* Successive slices of b are copied into bslice. */
2936 bslice = _PyLong_New(asize);
2937 if (bslice == NULL)
2946 memcpy(bslice->ob_digit, b->ob_digit + nbdone,
2948 Py_SIZE(bslice) = nbtouse;
2949 product = k_mul(a, bslice);
2962 Py_DECREF(bslice);
2967 Py_XDECREF(bslice);

Completed in 1400 milliseconds