Home
last modified time | relevance | path

Searched refs:offobj (Results 1 – 3 of 3) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dbz2module.c1026 PyObject *offobj; in BZ2File_seek() local
1037 if (!PyArg_ParseTuple(args, "O|i:seek", &offobj, &where)) in BZ2File_seek()
1040 offset = PyInt_AsLong(offobj); in BZ2File_seek()
1042 offset = PyLong_Check(offobj) ? in BZ2File_seek()
1043 PyLong_AsLongLong(offobj) : PyInt_AsLong(offobj); in BZ2File_seek()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
Dfileobject.c749 PyObject *offobj, *off_index; in file_seek() local
755 if (!PyArg_ParseTuple(args, "O|i:seek", &offobj, &whence)) in file_seek()
757 off_index = PyNumber_Index(offobj); in file_seek()
759 if (!PyFloat_Check(offobj)) in file_seek()
767 off_index = offobj; in file_seek()
768 Py_INCREF(offobj); in file_seek()
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
Dfileobject.c763 PyObject *offobj, *off_index; in file_seek() local
769 if (!PyArg_ParseTuple(args, "O|i:seek", &offobj, &whence)) in file_seek()
771 off_index = PyNumber_Index(offobj); in file_seek()
773 if (!PyFloat_Check(offobj)) in file_seek()
781 off_index = offobj; in file_seek()
782 Py_INCREF(offobj); in file_seek()