Lines Matching refs:nKey1
90190 int nKey1, const void *pKey1, /* Left key */
90238 if( d1+(u64)serial_type1+2>(u64)nKey1
90239 && d1+(u64)sqlite3VdbeSerialTypeLen(serial_type1)>(u64)nKey1
90243 && d1+(u64)sqlite3VdbeSerialTypeLen(serial_type1)<=(u64)nKey1+8
90616 int nKey1, const void *pKey1, /* Left key */
90653 if( d1>(unsigned)nKey1 ){
90730 testcase( (d1+mem1.n)==(unsigned)nKey1 );
90731 testcase( (d1+mem1.n+1)==(unsigned)nKey1 );
90732 if( (d1+mem1.n) > (unsigned)nKey1
90762 testcase( (d1+nStr)==(unsigned)nKey1 );
90763 testcase( (d1+nStr+1)==(unsigned)nKey1 );
90764 if( (d1+nStr) > (unsigned)nKey1 ){
90804 assert( vdbeRecordCompareDebug(nKey1, pKey1, pPKey2, rc) );
90813 if( d1>(unsigned)nKey1 ) break;
90830 || vdbeRecordCompareDebug(nKey1, pKey1, pPKey2, pPKey2->default_rc)
90837 int nKey1, const void *pKey1, /* Left key */
90840 return sqlite3VdbeRecordCompareWithSkip(nKey1, pKey1, pPKey2, 0);
90854 int nKey1, const void *pKey1, /* Left key */
90865 vdbeAssertFieldCountWithinLimits(nKey1, pKey1, pPKey2->pKeyInfo);
90915 return sqlite3VdbeRecordCompare(nKey1, pKey1, pPKey2);
90918 return sqlite3VdbeRecordCompare(nKey1, pKey1, pPKey2);
90930 res = sqlite3VdbeRecordCompareWithSkip(nKey1, pKey1, pPKey2, 1);
90938 assert( vdbeRecordCompareDebug(nKey1, pKey1, pPKey2, res) );
90949 int nKey1, const void *pKey1, /* Left key */
90959 vdbeAssertFieldCountWithinLimits(nKey1, pKey1, pPKey2->pKeyInfo);
90978 if( (szHdr + nStr) > nKey1 ){
90993 res = sqlite3VdbeRecordCompareWithSkip(nKey1, pKey1, pPKey2, 1);
91006 assert( vdbeRecordCompareDebug(nKey1, pKey1, pPKey2, res)
104863 const void *pKey1, int nKey1, /* Left side of comparison */
104871 return sqlite3VdbeRecordCompareWithSkip(nKey1, pKey1, r2, 1);
104890 const void *pKey1, int nKey1, /* Left side of comparison */
104898 return sqlite3VdbeRecordCompare(nKey1, pKey1, r2);
104909 const void *pKey1, int nKey1, /* Left side of comparison */
104931 pTask, pbKey2Cached, pKey1, nKey1, pKey2, nKey2
104951 const void *pKey1, int nKey1, /* Left side of comparison */
105001 pTask, pbKey2Cached, pKey1, nKey1, pKey2, nKey2
183679 int nKey1, const void *pKey1,
183684 n = nKey1<nKey2 ? nKey1 : nKey2;
183691 rc = nKey1 - nKey2;
183702 int nKey1, const void *pKey1,
183707 while( nKey1 && pK1[nKey1-1]==' ' ) nKey1--;
183709 return binCollFunc(pUser, nKey1, pKey1, nKey2, pKey2);
183731 int nKey1, const void *pKey1,
183735 (const char *)pKey1, (const char *)pKey2, (nKey1<nKey2)?nKey1:nKey2);
183738 r = nKey1-nKey2;