Lines Matching defs:fast_mode
4137 fast_mode: when cnt an integer < PY_SSIZE_T_MAX and no step is specified.
4173 int fast_mode;
4183 fast_mode = (long_cnt == NULL || PyLong_Check(long_cnt)) &&
4188 if (fast_mode) {
4193 fast_mode = 0;
4211 if (fast_mode) {
4215 fast_mode = 0;
4221 if (fast_mode)
4226 assert((cnt != PY_SSIZE_T_MAX && long_cnt == NULL && fast_mode) ||
4227 (cnt == PY_SSIZE_T_MAX && long_cnt != NULL && !fast_mode));
4228 assert(!fast_mode ||