Lines Matching refs:nOld

28485   int nOld;  in memsys3Realloc()  local
28494 nOld = memsys3Size(pPrior); in memsys3Realloc()
28495 if( nBytes<=nOld && nBytes>=nOld-128 ){ in memsys3Realloc()
28501 if( nOld<nBytes ){ in memsys3Realloc()
28502 memcpy(p, pPrior, nOld); in memsys3Realloc()
29045 int nOld; in memsys5Realloc() local
29053 nOld = memsys5Size(pPrior); in memsys5Realloc()
29054 if( nBytes<=nOld ){ in memsys5Realloc()
29059 memcpy(p, pPrior, nOld); in memsys5Realloc()
31254 int nOld, nNew, nDiff; in sqlite3Realloc() local
31269 nOld = sqlite3MallocSize(pOld); in sqlite3Realloc()
31274 if( nOld==nNew ){ in sqlite3Realloc()
31280 nDiff = nNew - nOld; in sqlite3Realloc()
31299 sqlite3StatusUp(SQLITE_STATUS_MEMORY_USED, nNew-nOld); in sqlite3Realloc()
79741 int nOld; /* Number of pages in apOld[] */ local
79811 nOld = i+1;
79914 for(i=0; i<nOld; i++){
79976 if( i<nOld-1 && !leafData){
80027 for(i=k=0; i<nOld; i++, k++){
80046 k = nOld;
80144 nOld>=2 ? apOld[1]->pgno : 0, nOld>=2 ? apOld[1]->nCell : 0,
80145 nOld>=3 ? apOld[2]->pgno : 0, nOld>=3 ? apOld[2]->nCell : 0
80154 if( i<nOld ){
80247 if( (pageFlags & PTF_LEAF)==0 && nOld!=nNew ){
80248 MemPage *pOld = (nNew>nOld ? apNew : apOld)[nOld-1];
80279 assert( iOld<nNew || iOld<nOld );
80418 iOld = iPg<nOld ? (cntOld[iPg-1] + !leafData) : b.nCell;
80435 assert( nOld>0 );
80476 nOld, nNew, b.nCell));
80480 for(i=nNew; i<nOld; i++){
80500 for(i=0; i<nOld; i++){
228962 int nOld;
228967 aOld = sessionMergeValue(&aOld1, &aOld2, &nOld);
228969 if( pTab->abPK[i] || nOld!=nNew || memcmp(aOld, aNew, nNew) ){
228971 memcpy(aOut, aOld, nOld);
228972 aOut += nOld;
228987 int nOld;
228992 aOld = sessionMergeValue(&aOld1, &aOld2, &nOld);
228995 && (pTab->abPK[i] || (nOld==nNew && 0==memcmp(aOld, aNew, nNew)))
229758 int nOld = 0;
229785 nOld = 8;
229792 nOld = sessionVarintGet(pCsr, &nByte);
229793 pCsr += nOld;
229794 nOld += nByte;
229813 nNew += 1 + nOld;
229816 nNew += 2 + nOld;
248406 static int fts5PrefixCompress(int nOld, const u8 *pOld, const u8 *pNew){
248408 for(i=0; i<nOld; i++){