Lines Matching refs:childpos
77 Py_ssize_t startpos, endpos, childpos, rightpos, limit; in _siftup() local
93 childpos = 2*pos + 1; /* leftmost child position */ in _siftup()
94 rightpos = childpos + 1; in _siftup()
97 PyList_GET_ITEM(heap, childpos), in _siftup()
102 childpos = rightpos; in _siftup()
110 tmp1 = PyList_GET_ITEM(heap, childpos); in _siftup()
112 PyList_SET_ITEM(heap, childpos, tmp2); in _siftup()
114 pos = childpos; in _siftup()
418 Py_ssize_t startpos, endpos, childpos, rightpos, limit; in _siftupmax() local
436 childpos = 2*pos + 1; /* leftmost child position */ in _siftupmax()
437 rightpos = childpos + 1; in _siftupmax()
441 PyList_GET_ITEM(heap, childpos)); in _siftupmax()
447 childpos = rightpos; in _siftupmax()
450 tmp = PyList_GET_ITEM(heap, childpos); in _siftupmax()
454 pos = childpos; in _siftupmax()