HomeSort by relevance Sort by last modified time
    Searched refs:boundscheck (Results 1 - 5 of 5) sorted by null

  /external/chromium_org/third_party/cython/src/Cython/Utility/
StringTools.c 274 #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) {
290 if ((!boundscheck) || likely((0 <= i) & (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, int boundscheck) {
    [all...]
ObjectHandling.c 250 #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) {
285 if ((!boundscheck) || likely((0 <= i) & (i < Py{{type}}_GET_SIZE(o)))) {
298 int is_list, int wraparound, int boundscheck) {
302 if ((!boundscheck) || (likely((n >= 0) & (n < PyList_GET_SIZE(o)))))
    [all...]
MemoryView_C.c 859 if ({{boundscheck}} && (__pyx_tmp_idx < 0 || __pyx_tmp_idx >= __pyx_tmp_shape)) {
  /external/chromium_org/third_party/cython/src/Cython/Compiler/
MemoryView.py 366 boundscheck = int(directives['boundscheck'])
    [all...]
ExprNodes.py     [all...]

Completed in 35 milliseconds