Lines Matching defs:where
39 * imagine a realloc implementation where it wouldn't be true).
279 ins1(PyListObject *self, Py_ssize_t where, PyObject *v)
292 if (where < 0) {
293 where += n;
294 if (where < 0)
295 where = 0;
297 if (where > n)
298 where = n;
300 for (i = n; --i >= where; )
303 items[where] = v;
308 PyList_Insert(PyObject *op, Py_ssize_t where, PyObject *newitem)
314 return ins1((PyListObject *)op, where, newitem);
352 There's a simple test case where somehow this reduces
1260 /* set l to where *start belongs */
2332 /* The pre-sort check: here's where we decide which compare function to use.
2727 /* Search for the first index where items are different */