Lines Matching refs:apNew
925 EditDist3Cost **apNew; in editDist3FromStringNew() local
929 apNew = sqlite3_realloc64(pFrom->apDel, in editDist3FromStringNew()
930 sizeof(*apNew)*(pFrom->nDel+1)); in editDist3FromStringNew()
931 if( apNew==0 ) break; 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()
937 if( apNew==0 ) break; in editDist3FromStringNew()
938 pFrom->apSubst = apNew; in editDist3FromStringNew()
939 apNew[pFrom->nSubst++] = p; in editDist3FromStringNew()
1028 EditDist3Cost **apNew; in editDist3Core() local
1034 apNew = sqlite3_realloc64(a2[i2].apIns, sizeof(*apNew)*a2[i2].nIns); in editDist3Core()
1035 if( apNew==0 ){ in editDist3Core()
1039 a2[i2].apIns = apNew; in editDist3Core()