Searched refs:intval (Results 1 - 4 of 4) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
H A Dcursor.c309 PY_LONG_LONG intval; local
368 intval = sqlite3_column_int64(self->statement->st, i);
369 if (intval < INT32_MIN || intval > INT32_MAX) {
370 converted = PyLong_FromLongLong(intval);
372 converted = PyInt_FromLong((long)intval);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/
H A Dedk2module.c1219 time_t intval; local
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;
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Efi/
H A Dedk2module.c1273 time_t intval; local
1280 intval = PyInt_AsUnsignedLongLongMask(intobj);
1282 intval = PyInt_AsLong(intobj);
1285 if (intval == -1 && PyErr_Occurred())
1287 *sec = intval;
1288 *usec = (long)((tval - intval) * 1e6); /* can't exceed 1000000 */
1296 intval = PyInt_AsUnsignedLongLongMask(t);
1298 intval = PyInt_AsLong(t);
1300 if (intval == -1 && PyErr_Occurred())
1302 *sec = intval;
[all...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
H A Dposixmodule.c2733 time_t intval; local
2740 intval = PyInt_AsUnsignedLongLongMask(intobj);
2742 intval = PyInt_AsLong(intobj);
2745 if (intval == -1 && PyErr_Occurred())
2747 *sec = intval;
2748 *usec = (long)((tval - intval) * 1e6); /* can't exceed 1000000 */
2756 intval = PyInt_AsUnsignedLongLongMask(t);
2758 intval = PyInt_AsLong(t);
2760 if (intval == -1 && PyErr_Occurred())
2762 *sec = intval;
[all...]

Completed in 45 milliseconds