OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:PyList_GET_SIZE
(Results
1 - 15
of
15
) sorted by null
/prebuilts/python/darwin-x86/2.7.5/include/python2.7/
listobject.h
63
#define
PyList_GET_SIZE
(op) Py_SIZE(op)
abstract.h
[
all
...]
/prebuilts/python/linux-x86/2.7.5/include/python2.7/
listobject.h
63
#define
PyList_GET_SIZE
(op) Py_SIZE(op)
abstract.h
[
all
...]
/external/chromium_org/third_party/cython/src/Cython/Utility/
Optimize.c
102
if (likely(
PyList_GET_SIZE
(L) > (((PyListObject*)L)->allocated >> 1))) {
104
return PyList_GET_ITEM(L,
PyList_GET_SIZE
(L));
133
Py_ssize_t size =
PyList_GET_SIZE
(L);
321
if (unlikely(pos >=
PyList_GET_SIZE
(iter_obj))) return 0;
Builtins.c
35
for (i =
PyList_GET_SIZE
(names)-1; i >= 0; i--) {
ObjectHandling.c
301
Py_ssize_t n = ((!wraparound) | likely(i >= 0)) ? i : i +
PyList_GET_SIZE
(o);
302
if ((!boundscheck) || (likely((n >= 0) & (n <
PyList_GET_SIZE
(o))))) {
368
Py_ssize_t n = (!wraparound) ? i : ((likely(i >= 0)) ? i : i +
PyList_GET_SIZE
(o));
369
if ((!boundscheck) || likely((n >= 0) & (n <
PyList_GET_SIZE
(o)))) {
[
all
...]
CythonFunction.c
723
for (i = 0; i <
PyList_GET_SIZE
(cyfunctions); i++) {
[
all
...]
/external/lldb/source/Interpreter/
PythonDataObjects.cpp
258
return
PyList_GET_SIZE
(m_py_obj);
/external/chromium_org/third_party/cython/src/Cython/Includes/cpython/
list.pxd
29
Py_ssize_t
PyList_GET_SIZE
(object list)
/external/chromium_org/third_party/bintrees/bintrees/
qavltree.c
478
if (likely((0 <= i) & (i <
PyList_GET_SIZE
(o)))) {
483
else if ((-
PyList_GET_SIZE
(o) <= i) & (i < 0)) {
484
PyObject *r = PyList_GET_ITEM(o,
PyList_GET_SIZE
(o) + i);
519
Py_ssize_t n = (likely(i >= 0)) ? i : i +
PyList_GET_SIZE
(o);
520
if (likely((n >= 0) & (n <
PyList_GET_SIZE
(o)))) {
[
all
...]
qbintree.c
478
if (likely((0 <= i) & (i <
PyList_GET_SIZE
(o)))) {
483
else if ((-
PyList_GET_SIZE
(o) <= i) & (i < 0)) {
484
PyObject *r = PyList_GET_ITEM(o,
PyList_GET_SIZE
(o) + i);
519
Py_ssize_t n = (likely(i >= 0)) ? i : i +
PyList_GET_SIZE
(o);
520
if (likely((n >= 0) & (n <
PyList_GET_SIZE
(o)))) {
[
all
...]
qrbtree.c
478
if (likely((0 <= i) & (i <
PyList_GET_SIZE
(o)))) {
483
else if ((-
PyList_GET_SIZE
(o) <= i) & (i < 0)) {
484
PyObject *r = PyList_GET_ITEM(o,
PyList_GET_SIZE
(o) + i);
519
Py_ssize_t n = (likely(i >= 0)) ? i : i +
PyList_GET_SIZE
(o);
520
if (likely((n >= 0) & (n <
PyList_GET_SIZE
(o)))) {
[
all
...]
/external/chromium_org/third_party/protobuf/python/google/protobuf/pyext/
python-proto2.cc
[
all
...]
/external/chromium_org/third_party/simplejson/
_speedups.c
[
all
...]
Completed in 843 milliseconds