Searched refs:maxofs (Results 1 – 2 of 2) sorted by relevance
1188 const Py_ssize_t maxofs = n - hint; /* &a[n-1] is highest */ in gallop_left() local1189 while (ofs < maxofs) { in gallop_left()1194 ofs = maxofs; in gallop_left()1199 if (ofs > maxofs) in gallop_left()1200 ofs = maxofs; in gallop_left()1209 const Py_ssize_t maxofs = hint + 1; /* &a[0] is lowest */ in gallop_left() local1210 while (ofs < maxofs) { in gallop_left()1217 ofs = maxofs; in gallop_left()1219 if (ofs > maxofs) in gallop_left()1220 ofs = maxofs; in gallop_left()[all …]
1347 const Py_ssize_t maxofs = n - hint; /* &a[n-1] is highest */ in gallop_left() local1348 while (ofs < maxofs) { in gallop_left()1357 if (ofs > maxofs) in gallop_left()1358 ofs = maxofs; in gallop_left()1367 const Py_ssize_t maxofs = hint + 1; /* &a[0] is lowest */ in gallop_left() local1368 while (ofs < maxofs) { in gallop_left()1376 if (ofs > maxofs) in gallop_left()1377 ofs = maxofs; in gallop_left()1436 const Py_ssize_t maxofs = hint + 1; /* &a[0] is lowest */ in gallop_right() local1437 while (ofs < maxofs) { in gallop_right()[all …]