Lines Matching refs:n1
47153 int n1, n2;
47161 n1 = v1==0 ? 0 : c1.n;
47164 rc = pColl->xCmp(pColl->pUser, n1, v1, n2, v2);
100030 ** Merge the two doclists passed in buffer a1 (size n1 bytes) and a2
100046 int n1, /* Size of buffer a1 */
100057 char *pEnd1 = &a1[n1];
100154 aTmp = sqlite3_malloc(2*(n1+n2+1));
102231 static int fts3StrCompare(const void *pKey1, int n1, const void *pKey2, int n2){
102232 if( n1!=n2 ) return 1;
102233 return strncmp((const char*)pKey1,(const char*)pKey2,n1);
102247 static int fts3BinCompare(const void *pKey1, int n1, const void *pKey2, int n2){
102248 if( n1!=n2 ) return 1;
102249 return memcmp(pKey1,pKey2,n1);
104839 int n1 = fts3HashKeysize(*(Fts3HashElem **)lhs);
104842 int n = (n1<n2 ? n1 : n2);
104845 c = n1 - n2;