Home
last modified time | relevance | path

Searched refs:binaryfunc (Results 1 – 25 of 65) 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.c1369 (binaryfunc)int_add, /*nb_add*/
1370 (binaryfunc)int_sub, /*nb_subtract*/
1371 (binaryfunc)int_mul, /*nb_multiply*/
1372 (binaryfunc)int_classic_div, /*nb_divide*/
1373 (binaryfunc)int_mod, /*nb_remainder*/
1374 (binaryfunc)int_divmod, /*nb_divmod*/
1381 (binaryfunc)int_lshift, /*nb_lshift*/
1382 (binaryfunc)int_rshift, /*nb_rshift*/
1383 (binaryfunc)int_and, /*nb_and*/
1384 (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.c2085 (binaryfunc)set_sub, /*nb_subtract*/
2098 (binaryfunc)set_and, /*nb_and*/
2099 (binaryfunc)set_xor, /*nb_xor*/
2100 (binaryfunc)set_or, /*nb_or*/
2108 (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*/
2214 (binaryfunc)set_and, /*nb_and*/
[all …]
Dstructseq.c415 (binaryfunc)structseq_concat, /* sq_concat */
426 (binaryfunc)structseq_subscript,
Dbufferobject.c836 (binaryfunc)buffer_concat, /*sq_concat*/
846 (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.c689 (binaryfunc)tupleconcat, /* sq_concat */
777 (binaryfunc)tuplesubscript,
Ddictobject.c1292 (binaryfunc)dict_subscript, /*mp_subscript*/
3139 (binaryfunc)dictviews_sub, /*nb_subtract*/
3152 (binaryfunc)dictviews_and, /*nb_and*/
3153 (binaryfunc)dictviews_xor, /*nb_xor*/
3154 (binaryfunc)dictviews_or, /*nb_or*/
/external/python/cpython3/Objects/
Dcomplexobject.c1081 (binaryfunc)complex_add, /* nb_add */
1082 (binaryfunc)complex_sub, /* nb_subtract */
1083 (binaryfunc)complex_mul, /* nb_multiply */
1084 (binaryfunc)complex_remainder, /* nb_remainder */
1085 (binaryfunc)complex_divmod, /* nb_divmod */
1110 (binaryfunc)complex_int_div, /* nb_floor_divide */
1111 (binaryfunc)complex_div, /* nb_true_divide */
Dsetobject.c2100 (binaryfunc)set_sub, /*nb_subtract*/
2112 (binaryfunc)set_and, /*nb_and*/
2113 (binaryfunc)set_xor, /*nb_xor*/
2114 (binaryfunc)set_or, /*nb_or*/
2119 (binaryfunc)set_isub, /*nb_inplace_subtract*/
2125 (binaryfunc)set_iand, /*nb_inplace_and*/
2126 (binaryfunc)set_ixor, /*nb_inplace_xor*/
2127 (binaryfunc)set_ior, /*nb_inplace_or*/
2211 (binaryfunc)set_sub, /*nb_subtract*/
2223 (binaryfunc)set_and, /*nb_and*/
[all …]
Dabstract.c770 (*(binaryfunc*)(& ((char*)nb_methods)[slot]))
788 binaryfunc slotv = NULL; in binary_op1()
789 binaryfunc slotw = NULL; in binary_op1()
1055 binaryfunc slot = NB_BINOP(mv, iop_slot); in binary_iop1()
1116 binaryfunc f = NULL; in PyNumber_InPlaceAdd()
Dtupleobject.c712 (binaryfunc)tupleconcat, /* sq_concat */
797 (binaryfunc)tuplesubscript,
/external/python/cpython3/Doc/c-api/
Dtypeobj.rst23 Typedefs: unaryfunc, binaryfunc, ternaryfunc, inquiry, intargfunc,
1097 binaryfunc nb_add;
1098 binaryfunc nb_subtract;
1099 binaryfunc nb_multiply;
1100 binaryfunc nb_remainder;
1101 binaryfunc nb_divmod;
1108 binaryfunc nb_lshift;
1109 binaryfunc nb_rshift;
1110 binaryfunc nb_and;
1111 binaryfunc nb_xor;
[all …]
/external/python/cpython2/Doc/c-api/
Dtypeobj.rst23 Typedefs: unaryfunc, binaryfunc, ternaryfunc, inquiry, coercion, intargfunc,
1154 binaryfunc nb_add;
1155 binaryfunc nb_subtract;
1156 binaryfunc nb_multiply;
1157 binaryfunc nb_divide;
1158 binaryfunc nb_remainder;
1159 binaryfunc nb_divmod;
1166 binaryfunc nb_lshift;
1167 binaryfunc nb_rshift;
1168 binaryfunc nb_and;
[all …]
/external/python/cpython3/Include/internal/
Dhamt.h57 binaryfunc hi_yield;
/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.c658 (binaryfunc)signaldict_getitem, /* mp_subscript */
2080 static binaryfunc _py_long_multiply;
2081 static binaryfunc _py_long_floor_divide;
4563 (binaryfunc) nm_mpd_qadd,
4564 (binaryfunc) nm_mpd_qsub,
4565 (binaryfunc) nm_mpd_qmul,
4566 (binaryfunc) nm_mpd_qrem,
4567 (binaryfunc) nm_mpd_qdivmod,
4574 (binaryfunc) 0, /* no shiftl */
4575 (binaryfunc) 0, /* no shiftr */
[all …]
/external/python/cpython3/Modules/_sqlite/
Drow.c214 /* 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*/

123