Lines Matching refs:pKey1
61246 int nKey1, const void *pKey1, /* Left key */
61255 const unsigned char *aKey1 = (const unsigned char *)pKey1;
70585 void *pKey1, int nKey1, /* Left side of comparison */
70610 *pRes = sqlite3VdbeRecordCompare(nKey1, pKey1, r2);
110738 int nKey1, const void *pKey1,
110743 rc = memcmp(pKey1, pKey2, n);
110746 && allSpaces(((char*)pKey1)+n, nKey1-n)
110768 int nKey1, const void *pKey1,
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);