Lines Matching refs:pKey2
94418 const void *pKey2, int nKey2 /* Right side of comparison */
94422 sqlite3VdbeRecordUnpack(pTask->pSorter->pKeyInfo, nKey2, pKey2, r2);
94445 const void *pKey2, int nKey2 /* Right side of comparison */
94449 sqlite3VdbeRecordUnpack(pTask->pSorter->pKeyInfo, nKey2, pKey2, r2);
94464 const void *pKey2, int nKey2 /* Right side of comparison */
94467 const u8 * const p2 = (const u8 * const)pKey2;
94485 pTask, pbKey2Cached, pKey1, nKey1, pKey2, nKey2
94506 const void *pKey2, int nKey2 /* Right side of comparison */
94509 const u8 * const p2 = (const u8 * const)pKey2;
94555 pTask, pbKey2Cached, pKey1, nKey1, pKey2, nKey2
161161 int nKey2, const void *pKey2
161169 assert( pKey1 && pKey2 );
161170 rc = memcmp(pKey1, pKey2, n);
161184 int nKey2, const void *pKey2
161187 const u8 *pK2 = (const u8*)pKey2;
161190 return binCollFunc(pUser, nKey1, pKey1, nKey2, pKey2);
161213 int nKey2, const void *pKey2
161216 (const char *)pKey1, (const char *)pKey2, (nKey1<nKey2)?nKey1:nKey2);
174075 static int fts3StrCompare(const void *pKey1, int n1, const void *pKey2, int n2){
174077 return strncmp((const char*)pKey1,(const char*)pKey2,n1);
174091 static int fts3BinCompare(const void *pKey1, int n1, const void *pKey2, int n2){
174093 return memcmp(pKey1,pKey2,n1);