Lines Matching refs:pFrom
921 EditDist3From *pFrom = &pStr->a[i]; in editDist3FromStringNew() local
922 memset(pFrom, 0, sizeof(*pFrom)); in editDist3FromStringNew()
923 pFrom->nByte = utf8Len((unsigned char)z[i], n-i); in editDist3FromStringNew()
929 apNew = sqlite3_realloc64(pFrom->apDel, in editDist3FromStringNew()
930 sizeof(*apNew)*(pFrom->nDel+1)); in editDist3FromStringNew()
932 pFrom->apDel = apNew; in editDist3FromStringNew()
933 apNew[pFrom->nDel++] = p; in editDist3FromStringNew()
935 apNew = sqlite3_realloc64(pFrom->apSubst, in editDist3FromStringNew()
936 sizeof(*apNew)*(pFrom->nSubst+1)); in editDist3FromStringNew()
938 pFrom->apSubst = apNew; in editDist3FromStringNew()
939 apNew[pFrom->nSubst++] = p; in editDist3FromStringNew()
991 EditDist3FromString *pFrom, /* The FROM string */ in editDist3Core() argument
1000 EditDist3FromString f = *pFrom; in editDist3Core()
1189 EditDist3FromString *pFrom; in editDist3SqlFunc() local
1192 pFrom = editDist3FromStringNew(pLang, zA, nA); in editDist3SqlFunc()
1193 if( pFrom==0 ){ in editDist3SqlFunc()
1197 dist = editDist3Core(pFrom, zB, nB, pLang, 0); in editDist3SqlFunc()
1198 editDist3FromStringDelete(pFrom); in editDist3SqlFunc()