Searched refs:nNew (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/sqlite3/ |
H A D | sqlite3.c | 30740 int nOld, nNew, nDiff; in sqlite3Realloc() local 30759 nNew = sqlite3GlobalConfig.m.xRoundup((int)nBytes); in sqlite3Realloc() 30760 if( nOld==nNew ){ in sqlite3Realloc() 30766 nDiff = nNew - nOld; in sqlite3Realloc() 30776 pNew = sqlite3GlobalConfig.m.xRealloc(pOld, nNew); in sqlite3Realloc() 30780 pNew = sqlite3GlobalConfig.m.xRealloc(pOld, nNew); in sqlite3Realloc() 30784 nNew = sqlite3MallocSize(pNew); in sqlite3Realloc() 30785 sqlite3StatusUp(SQLITE_STATUS_MEMORY_USED, nNew-nOld); in sqlite3Realloc() 30789 pNew = sqlite3GlobalConfig.m.xRealloc(pOld, nNew); in sqlite3Realloc() 43671 i64 nNew /* Required mapping size */ [all …]
|
H A D | shell.c | 7858 int nNew = iNew+1; in fsdirNext() local 7859 sqlite3_int64 nByte = nNew*sizeof(FsdirLevel); in fsdirNext() 7862 memset(&aNew[pCur->nLvl], 0, sizeof(FsdirLevel)*(nNew-pCur->nLvl)); in fsdirNext() 7864 pCur->nLvl = nNew; in fsdirNext() 11325 sqlite3_int64 nNew = pBuf->n ? pBuf->n*2 : 512; in zipfileBufferGrow() local 11328 while( nNew<nReq ) nNew = nNew*2; in zipfileBufferGrow() 11329 aNew = sqlite3_realloc64(pBuf->a, nNew); in zipfileBufferGrow() 11332 pBuf->nAlloc = (int)nNew; in zipfileBufferGrow() 15618 sqlite3_int64 nNew = nMin+16384; in dbdataBufferSize() local 15619 u8 *aNew = (u8*)sqlite3_realloc64(pBuf->aBuf, nNew); in dbdataBufferSize() [all …]
|