Lines Matching refs:inner
1425 are exactly equal to x+y. The inner loop applies hi/lo summation to each
2032 PyObject *partial, *tmp, *inner, *outer;
2034 inner = PyLong_FromLong(1);
2035 if (inner == NULL)
2037 outer = inner;
2048 /* Here inner is the product of all odd integers j in the range (0,
2052 /* inner *= partial */
2055 tmp = PyNumber_Multiply(inner, partial);
2059 Py_DECREF(inner);
2060 inner = tmp;
2061 /* Now inner is the product of all odd integers j in the range (0,
2062 n/2**i], giving the inner product in the formula above. */
2064 /* outer *= inner; */
2065 tmp = PyNumber_Multiply(outer, inner);
2071 Py_DECREF(inner);
2076 Py_DECREF(inner);
2514 sequential dependencies in the inner loop so the CPU can maximize