Lines Matching refs:pKey2
104864 const void *pKey2, int nKey2 /* Right side of comparison */
104868 sqlite3VdbeRecordUnpack(pTask->pSorter->pKeyInfo, nKey2, pKey2, r2);
104891 const void *pKey2, int nKey2 /* Right side of comparison */
104895 sqlite3VdbeRecordUnpack(pTask->pSorter->pKeyInfo, nKey2, pKey2, r2);
104910 const void *pKey2, int nKey2 /* Right side of comparison */
104913 const u8 * const p2 = (const u8 * const)pKey2;
104931 pTask, pbKey2Cached, pKey1, nKey1, pKey2, nKey2
104952 const void *pKey2, int nKey2 /* Right side of comparison */
104955 const u8 * const p2 = (const u8 * const)pKey2;
105001 pTask, pbKey2Cached, pKey1, nKey1, pKey2, nKey2
183680 int nKey2, const void *pKey2
183688 assert( pKey1 && pKey2 );
183689 rc = memcmp(pKey1, pKey2, n);
183703 int nKey2, const void *pKey2
183706 const u8 *pK2 = (const u8*)pKey2;
183709 return binCollFunc(pUser, nKey1, pKey1, nKey2, pKey2);
183732 int nKey2, const void *pKey2
183735 (const char *)pKey1, (const char *)pKey2, (nKey1<nKey2)?nKey1:nKey2);
197276 static int fts3StrCompare(const void *pKey1, int n1, const void *pKey2, int n2){
197278 return strncmp((const char*)pKey1,(const char*)pKey2,n1);
197292 static int fts3BinCompare(const void *pKey1, int n1, const void *pKey2, int n2){
197294 return memcmp(pKey1,pKey2,n1);