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.c1323 const Py_ssize_t maxofs = n - hint; /* &a[n-1] is highest */ in gallop_left() local
1324 while (ofs < maxofs) { in gallop_left()
1329 ofs = maxofs; in gallop_left()
1334 if (ofs > maxofs) in gallop_left()
1335 ofs = maxofs; in gallop_left()
1344 const Py_ssize_t maxofs = hint + 1; /* &a[0] is lowest */ in gallop_left() local
1345 while (ofs < maxofs) { in gallop_left()
1352 ofs = maxofs; in gallop_left()
1354 if (ofs > maxofs) in gallop_left()
1355 ofs = maxofs; in gallop_left()
[all …]