Home | History | Annotate | Download | only in Objects

Lines Matching defs:product

2571  * Returns the absolute value of the product, or NULL if error.
2695 * absolute value of the product (or NULL if error).
2714 * Then the original product is
2890 The product (ah+al)*(bh+bl) therefore has at most
2944 PyLongObject *product;
2951 product = k_mul(a, bslice);
2952 if (product == NULL)
2957 product->ob_digit, Py_SIZE(product));
2958 Py_DECREF(product);