Searched refs:nReq (Results 1 – 2 of 2) sorted by relevance
56392 SQLITE_PRIVATE int sqlite3PcacheReleaseMemory(int nReq){56399 while( (nReq<0 || nFree<nReq)67170 i64 nReq = ((i64)mxPage * szPage);67174 if( rc==SQLITE_OK && nSize<nReq ){67175 if( (nSize+65536+(i64)pWal->hdr.mxFrame*szPage)<nReq ){67182 sqlite3OsFileControlHint(pWal->pDbFd, SQLITE_FCNTL_SIZE_HINT,&nReq);104576 i64 nReq; /* Bytes of memory required */104609 nReq = pVal->n + sizeof(SorterRecord);104613 bFlush = pSorter->iMemory && (pSorter->iMemory+nReq) > pSorter->mxPmaSize;104634 int nMin = pSorter->iMemory + nReq;[all …]
11326 int nReq = pBuf->n + nByte; in zipfileBufferGrow() local11328 while( nNew<nReq ) nNew = nNew*2; in zipfileBufferGrow()