OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:newsizeobj
(Results
1 - 3
of
3
) sorted by null
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
fileobject.c
815
PyObject *
newsizeobj
= NULL;
local
823
if (!PyArg_UnpackTuple(args, "truncate", 0, 1, &
newsizeobj
))
840
/* Set newsize to current postion if
newsizeobj
NULL, else to the
843
if (
newsizeobj
!= NULL) {
845
newsize = PyInt_AsLong(
newsizeobj
);
847
newsize = PyLong_Check(
newsizeobj
) ?
848
PyLong_AsLongLong(
newsizeobj
) :
849
PyInt_AsLong(
newsizeobj
);
[
all
...]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
fileobject.c
801
PyObject *
newsizeobj
= NULL;
local
809
if (!PyArg_UnpackTuple(args, "truncate", 0, 1, &
newsizeobj
))
826
/* Set newsize to current postion if
newsizeobj
NULL, else to the
829
if (
newsizeobj
!= NULL) {
831
newsize = PyInt_AsLong(
newsizeobj
);
833
newsize = PyLong_Check(
newsizeobj
) ?
834
PyLong_AsLongLong(
newsizeobj
) :
835
PyInt_AsLong(
newsizeobj
);
[
all
...]
/external/python/cpython2/Objects/
fileobject.c
813
PyObject *
newsizeobj
= NULL;
local
821
if (!PyArg_UnpackTuple(args, "truncate", 0, 1, &
newsizeobj
))
838
/* Set newsize to current position if
newsizeobj
NULL, else to the
841
if (
newsizeobj
!= NULL) {
843
newsize = PyInt_AsLong(
newsizeobj
);
845
newsize = PyLong_Check(
newsizeobj
) ?
846
PyLong_AsLongLong(
newsizeobj
) :
847
PyInt_AsLong(
newsizeobj
);
[
all
...]
Completed in 124 milliseconds