Lines Matching refs:parent
27 PyObject *newitem, *parent, **arr;
44 parent = arr[parentpos];
46 Py_INCREF(parent);
47 cmp = PyObject_RichCompareBool(newitem, parent, Py_LT);
48 Py_DECREF(parent);
60 parent = arr[parentpos];
63 arr[pos] = parent;
306 out of cache by the time their parent is reached.
310 sift their parent node (while the children are still in cache).
325 mhalf = m >> 1; /* parent of first childless node */
396 PyObject *newitem, *parent, **arr;
413 parent = arr[parentpos];
414 Py_INCREF(parent);
416 cmp = PyObject_RichCompareBool(parent, newitem, Py_LT);
417 Py_DECREF(parent);
429 parent = arr[parentpos];
432 arr[pos] = parent;