HomeSort by relevance Sort by last modified time
    Searched refs:PyIntBlock (Results 1 - 3 of 3) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
intobject.c 42 typedef struct _intblock PyIntBlock;
44 static PyIntBlock *block_list = NULL;
52 p = (PyIntObject *) PyMem_MALLOC(sizeof(PyIntBlock));
55 ((PyIntBlock *)p)->next = block_list;
56 block_list = (PyIntBlock *)p;
59 p = &((PyIntBlock *)p)->objects[0];
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
intobject.c 42 typedef struct _intblock PyIntBlock;
44 static PyIntBlock *block_list = NULL;
52 p = (PyIntObject *) PyMem_MALLOC(sizeof(PyIntBlock));
55 ((PyIntBlock *)p)->next = block_list;
56 block_list = (PyIntBlock *)p;
59 p = &((PyIntBlock *)p)->objects[0];
    [all...]
  /external/python/cpython2/Objects/
intobject.c 42 typedef struct _intblock PyIntBlock;
44 static PyIntBlock *block_list = NULL;
52 p = (PyIntObject *) PyMem_MALLOC(sizeof(PyIntBlock));
55 ((PyIntBlock *)p)->next = block_list;
56 block_list = (PyIntBlock *)p;
59 p = &((PyIntBlock *)p)->objects[0];
    [all...]

Completed in 295 milliseconds