Lines Matching refs:pyus_in
1990 PyObject *pyus_in;
1994 pyus_in = delta_to_microseconds(delta);
1995 if (pyus_in == NULL)
1998 pyus_out = PyNumber_Multiply(intobj, pyus_in);
1999 Py_DECREF(pyus_in);
2040 PyObject *pyus_in = NULL, *temp, *pyus_out;
2043 pyus_in = delta_to_microseconds(delta);
2044 if (pyus_in == NULL)
2050 temp = PyNumber_Multiply(pyus_in, PyTuple_GET_ITEM(ratio, op));
2051 Py_DECREF(pyus_in);
2052 pyus_in = NULL;
2062 Py_XDECREF(pyus_in);
2071 PyObject *pyus_in;
2075 pyus_in = delta_to_microseconds(delta);
2076 if (pyus_in == NULL)
2079 pyus_out = PyNumber_FloorDivide(pyus_in, intobj);
2080 Py_DECREF(pyus_in);
2139 PyObject *pyus_in, *pyus_out;
2140 pyus_in = delta_to_microseconds(delta);
2141 if (pyus_in == NULL)
2143 pyus_out = divide_nearest(pyus_in, i);
2144 Py_DECREF(pyus_in);