/prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
bytearrayobject.h | 49 Py_SIZE(self) ? ((PyByteArrayObject *)(self))->ob_bytes : _PyByteArray_empty_string) 50 #define PyByteArray_GET_SIZE(self) (assert(PyByteArray_Check(self)),Py_SIZE(self))
|
tupleobject.h | 51 #define PyTuple_GET_SIZE(op) Py_SIZE(op)
|
listobject.h | 63 #define PyList_GET_SIZE(op) Py_SIZE(op)
|
stringobject.h | 92 #define PyString_GET_SIZE(op) Py_SIZE(op)
|
objimpl.h | 166 ( Py_SIZE(op) = (size), PyObject_INIT((op), (typeobj)) )
|
object.h | 116 #define Py_SIZE(ob) (((PyVarObject*)(ob))->ob_size) [all...] |
/prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
bytearrayobject.h | 49 Py_SIZE(self) ? ((PyByteArrayObject *)(self))->ob_bytes : _PyByteArray_empty_string) 50 #define PyByteArray_GET_SIZE(self) (assert(PyByteArray_Check(self)),Py_SIZE(self))
|
tupleobject.h | 51 #define PyTuple_GET_SIZE(op) Py_SIZE(op)
|
listobject.h | 63 #define PyList_GET_SIZE(op) Py_SIZE(op)
|
stringobject.h | 92 #define PyString_GET_SIZE(op) Py_SIZE(op)
|
objimpl.h | 166 ( Py_SIZE(op) = (size), PyObject_INIT((op), (typeobj)) )
|
object.h | 116 #define Py_SIZE(ob) (((PyVarObject*)(ob))->ob_size) [all...] |
/external/chromium_org/third_party/cython/src/Cython/Includes/cpython/ |
array.pxd | 20 Fast C-level new_array(_zeros), resize_array, copy_array, Py_SIZE(obj), 24 cdef array.array[double] n = array.array(d, Py_SIZE(d) * 2 ) 52 from cpython.object cimport Py_SIZE 96 item_count = Py_SIZE(self) 139 op = newarrayobject(Py_TYPE(self), Py_SIZE(self), self.ob_descr) 140 memcpy(op.data.as_chars, self.data.as_chars, Py_SIZE(op) * op.ob_descr.itemsize) 148 cdef Py_ssize_t origsize = Py_SIZE(self) 157 return extend_buffer(self, other.data.as_chars, Py_SIZE(other)) 161 memset(self.data.as_chars, 0, Py_SIZE(self) * self.ob_descr.itemsize)
|
object.pxd | 287 Py_ssize_t Py_SIZE(object o)
|
/external/chromium_org/third_party/cython/src/Cython/Utility/ |
Optimize.c | 34 Py_ssize_t len = Py_SIZE(list); 38 Py_SIZE(list) = len+1; 52 Py_ssize_t len = Py_SIZE(list); 56 Py_SIZE(list) = len+1; 103 Py_SIZE(L) -= 1; 141 Py_SIZE(L) -= 1;
|
TypeConversion.c | 299 switch (Py_SIZE(b)) { 558 switch (Py_SIZE(x)) { 565 if (unlikely(Py_SIZE(x) < 0)) { 579 switch (Py_SIZE(x)) {
|
ModuleSetupCode.c | 73 #define Py_SIZE(ob) (((PyVarObject*)(ob))->ob_size)
|
StringTools.c | 765 Py_ssize_t n = Py_SIZE(bytearray);
|
/external/chromium_org/third_party/bintrees/bintrees/ |
cwalker.c | 69 #define Py_SIZE(ob) (((PyVarObject*)(ob))->ob_size) [all...] |
qavltree.c | 69 #define Py_SIZE(ob) (((PyVarObject*)(ob))->ob_size) [all...] |
qbintree.c | 69 #define Py_SIZE(ob) (((PyVarObject*)(ob))->ob_size) [all...] |
qrbtree.c | 69 #define Py_SIZE(ob) (((PyVarObject*)(ob))->ob_size) [all...] |
/external/chromium_org/third_party/simplejson/ |
_speedups.c | 21 #if PY_VERSION_HEX < 0x02060000 && !defined(Py_SIZE) 22 #define Py_SIZE(ob) (((PyVarObject*)(ob))->ob_size) [all...] |