Lines Matching refs:n1
47142 int n1, n2;
47150 n1 = v1==0 ? 0 : c1.n;
47153 rc = pColl->xCmp(pColl->pUser, n1, v1, n2, v2);
99996 ** Merge the two doclists passed in buffer a1 (size n1 bytes) and a2
100012 int n1, /* Size of buffer a1 */
100023 char *pEnd1 = &a1[n1];
100120 aTmp = sqlite3_malloc(2*(n1+n2+1));
102191 static int fts3StrCompare(const void *pKey1, int n1, const void *pKey2, int n2){
102192 if( n1!=n2 ) return 1;
102193 return strncmp((const char*)pKey1,(const char*)pKey2,n1);
102207 static int fts3BinCompare(const void *pKey1, int n1, const void *pKey2, int n2){
102208 if( n1!=n2 ) return 1;
102209 return memcmp(pKey1,pKey2,n1);
104799 int n1 = fts3HashKeysize(*(Fts3HashElem **)lhs);
104802 int n = (n1<n2 ? n1 : n2);
104805 c = n1 - n2;