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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Python/
pyarena.c 89 b->ab_offset = ROUNDUP((Py_uintptr_t)(b->ab_mem)) -
90 (Py_uintptr_t)(b->ab_mem);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Python/
pyarena.c 89 b->ab_offset = ROUNDUP((Py_uintptr_t)(b->ab_mem)) -
90 (Py_uintptr_t)(b->ab_mem);
  /external/python/cpython2/Python/
pyarena.c 89 b->ab_offset = ROUNDUP((Py_uintptr_t)(b->ab_mem)) -
90 (Py_uintptr_t)(b->ab_mem);
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/PyMod-2.7.2/Include/
pyport.h 49 Used in: Py_uintptr_t
159 typedef uintptr_t Py_uintptr_t;
163 typedef unsigned int Py_uintptr_t;
167 typedef unsigned long Py_uintptr_t;
171 typedef unsigned PY_LONG_LONG Py_uintptr_t;
175 # error "Python needs a typedef for Py_uintptr_t in pyport.h."
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
pyport.h 36 Used in: Py_uintptr_t
159 typedef uintptr_t Py_uintptr_t;
163 typedef unsigned int Py_uintptr_t;
167 typedef unsigned long Py_uintptr_t;
171 typedef unsigned PY_LONG_LONG Py_uintptr_t;
175 # error "Python needs a typedef for Py_uintptr_t in pyport.h."
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/PyMod-2.7.10/Include/
pyport.h 51 Used in: Py_uintptr_t
174 typedef uintptr_t Py_uintptr_t;
178 typedef unsigned int Py_uintptr_t;
182 typedef unsigned long Py_uintptr_t;
186 typedef unsigned PY_LONG_LONG Py_uintptr_t;
190 # error "Python needs a typedef for Py_uintptr_t in pyport.h."
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
pyport.h 49 Used in: Py_uintptr_t
159 typedef uintptr_t Py_uintptr_t;
163 typedef unsigned int Py_uintptr_t;
167 typedef unsigned long Py_uintptr_t;
171 typedef unsigned PY_LONG_LONG Py_uintptr_t;
175 # error "Python needs a typedef for Py_uintptr_t in pyport.h."
  /external/python/cpython2/Include/
pyport.h 36 Used in: Py_uintptr_t
159 typedef uintptr_t Py_uintptr_t;
163 typedef unsigned int Py_uintptr_t;
167 typedef unsigned long Py_uintptr_t;
171 typedef unsigned PY_LONG_LONG Py_uintptr_t;
175 # error "Python needs a typedef for Py_uintptr_t in pyport.h."
  /prebuilts/gdb/darwin-x86/include/python2.7/
pyport.h 36 Used in: Py_uintptr_t
159 typedef uintptr_t Py_uintptr_t;
163 typedef unsigned int Py_uintptr_t;
167 typedef unsigned long Py_uintptr_t;
171 typedef unsigned PY_LONG_LONG Py_uintptr_t;
175 # error "Python needs a typedef for Py_uintptr_t in pyport.h."
    [all...]
  /prebuilts/gdb/linux-x86/include/python2.7/
pyport.h 36 Used in: Py_uintptr_t
159 typedef uintptr_t Py_uintptr_t;
163 typedef unsigned int Py_uintptr_t;
167 typedef unsigned long Py_uintptr_t;
171 typedef unsigned PY_LONG_LONG Py_uintptr_t;
175 # error "Python needs a typedef for Py_uintptr_t in pyport.h."
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
pyport.h 36 Used in: Py_uintptr_t
159 typedef uintptr_t Py_uintptr_t;
163 typedef unsigned int Py_uintptr_t;
167 typedef unsigned long Py_uintptr_t;
171 typedef unsigned PY_LONG_LONG Py_uintptr_t;
175 # error "Python needs a typedef for Py_uintptr_t in pyport.h."
    [all...]
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
pyport.h 36 Used in: Py_uintptr_t
159 typedef uintptr_t Py_uintptr_t;
163 typedef unsigned int Py_uintptr_t;
167 typedef unsigned long Py_uintptr_t;
171 typedef unsigned PY_LONG_LONG Py_uintptr_t;
175 # error "Python needs a typedef for Py_uintptr_t in pyport.h."
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
object.c 770 * integer types (i.e. Py_uintptr_t, our spelling of C9X's
774 Py_uintptr_t vv = (Py_uintptr_t)v;
775 Py_uintptr_t ww = (Py_uintptr_t)w;
800 return ((Py_uintptr_t)(v->ob_type) < (
801 Py_uintptr_t)(w->ob_type)) ? -1 : 1;
    [all...]
obmalloc.c 274 #define uptr Py_uintptr_t
    [all...]
typeobject.c 636 Py_uintptr_t vv, ww;
658 vv = (Py_uintptr_t)v;
659 ww = (Py_uintptr_t)w;
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
object.c 765 * integer types (i.e. Py_uintptr_t, our spelling of C9X's
769 Py_uintptr_t vv = (Py_uintptr_t)v;
770 Py_uintptr_t ww = (Py_uintptr_t)w;
795 return ((Py_uintptr_t)(v->ob_type) < (
796 Py_uintptr_t)(w->ob_type)) ? -1 : 1;
    [all...]
obmalloc.c 244 #define uptr Py_uintptr_t
    [all...]
typeobject.c 630 Py_uintptr_t vv, ww;
652 vv = (Py_uintptr_t)v;
653 ww = (Py_uintptr_t)w;
    [all...]
  /external/python/cpython2/Objects/
object.c 770 * integer types (i.e. Py_uintptr_t, our spelling of C9X's
774 Py_uintptr_t vv = (Py_uintptr_t)v;
775 Py_uintptr_t ww = (Py_uintptr_t)w;
800 return ((Py_uintptr_t)(v->ob_type) < (
801 Py_uintptr_t)(w->ob_type)) ? -1 : 1;
    [all...]
obmalloc.c 274 #define uptr Py_uintptr_t
    [all...]
typeobject.c 656 Py_uintptr_t vv, ww;
678 vv = (Py_uintptr_t)v;
679 ww = (Py_uintptr_t)w;
    [all...]
  /external/python/cpython3/Include/
pyport.h 76 typedef uintptr_t Py_uintptr_t;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
_elementtree.c 120 #define JOIN_GET(p) ((Py_uintptr_t) (p) & 1)
121 #define JOIN_SET(p, flag) ((void*) ((Py_uintptr_t) (JOIN_OBJ(p)) | (flag)))
122 #define JOIN_OBJ(p) ((PyObject*) ((Py_uintptr_t) (p) & ~1))
696 id = PyInt_FromLong((Py_uintptr_t) self);
    [all...]
  /external/python/cpython2/Modules/
_elementtree.c 120 #define JOIN_GET(p) ((Py_uintptr_t) (p) & 1)
121 #define JOIN_SET(p, flag) ((void*) ((Py_uintptr_t) (JOIN_OBJ(p)) | (flag)))
122 #define JOIN_OBJ(p) ((PyObject*) ((Py_uintptr_t) (p) & ~1))
703 id = PyInt_FromLong((Py_uintptr_t) self);
    [all...]

Completed in 503 milliseconds