Home | History | Annotate | Download | only in Modules

Lines Matching refs:intval

1219     time_t intval;

1226 intval = PyInt_AsUnsignedLongLongMask(intobj);
1228 intval = PyInt_AsLong(intobj);
1231 if (intval == -1 && PyErr_Occurred())
1233 *sec = intval;
1234 *usec = (long)((tval - intval) * 1e6); /* can't exceed 1000000 */
1242 intval = PyInt_AsUnsignedLongLongMask(t);
1244 intval = PyInt_AsLong(t);
1246 if (intval == -1 && PyErr_Occurred())
1248 *sec = intval;