Lines Matching defs:limit
259 /* The deque's size limit is d.maxlen. The limit can be zero or positive.
260 * If there is no limit, then d.maxlen == -1.
263 * grown past the limit. If it has, we get the size back down to the limit
565 PyObject **itemptr, **limit;
609 limit = itemptr + m;
612 if (itemptr == limit) {
620 limit = itemptr + m;
1161 valid_index(Py_ssize_t i, Py_ssize_t limit)
1164 to check whether i is in the range: 0 <= i < limit */
1165 return (size_t) i < (size_t) limit;