Lines Matching defs:overflow
697 int overflow;
722 result = PyLong_AsLongAndOverflow(index, &overflow);
724 if (!overflow) {
745 if (overflow < 0)
756 goto overflow;
766 * throw an overflow exception instead. (We already
770 goto overflow;
775 goto overflow;
788 overflow:
803 int overflow;
828 result = PyLong_AsLongAndOverflow(index, &overflow);
830 if (!overflow) {
852 if (overflow < 0)
863 goto overflow;
873 * throw an overflow exception instead. (We already
877 goto overflow;
882 goto overflow;
895 overflow:
938 int overflow;
947 long_value = PyLong_AsLongAndOverflow(index, &overflow);
950 if (overflow > 0 || long_value > INT_MAX) {
955 if (overflow < 0 || long_value < INT_MIN) {
1516 int overflow;
1531 signum = PyLong_AsLongAndOverflow(item, &overflow);
1534 if (overflow || signum != -1 || !PyErr_Occurred()) {