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

  /external/chromium_org/third_party/cython/src/Cython/Utility/
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) {
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) | likely(i >= 0)) ? i : i + PyList_GET_SIZE(o)
    [all...]
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) {
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, int boundscheck)
    [all...]
MemoryView_C.c 856 if ({{wraparound}} && (__pyx_tmp_idx < 0))
  /external/chromium_org/third_party/cython/src/Cython/Compiler/
MemoryView.py 365 wraparound = int(directives['wraparound'])
    [all...]
ExprNodes.py 117 Used to find (potential) bugs inside of "wraparound=False" sections.
126 "code sections marked as 'wraparound=False' is "
    [all...]
  /external/mksh/src/
Build.sh     [all...]

Completed in 553 milliseconds