Lines Matching defs:maxofs
1393 const Py_ssize_t maxofs = n - hint; /* &a[n-1] is highest */
1394 while (ofs < maxofs) {
1403 if (ofs > maxofs)
1404 ofs = maxofs;
1413 const Py_ssize_t maxofs = hint + 1; /* &a[0] is lowest */
1414 while (ofs < maxofs) {
1422 if (ofs > maxofs)
1423 ofs = maxofs;
1482 const Py_ssize_t maxofs = hint + 1; /* &a[0] is lowest */
1483 while (ofs < maxofs) {
1492 if (ofs > maxofs)
1493 ofs = maxofs;
1503 const Py_ssize_t maxofs = n - hint; /* &a[n-1] is highest */
1504 while (ofs < maxofs) {
1512 if (ofs > maxofs)
1513 ofs = maxofs;