Home | History | Annotate | Download | only in Objects

Lines Matching defs:product

2583  * Returns the absolute value of the product, or NULL if error.

2707 * absolute value of the product (or NULL if error).
2726 * Then the original product is
2902 The product (ah+al)*(bh+bl) therefore has at most
2956 PyLongObject *product;
2963 product = k_mul(a, bslice);
2964 if (product == NULL)
2969 product->ob_digit, Py_SIZE(product));
2970 Py_DECREF(product);