Home
last modified time | relevance | path

Searched refs:binaryfunc (Results 1 – 25 of 61) sorted by relevance

123

/external/python/cpython2/Include/
Dobject.h134 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/cpython3/Include/
Dobject.h170 typedef PyObject * (*binaryfunc)(PyObject *, PyObject *); typedef
245 binaryfunc nb_add;
246 binaryfunc nb_subtract;
247 binaryfunc nb_multiply;
248 binaryfunc nb_remainder;
249 binaryfunc nb_divmod;
256 binaryfunc nb_lshift;
257 binaryfunc nb_rshift;
258 binaryfunc nb_and;
259 binaryfunc nb_xor;
[all …]
/external/python/cpython2/Objects/
Dintobject.c1366 (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 …]
Dcomplexobject.c1274 (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 */
Dsetobject.c2080 (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 …]
Dstructseq.c415 (binaryfunc)structseq_concat, /* sq_concat */
426 (binaryfunc)structseq_subscript,
Dbufferobject.c817 (binaryfunc)buffer_concat, /*sq_concat*/
827 (binaryfunc)buffer_subscript,
Dabstract.c896 (*(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;
Dtupleobject.c692 (binaryfunc)tupleconcat, /* sq_concat */
780 (binaryfunc)tuplesubscript,
Ddictobject.c1246 (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*/
/external/python/cpython3/Objects/
Dcomplexobject.c1067 (binaryfunc)complex_add, /* nb_add */
1068 (binaryfunc)complex_sub, /* nb_subtract */
1069 (binaryfunc)complex_mul, /* nb_multiply */
1070 (binaryfunc)complex_remainder, /* nb_remainder */
1071 (binaryfunc)complex_divmod, /* nb_divmod */
1096 (binaryfunc)complex_int_div, /* nb_floor_divide */
1097 (binaryfunc)complex_div, /* nb_true_divide */
Dsetobject.c2090 (binaryfunc)set_sub, /*nb_subtract*/
2102 (binaryfunc)set_and, /*nb_and*/
2103 (binaryfunc)set_xor, /*nb_xor*/
2104 (binaryfunc)set_or, /*nb_or*/
2109 (binaryfunc)set_isub, /*nb_inplace_subtract*/
2115 (binaryfunc)set_iand, /*nb_inplace_and*/
2116 (binaryfunc)set_ixor, /*nb_inplace_xor*/
2117 (binaryfunc)set_ior, /*nb_inplace_or*/
2201 (binaryfunc)set_sub, /*nb_subtract*/
2213 (binaryfunc)set_and, /*nb_and*/
[all …]
Dtupleobject.c697 (binaryfunc)tupleconcat, /* sq_concat */
785 (binaryfunc)tuplesubscript,
Dabstract.c743 (*(binaryfunc*)(& ((char*)nb_methods)[slot]))
761 binaryfunc slotv = NULL; in binary_op1()
762 binaryfunc slotw = NULL; in binary_op1()
1013 binaryfunc slot = NB_BINOP(mv, iop_slot); in binary_iop1()
1074 binaryfunc f = NULL; in PyNumber_InPlaceAdd()
/external/python/cpython3/Doc/c-api/
Dtypeobj.rst23 Typedefs: unaryfunc, binaryfunc, ternaryfunc, inquiry, intargfunc,
1096 binaryfunc nb_add;
1097 binaryfunc nb_subtract;
1098 binaryfunc nb_multiply;
1099 binaryfunc nb_remainder;
1100 binaryfunc nb_divmod;
1107 binaryfunc nb_lshift;
1108 binaryfunc nb_rshift;
1109 binaryfunc nb_and;
1110 binaryfunc nb_xor;
[all …]
/external/python/cpython2/Doc/c-api/
Dtypeobj.rst23 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/
Dzlibmodule.c939 {"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,
Ddbmmodule.c203 (binaryfunc)dbm_subscript, /*mp_subscript*/
Dgdbmmodule.c217 (binaryfunc)dbm_subscript, /*mp_subscript*/
/external/python/cpython3/Modules/_decimal/
D_decimal.c668 (binaryfunc)signaldict_getitem, /* mp_subscript */
2215 static binaryfunc _py_long_multiply;
2216 static binaryfunc _py_long_floor_divide;
4697 (binaryfunc) nm_mpd_qadd,
4698 (binaryfunc) nm_mpd_qsub,
4699 (binaryfunc) nm_mpd_qmul,
4700 (binaryfunc) nm_mpd_qrem,
4701 (binaryfunc) nm_mpd_qdivmod,
4708 (binaryfunc) 0, /* no shiftl */
4709 (binaryfunc) 0, /* no shiftr */
[all …]
/external/python/cpython3/Modules/_sqlite/
Drow.c213 /* mp_subscript */ (binaryfunc)pysqlite_row_subscript,
/external/python/cpython2/Modules/_sqlite/
Drow.c217 /* mp_subscript */ (binaryfunc)pysqlite_row_subscript,
/external/protobuf/python/google/protobuf/pyext/
Dextension_dict.cc279 (binaryfunc)subscript, /* mp_subscript */
/external/python/cpython3/Modules/
D_dbmmodule.c173 (binaryfunc)dbm_subscript, /*mp_subscript*/
D_gdbmmodule.c241 (binaryfunc)dbm_subscript, /*mp_subscript*/

123