Lines Matching refs:contIdx
1657 int mergeIdx, contIdx; in mergeInfoLocked() local
1662 mergeIdx = contIdx = 0; in mergeInfoLocked()
1664 while (mergeIdx < mergeMax || contIdx < contMax) { in mergeInfoLocked()
1667 pNewSorted->add(pContents->itemAt(contIdx)); in mergeInfoLocked()
1668 contIdx++; in mergeInfoLocked()
1669 } else if (contIdx == contMax) { in mergeInfoLocked()
1673 } else if (pMergedInfo->itemAt(mergeIdx) == pContents->itemAt(contIdx)) in mergeInfoLocked()
1676 pNewSorted->add(pContents->itemAt(contIdx)); in mergeInfoLocked()
1678 contIdx++; in mergeInfoLocked()
1679 } else if (pMergedInfo->itemAt(mergeIdx) < pContents->itemAt(contIdx)) in mergeInfoLocked()
1686 assert(pContents->itemAt(contIdx) < pMergedInfo->itemAt(mergeIdx)); in mergeInfoLocked()
1687 pNewSorted->add(pContents->itemAt(contIdx)); in mergeInfoLocked()
1688 contIdx++; in mergeInfoLocked()