• Home
  • Raw
  • Download

Lines Matching refs:PyObject

15 _operator_truth_impl(PyObject *module, PyObject *a);
17 static PyObject *
18 _operator_truth(PyObject *module, PyObject *a) in _operator_truth()
20 PyObject *return_value = NULL; in _operator_truth()
42 static PyObject *
43 _operator_add_impl(PyObject *module, PyObject *a, PyObject *b);
45 static PyObject *
46 _operator_add(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_add()
48 PyObject *return_value = NULL; in _operator_add()
49 PyObject *a; in _operator_add()
50 PyObject *b; in _operator_add()
72 static PyObject *
73 _operator_sub_impl(PyObject *module, PyObject *a, PyObject *b);
75 static PyObject *
76 _operator_sub(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_sub()
78 PyObject *return_value = NULL; in _operator_sub()
79 PyObject *a; in _operator_sub()
80 PyObject *b; in _operator_sub()
102 static PyObject *
103 _operator_mul_impl(PyObject *module, PyObject *a, PyObject *b);
105 static PyObject *
106 _operator_mul(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_mul()
108 PyObject *return_value = NULL; in _operator_mul()
109 PyObject *a; in _operator_mul()
110 PyObject *b; in _operator_mul()
132 static PyObject *
133 _operator_matmul_impl(PyObject *module, PyObject *a, PyObject *b);
135 static PyObject *
136 _operator_matmul(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_matmul()
138 PyObject *return_value = NULL; in _operator_matmul()
139 PyObject *a; in _operator_matmul()
140 PyObject *b; in _operator_matmul()
162 static PyObject *
163 _operator_floordiv_impl(PyObject *module, PyObject *a, PyObject *b);
165 static PyObject *
166 _operator_floordiv(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_floordiv()
168 PyObject *return_value = NULL; in _operator_floordiv()
169 PyObject *a; in _operator_floordiv()
170 PyObject *b; in _operator_floordiv()
192 static PyObject *
193 _operator_truediv_impl(PyObject *module, PyObject *a, PyObject *b);
195 static PyObject *
196 _operator_truediv(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_truediv()
198 PyObject *return_value = NULL; in _operator_truediv()
199 PyObject *a; in _operator_truediv()
200 PyObject *b; in _operator_truediv()
222 static PyObject *
223 _operator_mod_impl(PyObject *module, PyObject *a, PyObject *b);
225 static PyObject *
226 _operator_mod(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_mod()
228 PyObject *return_value = NULL; in _operator_mod()
229 PyObject *a; in _operator_mod()
230 PyObject *b; in _operator_mod()
297 static PyObject *
298 _operator_lshift_impl(PyObject *module, PyObject *a, PyObject *b);
300 static PyObject *
301 _operator_lshift(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_lshift()
303 PyObject *return_value = NULL; in _operator_lshift()
304 PyObject *a; in _operator_lshift()
305 PyObject *b; in _operator_lshift()
327 static PyObject *
328 _operator_rshift_impl(PyObject *module, PyObject *a, PyObject *b);
330 static PyObject *
331 _operator_rshift(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_rshift()
333 PyObject *return_value = NULL; in _operator_rshift()
334 PyObject *a; in _operator_rshift()
335 PyObject *b; in _operator_rshift()
358 _operator_not__impl(PyObject *module, PyObject *a);
360 static PyObject *
361 _operator_not_(PyObject *module, PyObject *a) in _operator_not_()
363 PyObject *return_value = NULL; in _operator_not_()
385 static PyObject *
386 _operator_and__impl(PyObject *module, PyObject *a, PyObject *b);
388 static PyObject *
389 _operator_and_(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_and_()
391 PyObject *return_value = NULL; in _operator_and_()
392 PyObject *a; in _operator_and_()
393 PyObject *b; in _operator_and_()
415 static PyObject *
416 _operator_xor_impl(PyObject *module, PyObject *a, PyObject *b);
418 static PyObject *
419 _operator_xor(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_xor()
421 PyObject *return_value = NULL; in _operator_xor()
422 PyObject *a; in _operator_xor()
423 PyObject *b; in _operator_xor()
445 static PyObject *
446 _operator_or__impl(PyObject *module, PyObject *a, PyObject *b);
448 static PyObject *
449 _operator_or_(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_or_()
451 PyObject *return_value = NULL; in _operator_or_()
452 PyObject *a; in _operator_or_()
453 PyObject *b; in _operator_or_()
475 static PyObject *
476 _operator_iadd_impl(PyObject *module, PyObject *a, PyObject *b);
478 static PyObject *
479 _operator_iadd(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_iadd()
481 PyObject *return_value = NULL; in _operator_iadd()
482 PyObject *a; in _operator_iadd()
483 PyObject *b; in _operator_iadd()
505 static PyObject *
506 _operator_isub_impl(PyObject *module, PyObject *a, PyObject *b);
508 static PyObject *
509 _operator_isub(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_isub()
511 PyObject *return_value = NULL; in _operator_isub()
512 PyObject *a; in _operator_isub()
513 PyObject *b; in _operator_isub()
535 static PyObject *
536 _operator_imul_impl(PyObject *module, PyObject *a, PyObject *b);
538 static PyObject *
539 _operator_imul(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_imul()
541 PyObject *return_value = NULL; in _operator_imul()
542 PyObject *a; in _operator_imul()
543 PyObject *b; in _operator_imul()
565 static PyObject *
566 _operator_imatmul_impl(PyObject *module, PyObject *a, PyObject *b);
568 static PyObject *
569 _operator_imatmul(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_imatmul()
571 PyObject *return_value = NULL; in _operator_imatmul()
572 PyObject *a; in _operator_imatmul()
573 PyObject *b; in _operator_imatmul()
595 static PyObject *
596 _operator_ifloordiv_impl(PyObject *module, PyObject *a, PyObject *b);
598 static PyObject *
599 _operator_ifloordiv(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_ifloordiv()
601 PyObject *return_value = NULL; in _operator_ifloordiv()
602 PyObject *a; in _operator_ifloordiv()
603 PyObject *b; in _operator_ifloordiv()
625 static PyObject *
626 _operator_itruediv_impl(PyObject *module, PyObject *a, PyObject *b);
628 static PyObject *
629 _operator_itruediv(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_itruediv()
631 PyObject *return_value = NULL; in _operator_itruediv()
632 PyObject *a; in _operator_itruediv()
633 PyObject *b; in _operator_itruediv()
655 static PyObject *
656 _operator_imod_impl(PyObject *module, PyObject *a, PyObject *b);
658 static PyObject *
659 _operator_imod(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_imod()
661 PyObject *return_value = NULL; in _operator_imod()
662 PyObject *a; in _operator_imod()
663 PyObject *b; in _operator_imod()
685 static PyObject *
686 _operator_ilshift_impl(PyObject *module, PyObject *a, PyObject *b);
688 static PyObject *
689 _operator_ilshift(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_ilshift()
691 PyObject *return_value = NULL; in _operator_ilshift()
692 PyObject *a; in _operator_ilshift()
693 PyObject *b; in _operator_ilshift()
715 static PyObject *
716 _operator_irshift_impl(PyObject *module, PyObject *a, PyObject *b);
718 static PyObject *
719 _operator_irshift(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_irshift()
721 PyObject *return_value = NULL; in _operator_irshift()
722 PyObject *a; in _operator_irshift()
723 PyObject *b; in _operator_irshift()
745 static PyObject *
746 _operator_iand_impl(PyObject *module, PyObject *a, PyObject *b);
748 static PyObject *
749 _operator_iand(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_iand()
751 PyObject *return_value = NULL; in _operator_iand()
752 PyObject *a; in _operator_iand()
753 PyObject *b; in _operator_iand()
775 static PyObject *
776 _operator_ixor_impl(PyObject *module, PyObject *a, PyObject *b);
778 static PyObject *
779 _operator_ixor(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_ixor()
781 PyObject *return_value = NULL; in _operator_ixor()
782 PyObject *a; in _operator_ixor()
783 PyObject *b; in _operator_ixor()
805 static PyObject *
806 _operator_ior_impl(PyObject *module, PyObject *a, PyObject *b);
808 static PyObject *
809 _operator_ior(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_ior()
811 PyObject *return_value = NULL; in _operator_ior()
812 PyObject *a; in _operator_ior()
813 PyObject *b; in _operator_ior()
835 static PyObject *
836 _operator_concat_impl(PyObject *module, PyObject *a, PyObject *b);
838 static PyObject *
839 _operator_concat(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_concat()
841 PyObject *return_value = NULL; in _operator_concat()
842 PyObject *a; in _operator_concat()
843 PyObject *b; in _operator_concat()
865 static PyObject *
866 _operator_iconcat_impl(PyObject *module, PyObject *a, PyObject *b);
868 static PyObject *
869 _operator_iconcat(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_iconcat()
871 PyObject *return_value = NULL; in _operator_iconcat()
872 PyObject *a; in _operator_iconcat()
873 PyObject *b; in _operator_iconcat()
896 _operator_contains_impl(PyObject *module, PyObject *a, PyObject *b);
898 static PyObject *
899 _operator_contains(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_contains()
901 PyObject *return_value = NULL; in _operator_contains()
902 PyObject *a; in _operator_contains()
903 PyObject *b; in _operator_contains()
931 _operator_indexOf_impl(PyObject *module, PyObject *a, PyObject *b);
933 static PyObject *
934 _operator_indexOf(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_indexOf()
936 PyObject *return_value = NULL; in _operator_indexOf()
937 PyObject *a; in _operator_indexOf()
938 PyObject *b; in _operator_indexOf()
966 _operator_countOf_impl(PyObject *module, PyObject *a, PyObject *b);
968 static PyObject *
969 _operator_countOf(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_countOf()
971 PyObject *return_value = NULL; in _operator_countOf()
972 PyObject *a; in _operator_countOf()
973 PyObject *b; in _operator_countOf()
1000 static PyObject *
1001 _operator_getitem_impl(PyObject *module, PyObject *a, PyObject *b);
1003 static PyObject *
1004 _operator_getitem(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_getitem()
1006 PyObject *return_value = NULL; in _operator_getitem()
1007 PyObject *a; in _operator_getitem()
1008 PyObject *b; in _operator_getitem()
1030 static PyObject *
1031 _operator_setitem_impl(PyObject *module, PyObject *a, PyObject *b,
1032 PyObject *c);
1034 static PyObject *
1035 _operator_setitem(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_setitem()
1037 PyObject *return_value = NULL; in _operator_setitem()
1038 PyObject *a; in _operator_setitem()
1039 PyObject *b; in _operator_setitem()
1040 PyObject *c; in _operator_setitem()
1063 static PyObject *
1064 _operator_delitem_impl(PyObject *module, PyObject *a, PyObject *b);
1066 static PyObject *
1067 _operator_delitem(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_delitem()
1069 PyObject *return_value = NULL; in _operator_delitem()
1070 PyObject *a; in _operator_delitem()
1071 PyObject *b; in _operator_delitem()
1093 static PyObject *
1094 _operator_eq_impl(PyObject *module, PyObject *a, PyObject *b);
1096 static PyObject *
1097 _operator_eq(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_eq()
1099 PyObject *return_value = NULL; in _operator_eq()
1100 PyObject *a; in _operator_eq()
1101 PyObject *b; in _operator_eq()
1123 static PyObject *
1124 _operator_ne_impl(PyObject *module, PyObject *a, PyObject *b);
1126 static PyObject *
1127 _operator_ne(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_ne()
1129 PyObject *return_value = NULL; in _operator_ne()
1130 PyObject *a; in _operator_ne()
1131 PyObject *b; in _operator_ne()
1153 static PyObject *
1154 _operator_lt_impl(PyObject *module, PyObject *a, PyObject *b);
1156 static PyObject *
1157 _operator_lt(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_lt()
1159 PyObject *return_value = NULL; in _operator_lt()
1160 PyObject *a; in _operator_lt()
1161 PyObject *b; in _operator_lt()
1183 static PyObject *
1184 _operator_le_impl(PyObject *module, PyObject *a, PyObject *b);
1186 static PyObject *
1187 _operator_le(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_le()
1189 PyObject *return_value = NULL; in _operator_le()
1190 PyObject *a; in _operator_le()
1191 PyObject *b; in _operator_le()
1213 static PyObject *
1214 _operator_gt_impl(PyObject *module, PyObject *a, PyObject *b);
1216 static PyObject *
1217 _operator_gt(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_gt()
1219 PyObject *return_value = NULL; in _operator_gt()
1220 PyObject *a; in _operator_gt()
1221 PyObject *b; in _operator_gt()
1243 static PyObject *
1244 _operator_ge_impl(PyObject *module, PyObject *a, PyObject *b);
1246 static PyObject *
1247 _operator_ge(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_ge()
1249 PyObject *return_value = NULL; in _operator_ge()
1250 PyObject *a; in _operator_ge()
1251 PyObject *b; in _operator_ge()
1273 static PyObject *
1274 _operator_pow_impl(PyObject *module, PyObject *a, PyObject *b);
1276 static PyObject *
1277 _operator_pow(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_pow()
1279 PyObject *return_value = NULL; in _operator_pow()
1280 PyObject *a; in _operator_pow()
1281 PyObject *b; in _operator_pow()
1303 static PyObject *
1304 _operator_ipow_impl(PyObject *module, PyObject *a, PyObject *b);
1306 static PyObject *
1307 _operator_ipow(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_ipow()
1309 PyObject *return_value = NULL; in _operator_ipow()
1310 PyObject *a; in _operator_ipow()
1311 PyObject *b; in _operator_ipow()
1342 static PyObject *
1343 _operator_is__impl(PyObject *module, PyObject *a, PyObject *b);
1345 static PyObject *
1346 _operator_is_(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_is_()
1348 PyObject *return_value = NULL; in _operator_is_()
1349 PyObject *a; in _operator_is_()
1350 PyObject *b; in _operator_is_()
1372 static PyObject *
1373 _operator_is_not_impl(PyObject *module, PyObject *a, PyObject *b);
1375 static PyObject *
1376 _operator_is_not(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_is_not()
1378 PyObject *return_value = NULL; in _operator_is_not()
1379 PyObject *a; in _operator_is_not()
1380 PyObject *b; in _operator_is_not()
1409 _operator_length_hint_impl(PyObject *module, PyObject *obj,
1412 static PyObject *
1413 _operator_length_hint(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator_length_hint()
1415 PyObject *return_value = NULL; in _operator_length_hint()
1416 PyObject *obj; in _operator_length_hint()
1429 PyObject *iobj = _PyNumber_Index(args[1]); in _operator_length_hint()
1469 static PyObject *
1470 _operator__compare_digest_impl(PyObject *module, PyObject *a, PyObject *b);
1472 static PyObject *
1473 _operator__compare_digest(PyObject *module, PyObject *const *args, Py_ssize_t nargs) in _operator__compare_digest()
1475 PyObject *return_value = NULL; in _operator__compare_digest()
1476 PyObject *a; in _operator__compare_digest()
1477 PyObject *b; in _operator__compare_digest()