OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ob_size
(Results
1 - 11
of
11
) sorted by null
/external/chromium_org/third_party/cython/src/Cython/Utility/
arrayarray.h
38
Py_ssize_t
ob_size
;
member in struct:arrayobject
87
op->
ob_size
= size;
115
self->
ob_size
= n;
127
self->
ob_size
= n;
138
self->
ob_size
= n;
ModuleSetupCode.c
73
#define Py_SIZE(ob) (((PyVarObject*)(ob))->
ob_size
)
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/
object.h
93
* has room for
ob_size
elements. Note that
ob_size
is an element count,
98
Py_ssize_t
ob_size
; /* Number of items in variable part */
116
#define Py_SIZE(ob) (((PyVarObject*)(ob))->
ob_size
)
[
all
...]
/prebuilts/python/linux-x86/2.7.5/include/python2.7/
object.h
93
* has room for
ob_size
elements. Note that
ob_size
is an element count,
98
Py_ssize_t
ob_size
; /* Number of items in variable part */
116
#define Py_SIZE(ob) (((PyVarObject*)(ob))->
ob_size
)
[
all
...]
/external/chromium_org/third_party/cython/src/Cython/Includes/cpython/
array.pxd
87
Py_ssize_t
ob_size
/external/chromium_org/third_party/cython/src/Cython/Debugger/
libpython.py
202
object) "
ob_size
" are fields of the type in question.
206
so that the "
ob_size
" field is located insize the "ob_base" field, and
216
if name == '
ob_size
':
499
tsize = int_from_int(self._gdbval.cast(type_PyVarObject_ptr)['
ob_size
'])
777
for i in safe_range(int_from_int(self.field('
ob_size
')))]
788
for i in safe_range(int_from_int(self.field('
ob_size
'))):
808
SUM(for i=0 through abs(
ob_size
)-1) ob_digit[i] * 2**(SHIFT*i)
809
Negative numbers are represented with
ob_size
< 0;
810
zero is represented by
ob_size
== 0.
816
ob_size
= long(self.field('ob_size')
[
all
...]
/external/chromium_org/third_party/simplejson/
_speedups.c
22
#define Py_SIZE(ob) (((PyVarObject*)(ob))->
ob_size
)
[
all
...]
/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
...]
Completed in 417 milliseconds