Lines Matching refs:nKey1
89108 int nKey1, const void *pKey1, /* Left key */
89156 if( d1+(u64)serial_type1+2>(u64)nKey1
89157 && d1+(u64)sqlite3VdbeSerialTypeLen(serial_type1)>(u64)nKey1
89161 && d1+(u64)sqlite3VdbeSerialTypeLen(serial_type1)<=(u64)nKey1+8
89541 int nKey1, const void *pKey1, /* Left key */
89578 if( d1>(unsigned)nKey1 ){
89655 testcase( (d1+mem1.n)==(unsigned)nKey1 );
89656 testcase( (d1+mem1.n+1)==(unsigned)nKey1 );
89657 if( (d1+mem1.n) > (unsigned)nKey1
89687 testcase( (d1+nStr)==(unsigned)nKey1 );
89688 testcase( (d1+nStr+1)==(unsigned)nKey1 );
89689 if( (d1+nStr) > (unsigned)nKey1 ){
89729 assert( vdbeRecordCompareDebug(nKey1, pKey1, pPKey2, rc) );
89738 if( d1>(unsigned)nKey1 ) break;
89755 || vdbeRecordCompareDebug(nKey1, pKey1, pPKey2, pPKey2->default_rc)
89762 int nKey1, const void *pKey1, /* Left key */
89765 return sqlite3VdbeRecordCompareWithSkip(nKey1, pKey1, pPKey2, 0);
89779 int nKey1, const void *pKey1, /* Left key */
89790 vdbeAssertFieldCountWithinLimits(nKey1, pKey1, pPKey2->pKeyInfo);
89840 return sqlite3VdbeRecordCompare(nKey1, pKey1, pPKey2);
89843 return sqlite3VdbeRecordCompare(nKey1, pKey1, pPKey2);
89855 res = sqlite3VdbeRecordCompareWithSkip(nKey1, pKey1, pPKey2, 1);
89863 assert( vdbeRecordCompareDebug(nKey1, pKey1, pPKey2, res) );
89874 int nKey1, const void *pKey1, /* Left key */
89884 vdbeAssertFieldCountWithinLimits(nKey1, pKey1, pPKey2->pKeyInfo);
89903 if( (szHdr + nStr) > nKey1 ){
89918 res = sqlite3VdbeRecordCompareWithSkip(nKey1, pKey1, pPKey2, 1);
89931 assert( vdbeRecordCompareDebug(nKey1, pKey1, pPKey2, res)
103561 const void *pKey1, int nKey1, /* Left side of comparison */
103569 return sqlite3VdbeRecordCompareWithSkip(nKey1, pKey1, r2, 1);
103588 const void *pKey1, int nKey1, /* Left side of comparison */
103596 return sqlite3VdbeRecordCompare(nKey1, pKey1, r2);
103607 const void *pKey1, int nKey1, /* Left side of comparison */
103629 pTask, pbKey2Cached, pKey1, nKey1, pKey2, nKey2
103649 const void *pKey1, int nKey1, /* Left side of comparison */
103699 pTask, pbKey2Cached, pKey1, nKey1, pKey2, nKey2
180808 int nKey1, const void *pKey1,
180813 n = nKey1<nKey2 ? nKey1 : nKey2;
180820 rc = nKey1 - nKey2;
180831 int nKey1, const void *pKey1,
180836 while( nKey1 && pK1[nKey1-1]==' ' ) nKey1--;
180838 return binCollFunc(pUser, nKey1, pKey1, nKey2, pKey2);
180860 int nKey1, const void *pKey1,
180864 (const char *)pKey1, (const char *)pKey2, (nKey1<nKey2)?nKey1:nKey2);
180867 r = nKey1-nKey2;