/external/python/cpython2/Include/ |
D | object.h | 134 typedef PyObject * (*binaryfunc)(PyObject *, PyObject *); typedef 228 binaryfunc nb_add; 229 binaryfunc nb_subtract; 230 binaryfunc nb_multiply; 231 binaryfunc nb_divide; 232 binaryfunc nb_remainder; 233 binaryfunc nb_divmod; 240 binaryfunc nb_lshift; 241 binaryfunc nb_rshift; 242 binaryfunc nb_and; [all …]
|
/external/python/cpython2/Objects/ |
D | intobject.c | 1366 (binaryfunc)int_add, /*nb_add*/ 1367 (binaryfunc)int_sub, /*nb_subtract*/ 1368 (binaryfunc)int_mul, /*nb_multiply*/ 1369 (binaryfunc)int_classic_div, /*nb_divide*/ 1370 (binaryfunc)int_mod, /*nb_remainder*/ 1371 (binaryfunc)int_divmod, /*nb_divmod*/ 1378 (binaryfunc)int_lshift, /*nb_lshift*/ 1379 (binaryfunc)int_rshift, /*nb_rshift*/ 1380 (binaryfunc)int_and, /*nb_and*/ 1381 (binaryfunc)int_xor, /*nb_xor*/ [all …]
|
D | complexobject.c | 1274 (binaryfunc)complex_add, /* nb_add */ 1275 (binaryfunc)complex_sub, /* nb_subtract */ 1276 (binaryfunc)complex_mul, /* nb_multiply */ 1277 (binaryfunc)complex_classic_div, /* nb_divide */ 1278 (binaryfunc)complex_remainder, /* nb_remainder */ 1279 (binaryfunc)complex_divmod, /* nb_divmod */ 1308 (binaryfunc)complex_int_div, /* nb_floor_divide */ 1309 (binaryfunc)complex_div, /* nb_true_divide */
|
D | setobject.c | 2080 (binaryfunc)set_sub, /*nb_subtract*/ 2093 (binaryfunc)set_and, /*nb_and*/ 2094 (binaryfunc)set_xor, /*nb_xor*/ 2095 (binaryfunc)set_or, /*nb_or*/ 2103 (binaryfunc)set_isub, /*nb_inplace_subtract*/ 2110 (binaryfunc)set_iand, /*nb_inplace_and*/ 2111 (binaryfunc)set_ixor, /*nb_inplace_xor*/ 2112 (binaryfunc)set_ior, /*nb_inplace_or*/ 2196 (binaryfunc)set_sub, /*nb_subtract*/ 2209 (binaryfunc)set_and, /*nb_and*/ [all …]
|
D | structseq.c | 415 (binaryfunc)structseq_concat, /* sq_concat */ 426 (binaryfunc)structseq_subscript,
|
D | bufferobject.c | 817 (binaryfunc)buffer_concat, /*sq_concat*/ 827 (binaryfunc)buffer_subscript,
|
D | abstract.c | 896 (*(binaryfunc*)(& ((char*)nb_methods)[slot])) 926 binaryfunc slotv = NULL; 927 binaryfunc slotw = NULL; 964 binaryfunc slot; 1282 binaryfunc slot = NB_BINOP(mv, iop_slot); 1345 binaryfunc f = NULL;
|
D | tupleobject.c | 692 (binaryfunc)tupleconcat, /* sq_concat */ 780 (binaryfunc)tuplesubscript,
|
D | dictobject.c | 1246 (binaryfunc)dict_subscript, /*mp_subscript*/ 3068 (binaryfunc)dictviews_sub, /*nb_subtract*/ 3081 (binaryfunc)dictviews_and, /*nb_and*/ 3082 (binaryfunc)dictviews_xor, /*nb_xor*/ 3083 (binaryfunc)dictviews_or, /*nb_or*/
|
D | classobject.c | 1155 (binaryfunc)instance_subscript, /* mp_subscript */ 1453 half_binop(PyObject *v, PyObject *w, char *opname, binaryfunc thisfunc, in half_binop() 1523 binaryfunc thisfunc) in do_binop() 1535 char *ropname, binaryfunc thisfunc) in do_binop_inplace()
|
D | memoryobject.c | 780 (binaryfunc)memory_subscript, /* mp_subscript */
|
D | bytearrayobject.c | 2796 (binaryfunc)PyByteArray_Concat, /* sq_concat */ 2803 (binaryfunc)bytearray_iconcat, /* sq_inplace_concat */ 2809 (binaryfunc)bytearray_subscript,
|
D | listobject.c | 2531 (binaryfunc)list_concat, /* sq_concat */ 2538 (binaryfunc)list_inplace_concat, /* sq_inplace_concat */ 2765 (binaryfunc)list_subscript,
|
/external/python/cpython2/Doc/c-api/ |
D | typeobj.rst | 23 Typedefs: unaryfunc, binaryfunc, ternaryfunc, inquiry, coercion, intargfunc, 1169 binaryfunc nb_add; 1170 binaryfunc nb_subtract; 1171 binaryfunc nb_multiply; 1172 binaryfunc nb_divide; 1173 binaryfunc nb_remainder; 1174 binaryfunc nb_divmod; 1181 binaryfunc nb_lshift; 1182 binaryfunc nb_rshift; 1183 binaryfunc nb_and; [all …]
|
/external/python/cpython2/Modules/ |
D | zlibmodule.c | 939 {"compress", (binaryfunc)PyZlib_objcompress, METH_VARARGS, 941 {"flush", (binaryfunc)PyZlib_flush, METH_VARARGS, 952 {"decompress", (binaryfunc)PyZlib_objdecompress, METH_VARARGS, 954 {"flush", (binaryfunc)PyZlib_unflush, METH_VARARGS,
|
D | dbmmodule.c | 203 (binaryfunc)dbm_subscript, /*mp_subscript*/
|
D | gdbmmodule.c | 217 (binaryfunc)dbm_subscript, /*mp_subscript*/
|
D | mmapmodule.c | 997 (binaryfunc)mmap_concat, /*sq_concat*/ 1007 (binaryfunc)mmap_subscript,
|
D | arraymodule.c | 1893 (binaryfunc)array_subscr, 1937 (binaryfunc)array_concat, /*sq_concat*/ 1944 (binaryfunc)array_inplace_concat, /*sq_inplace_concat*/
|
D | bsddbmodule.c | 379 (binaryfunc)bsddb_subscript, /*mp_subscript*/
|
/external/python/cpython2/Modules/_sqlite/ |
D | row.c | 217 /* mp_subscript */ (binaryfunc)pysqlite_row_subscript,
|
/external/protobuf/python/google/protobuf/pyext/ |
D | extension_dict.cc | 279 (binaryfunc)subscript, /* mp_subscript */
|
D | repeated_composite_container.cc | 549 (binaryfunc)Subscript, /* mp_subscript */
|
D | repeated_scalar_container.cc | 745 (binaryfunc)Subscript, /* mp_subscript */
|
/external/python/cpython2/RISCOS/Modules/ |
D | swimodule.c | 283 (binaryfunc)block_concat, /*sq_concat*/
|