Lines Matching refs:nCmp
90745 int nCmp = MIN(mem1.n, pRhs->n); local
90746 rc = memcmp(&aKey1[d1], pRhs->z, nCmp);
90773 int nCmp = MIN(nStr, pRhs->n); local
90774 rc = memcmp(&aKey1[d1], pRhs->z, nCmp);
90972 int nCmp; local
90981 nCmp = MIN( pPKey2->n, nStr );
90982 res = memcmp(&aKey1[szHdr], pPKey2->u.z, nCmp);
167501 int nCmp = sqlite3ExprVectorSize(pTerm->pExpr->pLeft);
167504 nCmp = MIN(nCmp, (pIdx->nColumn - nEq));
167505 for(i=1; i<nCmp; i++){
203598 int nCmp = MIN(nLhs, nRhs);
203601 if( nCmp && ALWAYS(zLhs) && ALWAYS(zRhs) ){
203602 res = memcmp(zLhs, zRhs, nCmp);
244976 int nCmp = MIN(pLeft->n, nRight);
244977 int res = memcmp(pLeft->p, pRight, nCmp);
244992 int nCmp, res;
244993 nCmp = MIN(pLeft->n, pRight->n);
244994 assert( nCmp<=0 || pLeft->p!=0 );
244995 assert( nCmp<=0 || pRight->p!=0 );
244996 res = fts5Memcmp(pLeft->p, pRight->p, nCmp);
246756 u32 nCmp;
246758 nCmp = (u32)MIN(nNew, nTerm-nMatch);
246759 for(i=0; i<nCmp; i++){
262124 int nCmp = MIN(nTerm, pCsr->nLeTerm);
262125 int bCmp = memcmp(pCsr->zLeTerm, zTerm, nCmp);
262198 int nCmp = MIN(nTerm, pCsr->nLeTerm);
262199 int bCmp = memcmp(pCsr->zLeTerm, zTerm, nCmp);