Searched refs:__child (Results 1 - 2 of 2) sorted by relevance

/openbsd-current/gnu/llvm/libcxx/include/__algorithm/
H A Dsift_down.h36 difference_type __child = __start - __first; local
38 if (__len < 2 || (__len - 2) / 2 < __child)
41 __child = 2 * __child + 1;
42 _RandomAccessIterator __child_i = __first + __child;
44 if ((__child + 1) < __len && __comp(*__child_i, *(__child_i + difference_type(1)))) {
47 ++__child;
62 if ((__len - 2) / 2 < __child)
66 __child = 2 * __child
90 difference_type __child = 0; local
[all...]
/openbsd-current/gnu/gcc/libstdc++-v3/include/bits/
H A Dstl_heap.h75 for (_Distance __child = 1; __child < __n; ++__child)
77 if (__first[__parent] < __first[__child])
79 if ((__child & 1) == 0)
92 for (_Distance __child = 1; __child < __n; ++__child)
94 if (__comp(__first[__parent], __first[__child]))
96 if ((__child
[all...]

Completed in 64 milliseconds