/external/python/cpython3/Include/cpython/ |
D | object.h | 116 binaryfunc nb_add; 117 binaryfunc nb_subtract; 118 binaryfunc nb_multiply; 119 binaryfunc nb_remainder; 120 binaryfunc nb_divmod; 127 binaryfunc nb_lshift; 128 binaryfunc nb_rshift; 129 binaryfunc nb_and; 130 binaryfunc nb_xor; 131 binaryfunc nb_or; [all …]
|
/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/cpython3/Doc/c-api/ |
D | typeobj.rst | 204 …| :c:member:`~PyNumberMethods.nb_add` | :c:type:`binaryfunc` | __… 207 …| :c:member:`~PyNumberMethods.nb_inplace_add` | :c:type:`binaryfunc` | __… 209 …| :c:member:`~PyNumberMethods.nb_subtract` | :c:type:`binaryfunc` | __… 212 …| :c:member:`~PyNumberMethods.nb_inplace_subtract` | :c:type:`binaryfunc` | __… 214 …| :c:member:`~PyNumberMethods.nb_multiply` | :c:type:`binaryfunc` | __… 217 …| :c:member:`~PyNumberMethods.nb_inplace_multiply` | :c:type:`binaryfunc` | __… 219 …| :c:member:`~PyNumberMethods.nb_remainder` | :c:type:`binaryfunc` | __… 222 …| :c:member:`~PyNumberMethods.nb_inplace_remainder` | :c:type:`binaryfunc` | __… 224 …| :c:member:`~PyNumberMethods.nb_divmod` | :c:type:`binaryfunc` | __… 242 …| :c:member:`~PyNumberMethods.nb_lshift` | :c:type:`binaryfunc` | __… [all …]
|
/external/python/cpython2/Objects/ |
D | intobject.c | 1369 (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 …]
|
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 | 2085 (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 …]
|
D | structseq.c | 415 (binaryfunc)structseq_concat, /* sq_concat */ 426 (binaryfunc)structseq_subscript,
|
D | bufferobject.c | 836 (binaryfunc)buffer_concat, /*sq_concat*/ 846 (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 | 689 (binaryfunc)tupleconcat, /* sq_concat */ 777 (binaryfunc)tuplesubscript,
|
/external/python/cpython3/Objects/ |
D | complexobject.c | 1050 (binaryfunc)complex_add, /* nb_add */ 1051 (binaryfunc)complex_sub, /* nb_subtract */ 1052 (binaryfunc)complex_mul, /* nb_multiply */ 1053 (binaryfunc)complex_remainder, /* nb_remainder */ 1054 (binaryfunc)complex_divmod, /* nb_divmod */ 1079 (binaryfunc)complex_int_div, /* nb_floor_divide */ 1080 (binaryfunc)complex_div, /* nb_true_divide */
|
D | setobject.c | 2055 (binaryfunc)set_sub, /*nb_subtract*/ 2067 (binaryfunc)set_and, /*nb_and*/ 2068 (binaryfunc)set_xor, /*nb_xor*/ 2069 (binaryfunc)set_or, /*nb_or*/ 2074 (binaryfunc)set_isub, /*nb_inplace_subtract*/ 2080 (binaryfunc)set_iand, /*nb_inplace_and*/ 2081 (binaryfunc)set_ixor, /*nb_inplace_xor*/ 2082 (binaryfunc)set_ior, /*nb_inplace_or*/ 2168 (binaryfunc)set_sub, /*nb_subtract*/ 2180 (binaryfunc)set_and, /*nb_and*/ [all …]
|
D | abstract.c | 832 (*(binaryfunc*)(& ((char*)nb_methods)[slot])) 850 binaryfunc slotv = NULL; in binary_op1() 851 binaryfunc slotw = NULL; in binary_op1() 1116 binaryfunc slot = NB_BINOP(mv, iop_slot); in binary_iop1() 1177 binaryfunc f = NULL; in PyNumber_InPlaceAdd()
|
D | tupleobject.c | 757 (binaryfunc)tupleconcat, /* sq_concat */ 844 (binaryfunc)tuplesubscript,
|
/external/python/cpython2/Doc/c-api/ |
D | typeobj.rst | 23 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/ |
D | pycore_hamt.h | 60 binaryfunc hi_yield;
|
/external/python/cffi/c/ |
D | minibuffer.h | 120 (binaryfunc)0, /*sq_concat*/ 318 (binaryfunc)mb_subscript, /*mp_subscript*/
|
/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*/
|
/external/python/cpython3/Modules/_decimal/ |
D | _decimal.c | 668 (binaryfunc)signaldict_getitem, /* mp_subscript */ 2225 static binaryfunc _py_long_multiply; 2226 static binaryfunc _py_long_floor_divide; 4701 (binaryfunc) nm_mpd_qadd, 4702 (binaryfunc) nm_mpd_qsub, 4703 (binaryfunc) nm_mpd_qmul, 4704 (binaryfunc) nm_mpd_qrem, 4705 (binaryfunc) nm_mpd_qdivmod, 4712 (binaryfunc) 0, /* no shiftl */ 4713 (binaryfunc) 0, /* no shiftr */ [all …]
|
/external/python/cpython3/Modules/_sqlite/ |
D | row.c | 211 /* mp_subscript */ (binaryfunc)pysqlite_row_subscript,
|
/external/python/cpython2/Modules/_sqlite/ |
D | row.c | 217 /* mp_subscript */ (binaryfunc)pysqlite_row_subscript,
|
/external/python/cpython3/Modules/ |
D | _dbmmodule.c | 182 (binaryfunc)dbm_subscript, /*mp_subscript*/
|
/external/protobuf/python/google/protobuf/pyext/ |
D | extension_dict.cc | 353 (binaryfunc)subscript, /* mp_subscript */
|