Lines Matching refs:nKey1
81599 int nKey1, const void *pKey1, /* Left key */
81647 if( d1+(u64)serial_type1+2>(u64)nKey1
81648 && d1+(u64)sqlite3VdbeSerialTypeLen(serial_type1)>(u64)nKey1
82007 int nKey1, const void *pKey1, /* Left key */
82036 if( d1>(unsigned)nKey1 ){
82109 testcase( (d1+mem1.n)==(unsigned)nKey1 );
82110 testcase( (d1+mem1.n+1)==(unsigned)nKey1 );
82111 if( (d1+mem1.n) > (unsigned)nKey1
82141 testcase( (d1+nStr)==(unsigned)nKey1 );
82142 testcase( (d1+nStr+1)==(unsigned)nKey1 );
82143 if( (d1+nStr) > (unsigned)nKey1 ){
82176 assert( vdbeRecordCompareDebug(nKey1, pKey1, pPKey2, rc) );
82186 }while( idx1<(unsigned)szHdr1 && d1<=(unsigned)nKey1 );
82197 || vdbeRecordCompareDebug(nKey1, pKey1, pPKey2, pPKey2->default_rc)
82204 int nKey1, const void *pKey1, /* Left key */
82207 return sqlite3VdbeRecordCompareWithSkip(nKey1, pKey1, pPKey2, 0);
82221 int nKey1, const void *pKey1, /* Left key */
82232 vdbeAssertFieldCountWithinLimits(nKey1, pKey1, pPKey2->pKeyInfo);
82282 return sqlite3VdbeRecordCompare(nKey1, pKey1, pPKey2);
82285 return sqlite3VdbeRecordCompare(nKey1, pKey1, pPKey2);
82296 res = sqlite3VdbeRecordCompareWithSkip(nKey1, pKey1, pPKey2, 1);
82304 assert( vdbeRecordCompareDebug(nKey1, pKey1, pPKey2, res) );
82315 int nKey1, const void *pKey1, /* Left key */
82323 vdbeAssertFieldCountWithinLimits(nKey1, pKey1, pPKey2->pKeyInfo);
82338 if( (szHdr + nStr) > nKey1 ){
82353 res = sqlite3VdbeRecordCompareWithSkip(nKey1, pKey1, pPKey2, 1);
82366 assert( vdbeRecordCompareDebug(nKey1, pKey1, pPKey2, res)
94417 const void *pKey1, int nKey1, /* Left side of comparison */
94425 return sqlite3VdbeRecordCompareWithSkip(nKey1, pKey1, r2, 1);
94444 const void *pKey1, int nKey1, /* Left side of comparison */
94452 return sqlite3VdbeRecordCompare(nKey1, pKey1, r2);
94463 const void *pKey1, int nKey1, /* Left side of comparison */
94485 pTask, pbKey2Cached, pKey1, nKey1, pKey2, nKey2
94505 const void *pKey1, int nKey1, /* Left side of comparison */
94555 pTask, pbKey2Cached, pKey1, nKey1, pKey2, nKey2
161160 int nKey1, const void *pKey1,
161165 n = nKey1<nKey2 ? nKey1 : nKey2;
161172 rc = nKey1 - nKey2;
161183 int nKey1, const void *pKey1,
161188 while( nKey1 && pK1[nKey1-1]==' ' ) nKey1--;
161190 return binCollFunc(pUser, nKey1, pKey1, nKey2, pKey2);
161212 int nKey1, const void *pKey1,
161216 (const char *)pKey1, (const char *)pKey2, (nKey1<nKey2)?nKey1:nKey2);
161219 r = nKey1-nKey2;