Lines Matching refs:pKey2
96454 const void *pKey2, int nKey2 /* Right side of comparison */
96458 sqlite3VdbeRecordUnpack(pTask->pSorter->pKeyInfo, nKey2, pKey2, r2);
96481 const void *pKey2, int nKey2 /* Right side of comparison */
96485 sqlite3VdbeRecordUnpack(pTask->pSorter->pKeyInfo, nKey2, pKey2, r2);
96500 const void *pKey2, int nKey2 /* Right side of comparison */
96503 const u8 * const p2 = (const u8 * const)pKey2;
96521 pTask, pbKey2Cached, pKey1, nKey1, pKey2, nKey2
96542 const void *pKey2, int nKey2 /* Right side of comparison */
96545 const u8 * const p2 = (const u8 * const)pKey2;
96591 pTask, pbKey2Cached, pKey1, nKey1, pKey2, nKey2
167583 int nKey2, const void *pKey2
167591 assert( pKey1 && pKey2 );
167592 rc = memcmp(pKey1, pKey2, n);
167606 int nKey2, const void *pKey2
167609 const u8 *pK2 = (const u8*)pKey2;
167612 return binCollFunc(pUser, nKey1, pKey1, nKey2, pKey2);
167635 int nKey2, const void *pKey2
167638 (const char *)pKey1, (const char *)pKey2, (nKey1<nKey2)?nKey1:nKey2);
180706 static int fts3StrCompare(const void *pKey1, int n1, const void *pKey2, int n2){
180708 return strncmp((const char*)pKey1,(const char*)pKey2,n1);
180722 static int fts3BinCompare(const void *pKey1, int n1, const void *pKey2, int n2){
180724 return memcmp(pKey1,pKey2,n1);