Lines Matching refs:contIdx
1350 int mergeIdx, contIdx; in mergeInfoLocked() local
1355 mergeIdx = contIdx = 0; in mergeInfoLocked()
1357 while (mergeIdx < mergeMax || contIdx < contMax) { in mergeInfoLocked()
1360 pNewSorted->add(pContents->itemAt(contIdx)); in mergeInfoLocked()
1361 contIdx++; in mergeInfoLocked()
1362 } else if (contIdx == contMax) { in mergeInfoLocked()
1366 } else if (pMergedInfo->itemAt(mergeIdx) == pContents->itemAt(contIdx)) in mergeInfoLocked()
1369 pNewSorted->add(pContents->itemAt(contIdx)); in mergeInfoLocked()
1371 contIdx++; in mergeInfoLocked()
1372 } else if (pMergedInfo->itemAt(mergeIdx) < pContents->itemAt(contIdx)) in mergeInfoLocked()
1379 assert(pContents->itemAt(contIdx) < pMergedInfo->itemAt(mergeIdx)); in mergeInfoLocked()
1380 pNewSorted->add(pContents->itemAt(contIdx)); in mergeInfoLocked()
1381 contIdx++; in mergeInfoLocked()