HomeSort by relevance Sort by last modified time
    Searched defs:Py_ssize_t (Results 1 - 15 of 15) sorted by null

  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
intobject.h 36 PyAPI_FUNC(PyObject *) PyInt_FromUnicode(Py_UNICODE*, Py_ssize_t, int);
40 PyAPI_FUNC(PyObject *) PyInt_FromSsize_t(Py_ssize_t);
42 PyAPI_FUNC(Py_ssize_t) PyInt_AsSsize_t(PyObject *);
76 Py_ssize_t format_spec_len);
longobject.h 22 PyAPI_FUNC(PyObject *) PyLong_FromSsize_t(Py_ssize_t);
27 PyAPI_FUNC(Py_ssize_t) PyLong_AsSsize_t(PyObject *);
41 possible if the number of bits doesn't fit into a Py_ssize_t, sets
43 PyAPI_FUNC(double) _PyLong_Frexp(PyLongObject *a, Py_ssize_t *e);
60 PyAPI_FUNC(PyObject *) PyLong_FromUnicode(Py_UNICODE*, Py_ssize_t, int);
130 Py_ssize_t format_spec_len);
longintrepr.h 31 - the long <-> size_t/Py_ssize_t conversion functions expect that
95 PyAPI_FUNC(PyLongObject *) _PyLong_New(Py_ssize_t);
pyport.h 178 /* Py_ssize_t is a signed integral type such that sizeof(Py_ssize_t) ==
183 typedef ssize_t Py_ssize_t;
185 typedef Py_intptr_t Py_ssize_t;
187 # error "Python needs a typedef for Py_ssize_t in pyport.h."
201 /* Largest positive value of type Py_ssize_t. */
202 #define PY_SSIZE_T_MAX ((Py_ssize_t)(((size_t)-1)>>1))
203 /* Smallest negative value of type Py_ssize_t. */
213 * format to convert an argument with the width of a size_t or Py_ssize_t.
219 * the platform C requires to convert a size_t/Py_ssize_t argument)
    [all...]
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
intobject.h 36 PyAPI_FUNC(PyObject *) PyInt_FromUnicode(Py_UNICODE*, Py_ssize_t, int);
40 PyAPI_FUNC(PyObject *) PyInt_FromSsize_t(Py_ssize_t);
42 PyAPI_FUNC(Py_ssize_t) PyInt_AsSsize_t(PyObject *);
76 Py_ssize_t format_spec_len);
longobject.h 22 PyAPI_FUNC(PyObject *) PyLong_FromSsize_t(Py_ssize_t);
27 PyAPI_FUNC(Py_ssize_t) PyLong_AsSsize_t(PyObject *);
41 possible if the number of bits doesn't fit into a Py_ssize_t, sets
43 PyAPI_FUNC(double) _PyLong_Frexp(PyLongObject *a, Py_ssize_t *e);
60 PyAPI_FUNC(PyObject *) PyLong_FromUnicode(Py_UNICODE*, Py_ssize_t, int);
130 Py_ssize_t format_spec_len);
longintrepr.h 31 - the long <-> size_t/Py_ssize_t conversion functions expect that
95 PyAPI_FUNC(PyLongObject *) _PyLong_New(Py_ssize_t);
pyport.h 178 /* Py_ssize_t is a signed integral type such that sizeof(Py_ssize_t) ==
183 typedef ssize_t Py_ssize_t;
185 typedef Py_intptr_t Py_ssize_t;
187 # error "Python needs a typedef for Py_ssize_t in pyport.h."
201 /* Largest positive value of type Py_ssize_t. */
202 #define PY_SSIZE_T_MAX ((Py_ssize_t)(((size_t)-1)>>1))
203 /* Smallest negative value of type Py_ssize_t. */
213 * format to convert an argument with the width of a size_t or Py_ssize_t.
219 * the platform C requires to convert a size_t/Py_ssize_t argument)
    [all...]
  /external/chromium_org/third_party/protobuf/python/google/protobuf/pyext/
python_descriptor.h 42 typedef int Py_ssize_t;
  /external/clang/test/CodeGen/
union-init.c 4 typedef int Py_ssize_t;
10 Py_ssize_t gc_refs;
  /external/chromium_org/third_party/simplejson/
_speedups.c 25 typedef int Py_ssize_t;
112 static Py_ssize_t
113 ascii_escape_char(Py_UNICODE c, char *output, Py_ssize_t chars);
122 scan_once_str(PyScannerObject *s, PyObject *pystr, Py_ssize_t idx, Py_ssize_t *next_idx_ptr);
124 scan_once_unicode(PyScannerObject *s, PyObject *pystr, Py_ssize_t idx, Py_ssize_t *next_idx_ptr);
126 _build_rval_index_tuple(PyObject *rval, Py_ssize_t idx);
144 encoder_listencode_list(PyEncoderObject *s, PyObject *rval, PyObject *seq, Py_ssize_t indent_level);
146 encoder_listencode_obj(PyEncoderObject *s, PyObject *rval, PyObject *obj, Py_ssize_t indent_level)
    [all...]
  /external/chromium_org/third_party/bintrees/bintrees/
cwalker.c 45 typedef int Py_ssize_t;
76 Py_ssize_t len;
77 Py_ssize_t itemsize;
81 Py_ssize_t *shape;
82 Py_ssize_t *strides;
83 Py_ssize_t *suboffsets;
306 static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject*);
437 Py_ssize_t num_min, Py_ssize_t num_max, Py_ssize_t num_found); /*proto*
    [all...]
qavltree.c 45 typedef int Py_ssize_t;
76 Py_ssize_t len;
77 Py_ssize_t itemsize;
81 Py_ssize_t *shape;
82 Py_ssize_t *strides;
83 Py_ssize_t *suboffsets;
306 static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject*);
455 PyObject *kwds2, PyObject *values[], Py_ssize_t num_pos_args, \
459 Py_ssize_t num_min, Py_ssize_t num_max, Py_ssize_t num_found); /*proto*
    [all...]
qbintree.c 45 typedef int Py_ssize_t;
76 Py_ssize_t len;
77 Py_ssize_t itemsize;
81 Py_ssize_t *shape;
82 Py_ssize_t *strides;
83 Py_ssize_t *suboffsets;
306 static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject*);
455 PyObject *kwds2, PyObject *values[], Py_ssize_t num_pos_args, \
459 Py_ssize_t num_min, Py_ssize_t num_max, Py_ssize_t num_found); /*proto*
    [all...]
qrbtree.c 45 typedef int Py_ssize_t;
76 Py_ssize_t len;
77 Py_ssize_t itemsize;
81 Py_ssize_t *shape;
82 Py_ssize_t *strides;
83 Py_ssize_t *suboffsets;
306 static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject*);
455 PyObject *kwds2, PyObject *values[], Py_ssize_t num_pos_args, \
459 Py_ssize_t num_min, Py_ssize_t num_max, Py_ssize_t num_found); /*proto*
    [all...]

Completed in 966 milliseconds