HomeSort by relevance Sort by last modified time
    Searched refs:PyList_GET_SIZE (Results 1 - 9 of 9) 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/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 2095 milliseconds