Lines Matching refs:pKey2
70586 void *pKey2, int nKey2, /* Right side of comparison */
70594 if( pKey2 ){
70595 sqlite3VdbeRecordUnpack(pKeyInfo, nKey2, pKey2, r2);
110739 int nKey2, const void *pKey2
110743 rc = memcmp(pKey1, pKey2, n);
110747 && allSpaces(((char*)pKey2)+n, nKey2-n)
110769 int nKey2, const void *pKey2
110772 (const char *)pKey1, (const char *)pKey2, (nKey1<nKey2)?nKey1:nKey2);
120610 static int fts3StrCompare(const void *pKey1, int n1, const void *pKey2, int n2){
120612 return strncmp((const char*)pKey1,(const char*)pKey2,n1);
120626 static int fts3BinCompare(const void *pKey1, int n1, const void *pKey2, int n2){
120628 return memcmp(pKey1,pKey2,n1);