Home
last modified time | relevance | path

Searched refs:maxofs (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Objects/
Dlistobject.c1188 const Py_ssize_t maxofs = n - hint; /* &a[n-1] is highest */ in gallop_left() local
1189 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() local
1210 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 …]
/external/python/cpython3/Objects/
Dlistobject.c1347 const Py_ssize_t maxofs = n - hint; /* &a[n-1] is highest */ in gallop_left() local
1348 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() local
1368 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() local
1437 while (ofs < maxofs) { in gallop_right()
[all …]