Home | History | Annotate | Download | only in Objects

Lines Matching defs:product

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

2693 * absolute value of the product (or NULL if error).
2712 * Then the original product is
2888 The product (ah+al)*(bh+bl) therefore has at most
2942 PyLongObject *product;
2949 product = k_mul(a, bslice);
2950 if (product == NULL)
2955 product->ob_digit, Py_SIZE(product));
2956 Py_DECREF(product);