Lines Matching defs:module

6 "truth($module, a, /)\n"
15 _operator_truth_impl(PyObject *module, PyObject *a);
18 _operator_truth(PyObject *module, PyObject *a)
23 _return_value = _operator_truth_impl(module, a);
34 "add($module, a, b, /)\n"
43 _operator_add_impl(PyObject *module, PyObject *a, PyObject *b);
46 _operator_add(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
57 return_value = _operator_add_impl(module, a, b);
64 "sub($module, a, b, /)\n"
73 _operator_sub_impl(PyObject *module, PyObject *a, PyObject *b);
76 _operator_sub(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
87 return_value = _operator_sub_impl(module, a, b);
94 "mul($module, a, b, /)\n"
103 _operator_mul_impl(PyObject *module, PyObject *a, PyObject *b);
106 _operator_mul(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
117 return_value = _operator_mul_impl(module, a, b);
124 "matmul($module, a, b, /)\n"
133 _operator_matmul_impl(PyObject *module, PyObject *a, PyObject *b);
136 _operator_matmul(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
147 return_value = _operator_matmul_impl(module, a, b);
154 "floordiv($module, a, b, /)\n"
163 _operator_floordiv_impl(PyObject *module, PyObject *a, PyObject *b);
166 _operator_floordiv(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
177 return_value = _operator_floordiv_impl(module, a, b);
184 "truediv($module, a, b, /)\n"
193 _operator_truediv_impl(PyObject *module, PyObject *a, PyObject *b);
196 _operator_truediv(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
207 return_value = _operator_truediv_impl(module, a, b);
214 "mod($module, a, b, /)\n"
223 _operator_mod_impl(PyObject *module, PyObject *a, PyObject *b);
226 _operator_mod(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
237 return_value = _operator_mod_impl(module, a, b);
244 "neg($module, a, /)\n"
253 "pos($module, a, /)\n"
262 "abs($module, a, /)\n"
271 "inv($module, a, /)\n"
280 "invert($module, a, /)\n"
289 "lshift($module, a, b, /)\n"
298 _operator_lshift_impl(PyObject *module, PyObject *a, PyObject *b);
301 _operator_lshift(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
312 return_value = _operator_lshift_impl(module, a, b);
319 "rshift($module, a, b, /)\n"
328 _operator_rshift_impl(PyObject *module, PyObject *a, PyObject *b);
331 _operator_rshift(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
342 return_value = _operator_rshift_impl(module, a, b);
349 "not_($module, a, /)\n"
358 _operator_not__impl(PyObject *module, PyObject *a);
361 _operator_not_(PyObject *module, PyObject *a)
366 _return_value = _operator_not__impl(module, a);
377 "and_($module, a, b, /)\n"
386 _operator_and__impl(PyObject *module, PyObject *a, PyObject *b);
389 _operator_and_(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
400 return_value = _operator_and__impl(module, a, b);
407 "xor($module, a, b, /)\n"
416 _operator_xor_impl(PyObject *module, PyObject *a, PyObject *b);
419 _operator_xor(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
430 return_value = _operator_xor_impl(module, a, b);
437 "or_($module, a, b, /)\n"
446 _operator_or__impl(PyObject *module, PyObject *a, PyObject *b);
449 _operator_or_(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
460 return_value = _operator_or__impl(module, a, b);
467 "iadd($module, a, b, /)\n"
476 _operator_iadd_impl(PyObject *module, PyObject *a, PyObject *b);
479 _operator_iadd(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
490 return_value = _operator_iadd_impl(module, a, b);
497 "isub($module, a, b, /)\n"
506 _operator_isub_impl(PyObject *module, PyObject *a, PyObject *b);
509 _operator_isub(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
520 return_value = _operator_isub_impl(module, a, b);
527 "imul($module, a, b, /)\n"
536 _operator_imul_impl(PyObject *module, PyObject *a, PyObject *b);
539 _operator_imul(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
550 return_value = _operator_imul_impl(module, a, b);
557 "imatmul($module, a, b, /)\n"
566 _operator_imatmul_impl(PyObject *module, PyObject *a, PyObject *b);
569 _operator_imatmul(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
580 return_value = _operator_imatmul_impl(module, a, b);
587 "ifloordiv($module, a, b, /)\n"
596 _operator_ifloordiv_impl(PyObject *module, PyObject *a, PyObject *b);
599 _operator_ifloordiv(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
610 return_value = _operator_ifloordiv_impl(module, a, b);
617 "itruediv($module, a, b, /)\n"
626 _operator_itruediv_impl(PyObject *module, PyObject *a, PyObject *b);
629 _operator_itruediv(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
640 return_value = _operator_itruediv_impl(module, a, b);
647 "imod($module, a, b, /)\n"
656 _operator_imod_impl(PyObject *module, PyObject *a, PyObject *b);
659 _operator_imod(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
670 return_value = _operator_imod_impl(module, a, b);
677 "ilshift($module, a, b, /)\n"
686 _operator_ilshift_impl(PyObject *module, PyObject *a, PyObject *b);
689 _operator_ilshift(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
700 return_value = _operator_ilshift_impl(module, a, b);
707 "irshift($module, a, b, /)\n"
716 _operator_irshift_impl(PyObject *module, PyObject *a, PyObject *b);
719 _operator_irshift(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
730 return_value = _operator_irshift_impl(module, a, b);
737 "iand($module, a, b, /)\n"
746 _operator_iand_impl(PyObject *module, PyObject *a, PyObject *b);
749 _operator_iand(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
760 return_value = _operator_iand_impl(module, a, b);
767 "ixor($module, a, b, /)\n"
776 _operator_ixor_impl(PyObject *module, PyObject *a, PyObject *b);
779 _operator_ixor(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
790 return_value = _operator_ixor_impl(module, a, b);
797 "ior($module, a, b, /)\n"
806 _operator_ior_impl(PyObject *module, PyObject *a, PyObject *b);
809 _operator_ior(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
820 return_value = _operator_ior_impl(module, a, b);
827 "concat($module, a, b, /)\n"
836 _operator_concat_impl(PyObject *module, PyObject *a, PyObject *b);
839 _operator_concat(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
850 return_value = _operator_concat_impl(module, a, b);
857 "iconcat($module, a, b, /)\n"
866 _operator_iconcat_impl(PyObject *module, PyObject *a, PyObject *b);
869 _operator_iconcat(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
880 return_value = _operator_iconcat_impl(module, a, b);
887 "contains($module, a, b, /)\n"
896 _operator_contains_impl(PyObject *module, PyObject *a, PyObject *b);
899 _operator_contains(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
911 _return_value = _operator_contains_impl(module, a, b);
922 "indexOf($module, a, b, /)\n"
931 _operator_indexOf_impl(PyObject *module, PyObject *a, PyObject *b);
934 _operator_indexOf(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
946 _return_value = _operator_indexOf_impl(module, a, b);
957 "countOf($module, a, b, /)\n"
966 _operator_countOf_impl(PyObject *module, PyObject *a, PyObject *b);
969 _operator_countOf(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
981 _return_value = _operator_countOf_impl(module, a, b);
992 "getitem($module, a, b, /)\n"
1001 _operator_getitem_impl(PyObject *module, PyObject *a, PyObject *b);
1004 _operator_getitem(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
1015 return_value = _operator_getitem_impl(module, a, b);
1022 "setitem($module, a, b, c, /)\n"
1031 _operator_setitem_impl(PyObject *module, PyObject *a, PyObject *b,
1035 _operator_setitem(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
1048 return_value = _operator_setitem_impl(module, a, b, c);
1055 "delitem($module, a, b, /)\n"
1064 _operator_delitem_impl(PyObject *module, PyObject *a, PyObject *b);
1067 _operator_delitem(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
1078 return_value = _operator_delitem_impl(module, a, b);
1085 "eq($module, a, b, /)\n"
1094 _operator_eq_impl(PyObject *module, PyObject *a, PyObject *b);
1097 _operator_eq(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
1108 return_value = _operator_eq_impl(module, a, b);
1115 "ne($module, a, b, /)\n"
1124 _operator_ne_impl(PyObject *module, PyObject *a, PyObject *b);
1127 _operator_ne(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
1138 return_value = _operator_ne_impl(module, a, b);
1145 "lt($module, a, b, /)\n"
1154 _operator_lt_impl(PyObject *module, PyObject *a, PyObject *b);
1157 _operator_lt(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
1168 return_value = _operator_lt_impl(module, a, b);
1175 "le($module, a, b, /)\n"
1184 _operator_le_impl(PyObject *module, PyObject *a, PyObject *b);
1187 _operator_le(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
1198 return_value = _operator_le_impl(module, a, b);
1205 "gt($module, a, b, /)\n"
1214 _operator_gt_impl(PyObject *module, PyObject *a, PyObject *b);
1217 _operator_gt(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
1228 return_value = _operator_gt_impl(module, a, b);
1235 "ge($module, a, b, /)\n"
1244 _operator_ge_impl(PyObject *module, PyObject *a, PyObject *b);
1247 _operator_ge(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
1258 return_value = _operator_ge_impl(module, a, b);
1265 "pow($module, a, b, /)\n"
1274 _operator_pow_impl(PyObject *module, PyObject *a, PyObject *b);
1277 _operator_pow(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
1288 return_value = _operator_pow_impl(module, a, b);
1295 "ipow($module, a, b, /)\n"
1304 _operator_ipow_impl(PyObject *module, PyObject *a, PyObject *b);
1307 _operator_ipow(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
1318 return_value = _operator_ipow_impl(module, a, b);
1325 "index($module, a, /)\n"
1334 "is_($module, a, b, /)\n"
1343 _operator_is__impl(PyObject *module, PyObject *a, PyObject *b);
1346 _operator_is_(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
1357 return_value = _operator_is__impl(module, a, b);
1364 "is_not($module, a, b, /)\n"
1373 _operator_is_not_impl(PyObject *module, PyObject *a, PyObject *b);
1376 _operator_is_not(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
1387 return_value = _operator_is_not_impl(module, a, b);
1394 "length_hint($module, obj, default=0, /)\n"
1409 _operator_length_hint_impl(PyObject *module, PyObject *obj,
1413 _operator_length_hint(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
1440 _return_value = _operator_length_hint_impl(module, obj, default_value);
1451 "_compare_digest($module, a, b, /)\n"
1470 _operator__compare_digest_impl(PyObject *module, PyObject *a, PyObject *b);
1473 _operator__compare_digest(PyObject *module, PyObject *const *args, Py_ssize_t nargs)
1484 return_value = _operator__compare_digest_impl(module, a, b);