Home | History | Annotate | Download | only in python2.7

Lines Matching defs:Py_ssize_t

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):
229 * Py_ssize_t index;
233 * Py_ssize_t on the platform.