Lines Matching refs:pKey2
103562 const void *pKey2, int nKey2 /* Right side of comparison */
103566 sqlite3VdbeRecordUnpack(pTask->pSorter->pKeyInfo, nKey2, pKey2, r2);
103589 const void *pKey2, int nKey2 /* Right side of comparison */
103593 sqlite3VdbeRecordUnpack(pTask->pSorter->pKeyInfo, nKey2, pKey2, r2);
103608 const void *pKey2, int nKey2 /* Right side of comparison */
103611 const u8 * const p2 = (const u8 * const)pKey2;
103629 pTask, pbKey2Cached, pKey1, nKey1, pKey2, nKey2
103650 const void *pKey2, int nKey2 /* Right side of comparison */
103653 const u8 * const p2 = (const u8 * const)pKey2;
103699 pTask, pbKey2Cached, pKey1, nKey1, pKey2, nKey2
180809 int nKey2, const void *pKey2
180817 assert( pKey1 && pKey2 );
180818 rc = memcmp(pKey1, pKey2, n);
180832 int nKey2, const void *pKey2
180835 const u8 *pK2 = (const u8*)pKey2;
180838 return binCollFunc(pUser, nKey1, pKey1, nKey2, pKey2);
180861 int nKey2, const void *pKey2
180864 (const char *)pKey1, (const char *)pKey2, (nKey1<nKey2)?nKey1:nKey2);
194305 static int fts3StrCompare(const void *pKey1, int n1, const void *pKey2, int n2){
194307 return strncmp((const char*)pKey1,(const char*)pKey2,n1);
194321 static int fts3BinCompare(const void *pKey1, int n1, const void *pKey2, int n2){
194323 return memcmp(pKey1,pKey2,n1);