/external/chromium_org/third_party/cython/src/Cython/Utility/ |
D | ObjectHandling.c | 250 #define __Pyx_GetItemInt(o, i, type, is_signed, to_py_func, is_list, wraparound, boundscheck) \ argument 254 __Pyx_GetItemInt_Generic(o, to_py_func(i)))) 257 #define __Pyx_GetItemInt_{{type}}(o, i, type, is_signed, to_py_func, is_list, wraparound, boundsche… 344 #define __Pyx_SetItemInt(o, i, v, type, is_signed, to_py_func, is_list, wraparound, boundscheck) \ 348 __Pyx_SetItemInt_Generic(o, to_py_func(i), v))) 410 #define __Pyx_DelItemInt(o, i, type, is_signed, to_py_func, is_list, wraparound, boundscheck) \ 414 __Pyx_DelItem_Generic(o, to_py_func(i))))
|
D | StringTools.c | 274 #define __Pyx_GetItemInt_ByteArray(o, i, type, is_signed, to_py_func, is_list, wraparound, boundsch… argument 304 #define __Pyx_SetItemInt_ByteArray(o, i, v, type, is_signed, to_py_func, is_list, wraparound, bound… argument 336 #define __Pyx_GetItemInt_Unicode(o, i, type, is_signed, to_py_func, is_list, wraparound, boundschec… argument
|
/external/chromium_org/third_party/bintrees/bintrees/ |
D | qavltree.c | 473 #define __Pyx_GetItemInt_List(o, i, size, to_py_func) (((size) <= sizeof(Py_ssize_t)) ? \ argument 475 __Pyx_GetItemInt_Generic(o, to_py_func(i))) 493 #define __Pyx_GetItemInt_Tuple(o, i, size, to_py_func) (((size) <= sizeof(Py_ssize_t)) ? \ argument 495 __Pyx_GetItemInt_Generic(o, to_py_func(i))) 513 #define __Pyx_GetItemInt(o, i, size, to_py_func) (((size) <= sizeof(Py_ssize_t)) ? \ argument 515 __Pyx_GetItemInt_Generic(o, to_py_func(i)))
|
D | qrbtree.c | 473 #define __Pyx_GetItemInt_List(o, i, size, to_py_func) (((size) <= sizeof(Py_ssize_t)) ? \ argument 475 __Pyx_GetItemInt_Generic(o, to_py_func(i))) 493 #define __Pyx_GetItemInt_Tuple(o, i, size, to_py_func) (((size) <= sizeof(Py_ssize_t)) ? \ argument 495 __Pyx_GetItemInt_Generic(o, to_py_func(i))) 513 #define __Pyx_GetItemInt(o, i, size, to_py_func) (((size) <= sizeof(Py_ssize_t)) ? \ argument 515 __Pyx_GetItemInt_Generic(o, to_py_func(i)))
|
D | qbintree.c | 473 #define __Pyx_GetItemInt_List(o, i, size, to_py_func) (((size) <= sizeof(Py_ssize_t)) ? \ argument 475 __Pyx_GetItemInt_Generic(o, to_py_func(i))) 493 #define __Pyx_GetItemInt_Tuple(o, i, size, to_py_func) (((size) <= sizeof(Py_ssize_t)) ? \ argument 495 __Pyx_GetItemInt_Generic(o, to_py_func(i))) 513 #define __Pyx_GetItemInt(o, i, size, to_py_func) (((size) <= sizeof(Py_ssize_t)) ? \ argument 515 __Pyx_GetItemInt_Generic(o, to_py_func(i)))
|
/external/chromium_org/third_party/cython/src/Cython/Compiler/ |
D | PyrexTypes.py | 697 to_py_func, from_py_func = self.dtype_object_conversion_funcs(env) 698 to_py_func = "(PyObject *(*)(char *)) " + to_py_func 701 tup = (obj.result(), self.ndim, to_py_func, from_py_func,
|