Lines Matching refs:pKey2
103022 const void *pKey2, int nKey2 /* Right side of comparison */
103026 sqlite3VdbeRecordUnpack(pTask->pSorter->pKeyInfo, nKey2, pKey2, r2);
103049 const void *pKey2, int nKey2 /* Right side of comparison */
103053 sqlite3VdbeRecordUnpack(pTask->pSorter->pKeyInfo, nKey2, pKey2, r2);
103068 const void *pKey2, int nKey2 /* Right side of comparison */
103071 const u8 * const p2 = (const u8 * const)pKey2;
103089 pTask, pbKey2Cached, pKey1, nKey1, pKey2, nKey2
103110 const void *pKey2, int nKey2 /* Right side of comparison */
103113 const u8 * const p2 = (const u8 * const)pKey2;
103159 pTask, pbKey2Cached, pKey1, nKey1, pKey2, nKey2
179193 int nKey2, const void *pKey2
179201 assert( pKey1 && pKey2 );
179202 rc = memcmp(pKey1, pKey2, n);
179216 int nKey2, const void *pKey2
179219 const u8 *pK2 = (const u8*)pKey2;
179222 return binCollFunc(pUser, nKey1, pKey1, nKey2, pKey2);
179245 int nKey2, const void *pKey2
179248 (const char *)pKey1, (const char *)pKey2, (nKey1<nKey2)?nKey1:nKey2);
192687 static int fts3StrCompare(const void *pKey1, int n1, const void *pKey2, int n2){
192689 return strncmp((const char*)pKey1,(const char*)pKey2,n1);
192703 static int fts3BinCompare(const void *pKey1, int n1, const void *pKey2, int n2){
192705 return memcmp(pKey1,pKey2,n1);