Searched defs:wraparound (Results 1 - 2 of 2) sorted by relevance

/external/chromium_org/third_party/cython/src/Cython/Utility/
H A DStringTools.c274 #define __Pyx_GetItemInt_ByteArray(o, i, type, is_signed, to_py_func, is_list, wraparound, boundscheck) \
276 __Pyx_GetItemInt_ByteArray_Fast(o, (Py_ssize_t)i, wraparound, boundscheck) : \
280 int wraparound, int boundscheck);
285 int wraparound, int boundscheck) {
287 if (wraparound | boundscheck) {
289 if (wraparound & unlikely(i < 0)) i += length;
304 #define __Pyx_SetItemInt_ByteArray(o, i, v, type, is_signed, to_py_func, is_list, wraparound, boundscheck) \
306 __Pyx_SetItemInt_ByteArray_Fast(o, (Py_ssize_t)i, v, wraparound, boundscheck) : \
310 int wraparound, int boundscheck);
315 int wraparound, in
284 __Pyx_GetItemInt_ByteArray_Fast(PyObject* string, Py_ssize_t i, int wraparound, int boundscheck) argument
314 __Pyx_SetItemInt_ByteArray_Fast(PyObject* string, Py_ssize_t i, unsigned char v, int wraparound, int boundscheck) argument
346 __Pyx_GetItemInt_Unicode_Fast(PyObject* ustring, Py_ssize_t i, int wraparound, int boundscheck) argument
[all...]
H A DObjectHandling.c250 #define __Pyx_GetItemInt(o, i, type, is_signed, to_py_func, is_list, wraparound, boundscheck) \
252 __Pyx_GetItemInt_Fast(o, (Py_ssize_t)i, is_list, wraparound, boundscheck) : \
257 #define __Pyx_GetItemInt_{{type}}(o, i, type, is_signed, to_py_func, is_list, wraparound, boundscheck) \
259 __Pyx_GetItemInt_{{type}}_Fast(o, (Py_ssize_t)i, wraparound, boundscheck) : \
263 int wraparound, int boundscheck);
268 int is_list, int wraparound, int boundscheck);
282 int wraparound, int boundscheck) {
284 if (wraparound & unlikely(i < 0)) i += Py{{type}}_GET_SIZE(o);
298 int is_list, int wraparound, int boundscheck) {
301 Py_ssize_t n = ((!wraparound) | likel
281 _Fast(PyObject *o, Py_ssize_t i, int wraparound, int boundscheck) argument
297 __Pyx_GetItemInt_Fast(PyObject *o, Py_ssize_t i, int is_list, int wraparound, int boundscheck) argument
364 __Pyx_SetItemInt_Fast(PyObject *o, Py_ssize_t i, PyObject *v, int is_list, int wraparound, int boundscheck) argument
430 __Pyx_DelItemInt_Fast(PyObject *o, Py_ssize_t i, CYTHON_UNUSED int is_list, int wraparound) argument
[all...]

Completed in 498 milliseconds