HomeSort by relevance Sort by last modified time
    Searched refs:binaryfunc (Results 1 - 25 of 111) sorted by null

1 2 3 4 5

  /prebuilts/misc/common/swig/include/2.0.11/python/
pyopers.swg 99 %pybinoperator(__add__, *::operator+, binaryfunc, nb_add);
102 %pybinoperator(__sub__, *::operator-, binaryfunc, nb_subtract);
105 %pybinoperator(__mul__, *::operator*, binaryfunc, nb_multiply);
106 %pybinoperator(__div__, *::operator/, binaryfunc, nb_div);
107 %pybinoperator(__mod__, *::operator%, binaryfunc, nb_remainder);
108 %pybinoperator(__lshift__, *::operator<<, binaryfunc, nb_lshift);
109 %pybinoperator(__rshift__, *::operator>>, binaryfunc, nb_rshift);
110 %pybinoperator(__and__, *::operator&, binaryfunc, nb_and);
111 %pybinoperator(__or__, *::operator|, binaryfunc, nb_or);
112 %pybinoperator(__xor__, *::operator^, binaryfunc, nb_xor)
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Include/
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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Include/
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/Include/
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/Include/
object.h 170 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...]
  /prebuilts/gdb/darwin-x86/include/python2.7/
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...]
  /prebuilts/gdb/linux-x86/include/python2.7/
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...]
  /prebuilts/python/darwin-x86/2.7.5/include/python2.7/
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...]
  /prebuilts/python/linux-x86/2.7.5/include/python2.7/
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...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Objects/
intobject.c     [all...]
complexobject.c     [all...]
setobject.c     [all...]
structseq.c 415 (binaryfunc)structseq_concat, /* sq_concat */
426 (binaryfunc)structseq_subscript,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Objects/
intobject.c     [all...]
complexobject.c     [all...]
setobject.c     [all...]
structseq.c 414 (binaryfunc)structseq_concat, /* sq_concat */
425 (binaryfunc)structseq_subscript,
  /external/python/cpython2/Objects/
intobject.c     [all...]
complexobject.c     [all...]
setobject.c     [all...]
structseq.c 415 (binaryfunc)structseq_concat, /* sq_concat */
426 (binaryfunc)structseq_subscript,
  /external/python/cpython3/Objects/
complexobject.c 1067 (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 */
setobject.c     [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
row.c 198 /* mp_subscript */ (binaryfunc)pysqlite_row_subscript,
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
zlibmodule.c 887 {"compress", (binaryfunc)PyZlib_objcompress, METH_VARARGS,
889 {"flush", (binaryfunc)PyZlib_flush, METH_VARARGS,
900 {"decompress", (binaryfunc)PyZlib_objdecompress, METH_VARARGS,
902 {"flush", (binaryfunc)PyZlib_unflush, METH_VARARGS,
    [all...]

Completed in 1358 milliseconds

1 2 3 4 5