Home
last modified time | relevance | path

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

12

/third_party/python/Include/cpython/
Dobject.h109 binaryfunc nb_add;
110 binaryfunc nb_subtract;
111 binaryfunc nb_multiply;
112 binaryfunc nb_remainder;
113 binaryfunc nb_divmod;
120 binaryfunc nb_lshift;
121 binaryfunc nb_rshift;
122 binaryfunc nb_and;
123 binaryfunc nb_xor;
124 binaryfunc nb_or;
[all …]
/third_party/python/Doc/c-api/
Dtypeobj.rst206 …| :c:member:`~PyNumberMethods.nb_add` | :c:type:`binaryfunc` | __…
209 …| :c:member:`~PyNumberMethods.nb_inplace_add` | :c:type:`binaryfunc` | __…
211 …| :c:member:`~PyNumberMethods.nb_subtract` | :c:type:`binaryfunc` | __…
214 …| :c:member:`~PyNumberMethods.nb_inplace_subtract` | :c:type:`binaryfunc` | __…
216 …| :c:member:`~PyNumberMethods.nb_multiply` | :c:type:`binaryfunc` | __…
219 …| :c:member:`~PyNumberMethods.nb_inplace_multiply` | :c:type:`binaryfunc` | __…
221 …| :c:member:`~PyNumberMethods.nb_remainder` | :c:type:`binaryfunc` | __…
224 …| :c:member:`~PyNumberMethods.nb_inplace_remainder` | :c:type:`binaryfunc` | __…
226 …| :c:member:`~PyNumberMethods.nb_divmod` | :c:type:`binaryfunc` | __…
244 …| :c:member:`~PyNumberMethods.nb_lshift` | :c:type:`binaryfunc` | __…
[all …]
/third_party/python/Objects/
Dsetobject.c2052 (binaryfunc)set_sub, /*nb_subtract*/
2064 (binaryfunc)set_and, /*nb_and*/
2065 (binaryfunc)set_xor, /*nb_xor*/
2066 (binaryfunc)set_or, /*nb_or*/
2071 (binaryfunc)set_isub, /*nb_inplace_subtract*/
2077 (binaryfunc)set_iand, /*nb_inplace_and*/
2078 (binaryfunc)set_ixor, /*nb_inplace_xor*/
2079 (binaryfunc)set_ior, /*nb_inplace_or*/
2166 (binaryfunc)set_sub, /*nb_subtract*/
2178 (binaryfunc)set_and, /*nb_and*/
[all …]
Dcomplexobject.c1018 (binaryfunc)complex_add, /* nb_add */
1019 (binaryfunc)complex_sub, /* nb_subtract */
1020 (binaryfunc)complex_mul, /* nb_multiply */
1048 (binaryfunc)complex_div, /* nb_true_divide */
Dabstract.c842 (*(binaryfunc*)(& ((char*)nb_methods)[slot]))
863 binaryfunc slotv; in binary_op1()
871 binaryfunc slotw; in binary_op1()
1180 binaryfunc slot = NB_BINOP(mv, iop_slot); in binary_iop1()
1270 binaryfunc func = m->sq_inplace_concat; in PyNumber_InPlaceAdd()
Dtupleobject.c806 (binaryfunc)tupleconcat, /* sq_concat */
893 (binaryfunc)tuplesubscript,
Dbytearrayobject.c2193 (binaryfunc)PyByteArray_Concat, /* sq_concat */
2200 (binaryfunc)bytearray_iconcat, /* sq_inplace_concat */
2206 (binaryfunc)bytearray_subscript,
Ddictobject.c2230 (binaryfunc)dict_subscript, /*mp_subscript*/
4652 (binaryfunc)dictviews_sub, /*nb_subtract*/
4664 (binaryfunc)_PyDictView_Intersect, /*nb_and*/
4665 (binaryfunc)dictviews_xor, /*nb_xor*/
4666 (binaryfunc)dictviews_or, /*nb_or*/
Dlistobject.c2806 (binaryfunc)list_concat, /* sq_concat */
2813 (binaryfunc)list_inplace_concat, /* sq_inplace_concat */
3037 (binaryfunc)list_subscript,
Drangeobject.c676 (binaryfunc)range_subscript, /* mp_subscript */
Dtypeobject.c6515 binaryfunc func = (binaryfunc)wrapped; in wrap_binaryfunc()
6527 binaryfunc func = (binaryfunc)wrapped; in wrap_binaryfunc_l()
6539 binaryfunc func = (binaryfunc)wrapped; in wrap_binaryfunc_r()
Dbytesobject.c1669 (binaryfunc)bytes_concat, /*sq_concat*/
1680 (binaryfunc)bytes_subscript,
Dlongobject.c5613 (binaryfunc)long_add, /*nb_add*/
5614 (binaryfunc)long_sub, /*nb_subtract*/
5615 (binaryfunc)long_mul, /*nb_multiply*/
Ddescrobject.c1026 (binaryfunc)mappingproxy_getitem, /* mp_subscript */
/third_party/python/Include/internal/
Dpycore_hamt.h60 binaryfunc hi_yield;
/third_party/python/Modules/_decimal/
D_decimal.c668 (binaryfunc)signaldict_getitem, /* mp_subscript */
2224 static binaryfunc _py_long_multiply;
2225 static binaryfunc _py_long_floor_divide;
4712 (binaryfunc) nm_mpd_qadd,
4713 (binaryfunc) nm_mpd_qsub,
4714 (binaryfunc) nm_mpd_qmul,
4715 (binaryfunc) nm_mpd_qrem,
4716 (binaryfunc) nm_mpd_qdivmod,
4723 (binaryfunc) 0, /* no shiftl */
4724 (binaryfunc) 0, /* no shiftr */
[all …]
/third_party/protobuf/python/google/protobuf/pyext/
Dextension_dict.cc357 (binaryfunc)subscript, /* mp_subscript */
Ddescriptor_containers.cc291 (binaryfunc)Subscript, // mp_subscript
741 (binaryfunc)SeqSubscript, // mp_subscript
/third_party/python/Include/
Dobject.h185 typedef PyObject * (*binaryfunc)(PyObject *, PyObject *); typedef
/third_party/skia/third_party/externals/libwebp/swig/
Dlibwebp_python_wrap.c1875 (binaryfunc)0, /*nb_add*/ in SwigPyObject_TypeOnce()
1876 (binaryfunc)0, /*nb_subtract*/ in SwigPyObject_TypeOnce()
1877 (binaryfunc)0, /*nb_multiply*/ in SwigPyObject_TypeOnce()
1880 (binaryfunc)0, /*nb_divide*/ in SwigPyObject_TypeOnce()
1882 (binaryfunc)0, /*nb_remainder*/ in SwigPyObject_TypeOnce()
1883 (binaryfunc)0, /*nb_divmod*/ in SwigPyObject_TypeOnce()
/third_party/flutter/skia/third_party/externals/libwebp/swig/
Dlibwebp_python_wrap.c1852 (binaryfunc)0, /*nb_add*/ in SwigPyObject_TypeOnce()
1853 (binaryfunc)0, /*nb_subtract*/ in SwigPyObject_TypeOnce()
1854 (binaryfunc)0, /*nb_multiply*/ in SwigPyObject_TypeOnce()
1857 (binaryfunc)0, /*nb_divide*/ in SwigPyObject_TypeOnce()
1859 (binaryfunc)0, /*nb_remainder*/ in SwigPyObject_TypeOnce()
1860 (binaryfunc)0, /*nb_divmod*/ in SwigPyObject_TypeOnce()
/third_party/python/Python/
Dhamt.c2582 hamt_baseiter_new(PyTypeObject *type, binaryfunc yield, PyHamtObject *o) in hamt_baseiter_new()
2889 (binaryfunc)hamt_tp_subscript, /* mp_subscript */
Dcontext.c701 (binaryfunc)context_tp_subscript, /* mp_subscript */
/third_party/python/Doc/data/
Dstable_abi.dat834 type,binaryfunc,3.2,
/third_party/python/Modules/
D_collectionsmodule.c1567 (binaryfunc)deque_concat, /* sq_concat */
1574 (binaryfunc)deque_inplace_concat, /* sq_inplace_concat */

12