Lines Matching refs:nM
3206 sal_uInt16 nO = rArr.Count(), nM, nU = 0; in InsertSort() local
3212 nM = nU + ( nO - nU ) / 2; in InsertSort()
3213 if( *(rArr.GetData() + nM) == nIdx ) in InsertSort()
3218 if( *(rArr.GetData() + nM) < nIdx ) in InsertSort()
3219 nU = nM + 1; in InsertSort()
3220 else if( nM == 0 ) in InsertSort()
3223 nO = nM - 1; in InsertSort()
3233 sal_uInt16 nO = rArr.Count(), nM, nU = 0; in InsertSort() local
3239 nM = nU + ( nO - nU ) / 2; in InsertSort()
3240 if( *(rArr.GetData() + nM) == nIdx ) in InsertSort()
3245 if( *(rArr.GetData() + nM) < nIdx ) in InsertSort()
3246 nU = nM + 1; in InsertSort()
3247 else if( nM == 0 ) in InsertSort()
3250 nO = nM - 1; in InsertSort()