HomeSort by relevance Sort by last modified time
    Searched refs:PyIntObject (Results 1 - 25 of 34) sorted by null

1 2

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
boolobject.h 10 typedef PyIntObject PyBoolObject;
20 PyAPI_DATA(PyIntObject) _Py_ZeroStruct, _Py_TrueStruct;
intobject.h 5 PyIntObject represents a (long) integer. This is an immutable object;
10 returns -1 and sets errno to EBADF if the object is not an PyIntObject.
13 The type PyIntObject is (unfortunately) exposed here so we can declare
26 } PyIntObject;
52 #define PyInt_AS_LONG(op) (((PyIntObject *)(op))->ob_ival)
70 PyAPI_FUNC(PyObject*) _PyInt_Format(PyIntObject* v, int base, int newstyle);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
boolobject.h 10 typedef PyIntObject PyBoolObject;
20 PyAPI_DATA(PyIntObject) _Py_ZeroStruct, _Py_TrueStruct;
intobject.h 5 PyIntObject represents a (long) integer. This is an immutable object;
10 returns -1 and sets errno to EBADF if the object is not an PyIntObject.
13 The type PyIntObject is (unfortunately) exposed here so we can declare
26 } PyIntObject;
51 #define PyInt_AS_LONG(op) (((PyIntObject *)(op))->ob_ival)
69 PyAPI_FUNC(PyObject*) _PyInt_Format(PyIntObject* v, int base, int newstyle);
  /external/python/cpython2/Include/
boolobject.h 10 typedef PyIntObject PyBoolObject;
20 PyAPI_DATA(PyIntObject) _Py_ZeroStruct, _Py_TrueStruct;
intobject.h 5 PyIntObject represents a (long) integer. This is an immutable object;
10 returns -1 and sets errno to EBADF if the object is not an PyIntObject.
13 The type PyIntObject is (unfortunately) exposed here so we can declare
26 } PyIntObject;
52 #define PyInt_AS_LONG(op) (((PyIntObject *)(op))->ob_ival)
70 PyAPI_FUNC(PyObject*) _PyInt_Format(PyIntObject* v, int base, int newstyle);
  /prebuilts/gdb/darwin-x86/include/python2.7/
boolobject.h 10 typedef PyIntObject PyBoolObject;
20 PyAPI_DATA(PyIntObject) _Py_ZeroStruct, _Py_TrueStruct;
intobject.h 5 PyIntObject represents a (long) integer. This is an immutable object;
10 returns -1 and sets errno to EBADF if the object is not an PyIntObject.
13 The type PyIntObject is (unfortunately) exposed here so we can declare
26 } PyIntObject;
52 #define PyInt_AS_LONG(op) (((PyIntObject *)(op))->ob_ival)
70 PyAPI_FUNC(PyObject*) _PyInt_Format(PyIntObject* v, int base, int newstyle);
  /prebuilts/gdb/linux-x86/include/python2.7/
boolobject.h 10 typedef PyIntObject PyBoolObject;
20 PyAPI_DATA(PyIntObject) _Py_ZeroStruct, _Py_TrueStruct;
intobject.h 5 PyIntObject represents a (long) integer. This is an immutable object;
10 returns -1 and sets errno to EBADF if the object is not an PyIntObject.
13 The type PyIntObject is (unfortunately) exposed here so we can declare
26 } PyIntObject;
52 #define PyInt_AS_LONG(op) (((PyIntObject *)(op))->ob_ival)
70 PyAPI_FUNC(PyObject*) _PyInt_Format(PyIntObject* v, int base, int newstyle);
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
boolobject.h 10 typedef PyIntObject PyBoolObject;
20 PyAPI_DATA(PyIntObject) _Py_ZeroStruct, _Py_TrueStruct;
intobject.h 5 PyIntObject represents a (long) integer. This is an immutable object;
10 returns -1 and sets errno to EBADF if the object is not an PyIntObject.
13 The type PyIntObject is (unfortunately) exposed here so we can declare
26 } PyIntObject;
52 #define PyInt_AS_LONG(op) (((PyIntObject *)(op))->ob_ival)
70 PyAPI_FUNC(PyObject*) _PyInt_Format(PyIntObject* v, int base, int newstyle);
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
boolobject.h 10 typedef PyIntObject PyBoolObject;
20 PyAPI_DATA(PyIntObject) _Py_ZeroStruct, _Py_TrueStruct;
intobject.h 5 PyIntObject represents a (long) integer. This is an immutable object;
10 returns -1 and sets errno to EBADF if the object is not an PyIntObject.
13 The type PyIntObject is (unfortunately) exposed here so we can declare
26 } PyIntObject;
52 #define PyInt_AS_LONG(op) (((PyIntObject *)(op))->ob_ival)
70 PyAPI_FUNC(PyObject*) _PyInt_Format(PyIntObject* v, int base, int newstyle);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
intobject.c 8 static PyObject *int_int(PyIntObject *v);
35 #define N_INTOBJECTS ((BLOCK_SIZE - BHEAD_SIZE) / sizeof(PyIntObject))
39 PyIntObject objects[N_INTOBJECTS];
45 static PyIntObject *free_list = NULL;
47 static PyIntObject *
50 PyIntObject *p, *q;
52 p = (PyIntObject *) PyMem_MALLOC(sizeof(PyIntBlock));
54 return (PyIntObject *) PyErr_NoMemory();
79 static PyIntObject *small_ints[NSMALLNEGINTS + NSMALLPOSINTS];
89 register PyIntObject *v;
    [all...]
boolobject.c 153 sizeof(PyIntObject),
194 PyIntObject _Py_ZeroStruct = {
199 PyIntObject _Py_TrueStruct = {
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
intobject.c 8 static PyObject *int_int(PyIntObject *v);
35 #define N_INTOBJECTS ((BLOCK_SIZE - BHEAD_SIZE) / sizeof(PyIntObject))
39 PyIntObject objects[N_INTOBJECTS];
45 static PyIntObject *free_list = NULL;
47 static PyIntObject *
50 PyIntObject *p, *q;
52 p = (PyIntObject *) PyMem_MALLOC(sizeof(PyIntBlock));
54 return (PyIntObject *) PyErr_NoMemory();
79 static PyIntObject *small_ints[NSMALLNEGINTS + NSMALLPOSINTS];
89 register PyIntObject *v;
    [all...]
boolobject.c 153 sizeof(PyIntObject),
194 PyIntObject _Py_ZeroStruct = {
199 PyIntObject _Py_TrueStruct = {
abstract.c     [all...]
  /external/python/cpython2/Objects/
intobject.c 8 static PyObject *int_int(PyIntObject *v);
35 #define N_INTOBJECTS ((BLOCK_SIZE - BHEAD_SIZE) / sizeof(PyIntObject))
39 PyIntObject objects[N_INTOBJECTS];
45 static PyIntObject *free_list = NULL;
47 static PyIntObject *
50 PyIntObject *p, *q;
52 p = (PyIntObject *) PyMem_MALLOC(sizeof(PyIntBlock));
54 return (PyIntObject *) PyErr_NoMemory();
79 static PyIntObject *small_ints[NSMALLNEGINTS + NSMALLPOSINTS];
89 register PyIntObject *v
    [all...]
boolobject.c 153 sizeof(PyIntObject),
194 PyIntObject _Py_ZeroStruct = {
199 PyIntObject _Py_TrueStruct = {
  /external/python/cpython2/Modules/
cgensupport.c 72 *p_arg = PyInt_AS_LONG((PyIntObject *)v);
93 *p_arg = (float) PyInt_AS_LONG((PyIntObject *)v);
cPickle.c 762 c_value = PyInt_AS_LONG((PyIntObject*)value);
1009 long l = PyInt_AS_LONG((PyIntObject *)args);
1025 long l = PyInt_AS_LONG((PyIntObject *)args);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
cPickle.c 764 c_value = PyInt_AS_LONG((PyIntObject*)value);
1011 long l = PyInt_AS_LONG((PyIntObject *)args);
1027 long l = PyInt_AS_LONG((PyIntObject *)args);
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
cPickle.c 734 c_value = PyInt_AS_LONG((PyIntObject*)value);
980 long l = PyInt_AS_LONG((PyIntObject *)args);
996 long l = PyInt_AS_LONG((PyIntObject *)args);
    [all...]

Completed in 617 milliseconds

1 2