Lines Matching refs:nKey1
83253 int nKey1, const void *pKey1, /* Left key */
83301 if( d1+(u64)serial_type1+2>(u64)nKey1
83302 && d1+(u64)sqlite3VdbeSerialTypeLen(serial_type1)>(u64)nKey1
83664 int nKey1, const void *pKey1, /* Left key */
83693 if( d1>(unsigned)nKey1 ){
83766 testcase( (d1+mem1.n)==(unsigned)nKey1 );
83767 testcase( (d1+mem1.n+1)==(unsigned)nKey1 );
83768 if( (d1+mem1.n) > (unsigned)nKey1
83798 testcase( (d1+nStr)==(unsigned)nKey1 );
83799 testcase( (d1+nStr+1)==(unsigned)nKey1 );
83800 if( (d1+nStr) > (unsigned)nKey1 ){
83833 assert( vdbeRecordCompareDebug(nKey1, pKey1, pPKey2, rc) );
83843 }while( idx1<(unsigned)szHdr1 && d1<=(unsigned)nKey1 );
83854 || vdbeRecordCompareDebug(nKey1, pKey1, pPKey2, pPKey2->default_rc)
83861 int nKey1, const void *pKey1, /* Left key */
83864 return sqlite3VdbeRecordCompareWithSkip(nKey1, pKey1, pPKey2, 0);
83878 int nKey1, const void *pKey1, /* Left key */
83889 vdbeAssertFieldCountWithinLimits(nKey1, pKey1, pPKey2->pKeyInfo);
83939 return sqlite3VdbeRecordCompare(nKey1, pKey1, pPKey2);
83942 return sqlite3VdbeRecordCompare(nKey1, pKey1, pPKey2);
83953 res = sqlite3VdbeRecordCompareWithSkip(nKey1, pKey1, pPKey2, 1);
83961 assert( vdbeRecordCompareDebug(nKey1, pKey1, pPKey2, res) );
83972 int nKey1, const void *pKey1, /* Left key */
83980 vdbeAssertFieldCountWithinLimits(nKey1, pKey1, pPKey2->pKeyInfo);
83995 if( (szHdr + nStr) > nKey1 ){
84010 res = sqlite3VdbeRecordCompareWithSkip(nKey1, pKey1, pPKey2, 1);
84023 assert( vdbeRecordCompareDebug(nKey1, pKey1, pPKey2, res)
96453 const void *pKey1, int nKey1, /* Left side of comparison */
96461 return sqlite3VdbeRecordCompareWithSkip(nKey1, pKey1, r2, 1);
96480 const void *pKey1, int nKey1, /* Left side of comparison */
96488 return sqlite3VdbeRecordCompare(nKey1, pKey1, r2);
96499 const void *pKey1, int nKey1, /* Left side of comparison */
96521 pTask, pbKey2Cached, pKey1, nKey1, pKey2, nKey2
96541 const void *pKey1, int nKey1, /* Left side of comparison */
96591 pTask, pbKey2Cached, pKey1, nKey1, pKey2, nKey2
167582 int nKey1, const void *pKey1,
167587 n = nKey1<nKey2 ? nKey1 : nKey2;
167594 rc = nKey1 - nKey2;
167605 int nKey1, const void *pKey1,
167610 while( nKey1 && pK1[nKey1-1]==' ' ) nKey1--;
167612 return binCollFunc(pUser, nKey1, pKey1, nKey2, pKey2);
167634 int nKey1, const void *pKey1,
167638 (const char *)pKey1, (const char *)pKey2, (nKey1<nKey2)?nKey1:nKey2);
167641 r = nKey1-nKey2;