HomeSort by relevance Sort by last modified time
    Searched refs:tp_alloc (Results 26 - 50 of 133) sorted by null

12 3 4 5 6

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
_functoolsmodule.c 123 pto = (partialobject *)type->tp_alloc(type, 0);
359 0, /* tp_alloc */
_randommodule.c 503 self = (RandomObject *)type->tp_alloc(type, 0);
574 0, /*tp_alloc*/
datetimemodule.c 585 * Basic object allocation: tp_alloc implementations. These allocate
590 * We abuse the tp_alloc "nitems" argument to communicate whether a tzinfo
599 * changes, perhaps the callers of tp_alloc slots in this file should
601 * is a base type implemented in this file (so that tp_alloc is time_alloc
660 self = (PyDateTime_Date *) (type->tp_alloc(type, 0));
677 self = (PyDateTime_DateTime *) (type->tp_alloc(type, aware));
705 self = (PyDateTime_Time *) (type->tp_alloc(type, aware));
744 self = (PyDateTime_Delta *) (type->tp_alloc(type, 0));
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Modules/
selectmodule.c 784 assert(type != NULL && type->tp_alloc != NULL);
785 self = (pyEpoll_Object *) type->tp_alloc(type, 0);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_functoolsmodule.c 123 pto = (partialobject *)type->tp_alloc(type, 0);
363 0, /* tp_alloc */
selectmodule.c 750 assert(type != NULL && type->tp_alloc != NULL);
751 self = (pyEpoll_Object *) type->tp_alloc(type, 0);
1114 0, /* tp_alloc */
    [all...]
_randommodule.c 488 self = (RandomObject *)type->tp_alloc(type, 0);
559 0, /*tp_alloc*/
datetimemodule.c 585 * Basic object allocation: tp_alloc implementations. These allocate
590 * We abuse the tp_alloc "nitems" argument to communicate whether a tzinfo
599 * changes, perhaps the callers of tp_alloc slots in this file should
601 * is a base type implemented in this file (so that tp_alloc is time_alloc
660 self = (PyDateTime_Date *) (type->tp_alloc(type, 0));
677 self = (PyDateTime_DateTime *) (type->tp_alloc(type, aware));
705 self = (PyDateTime_Time *) (type->tp_alloc(type, aware));
744 self = (PyDateTime_Delta *) (type->tp_alloc(type, 0));
    [all...]
  /external/brotli/python/
_brotli.cc 163 self = (brotli_Compressor *)type->tp_alloc(type, 0);
400 0, /* tp_alloc */
  /external/python/cpython2/Modules/
_functoolsmodule.c 123 pto = (partialobject *)type->tp_alloc(type, 0);
375 0, /* tp_alloc */
selectmodule.c 773 assert(type != NULL && type->tp_alloc != NULL);
774 self = (pyEpoll_Object *) type->tp_alloc(type, 0);
1137 0, /* tp_alloc */
    [all...]
_randommodule.c 507 self = (RandomObject *)type->tp_alloc(type, 0);
578 0, /*tp_alloc*/
datetimemodule.c 585 * Basic object allocation: tp_alloc implementations. These allocate
590 * We abuse the tp_alloc "nitems" argument to communicate whether a tzinfo
599 * changes, perhaps the callers of tp_alloc slots in this file should
601 * is a base type implemented in this file (so that tp_alloc is time_alloc
660 self = (PyDateTime_Date *) (type->tp_alloc(type, 0));
677 self = (PyDateTime_DateTime *) (type->tp_alloc(type, aware));
705 self = (PyDateTime_Time *) (type->tp_alloc(type, aware));
744 self = (PyDateTime_Delta *) (type->tp_alloc(type, 0));
    [all...]
  /external/python/cpython2/Mac/Modules/cf/
_CFmodule.c 420 if ((self = type->tp_alloc(type, 0)) == NULL) return NULL;
468 CFTypeRefObj_tp_alloc, /* tp_alloc */
631 if ((self = type->tp_alloc(type, 0)) == NULL) return NULL;
679 CFArrayRefObj_tp_alloc, /* tp_alloc */
871 if ((self = type->tp_alloc(type, 0)) == NULL) return NULL;
919 CFMutableArrayRefObj_tp_alloc, /* tp_alloc */
1064 if ((self = type->tp_alloc(type, 0)) == NULL) return NULL
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/cjkcodecs/
multibytecodec.c 925 self = (MultibyteIncrementalEncoderObject *)type->tp_alloc(type, 0);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/cjkcodecs/
multibytecodec.c 922 self = (MultibyteIncrementalEncoderObject *)type->tp_alloc(type, 0);
    [all...]
  /external/python/cpython2/Modules/cjkcodecs/
multibytecodec.c 926 self = (MultibyteIncrementalEncoderObject *)type->tp_alloc(type, 0);
1018 0, /* tp_alloc */
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/_io/
fileio.c 121 assert(type != NULL && type->tp_alloc != NULL);
123 self = (fileio *) type->tp_alloc(type, 0);
1115 PyType_GenericAlloc, /* tp_alloc */
  /external/python/cpython2/Mac/Modules/cm/
_Cmmodule.c 275 if ((_self = type->tp_alloc(type, 0)) == NULL) return NULL;
322 CmpInstObj_tp_alloc, /* tp_alloc */
713 if ((_self = type->tp_alloc(type, 0)) == NULL) return NULL;
760 CmpObj_tp_alloc, /* tp_alloc */
  /external/python/cpython2/Modules/_io/
fileio.c 121 assert(type != NULL && type->tp_alloc != NULL);
123 self = (fileio *) type->tp_alloc(type, 0);
1128 PyType_GenericAlloc, /* tp_alloc */
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
object.h 389 allocfunc tp_alloc; member in struct:_typeobject
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
object.h 389 allocfunc tp_alloc; member in struct:_typeobject
    [all...]
  /external/python/cpython2/Include/
object.h 389 allocfunc tp_alloc; member in struct:_typeobject
    [all...]
  /external/python/cpython2/Mac/Modules/qdoffs/
_Qdoffsmodule.c 146 if ((_self = type->tp_alloc(type, 0)) == NULL) return NULL;
193 GWorldObj_tp_alloc, /* tp_alloc */
  /prebuilts/gdb/darwin-x86/include/python2.7/
object.h 389 allocfunc tp_alloc; member in struct:_typeobject
    [all...]

Completed in 618 milliseconds

12 3 4 5 6