Lines Matching defs:child
5002 int child, root = start;
5004 if ((child = (root << 1) + 1) >= size) break;
5005 child +=
5006 (((child + 1) < size) &&
5008 pIndices[child], pIndices[child + 1])));
5010 pIndices[root], pIndices[child]))
5012 MZ_SWAP_UINT32(pIndices[root], pIndices[child]);
5013 root = child;
5020 int child, root = 0;
5023 if ((child = (root << 1) + 1) >= end) break;
5024 child +=
5025 (((child + 1) < end) &&
5027 pIndices[child], pIndices[child + 1]));
5029 pIndices[root], pIndices[child]))
5031 MZ_SWAP_UINT32(pIndices[root], pIndices[child]);
5032 root = child;