Home
last modified time | relevance | path

Searched refs:nSize (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/sqlite3/
H A Dsqlite3.c42269 i64 nSize; /* Required file size */
42276 nSize = ((nByte+pFile->szChunk-1) / pFile->szChunk) * pFile->szChunk;
42277 if( nSize>(i64)buf.st_size ){
42285 err = osFallocate(pFile->h, buf.st_size, nSize-buf.st_size);
42303 for(/*no-op*/; iWrite<nSize+nBlk-1; iWrite+=nBlk ){
42304 if( iWrite>=nSize ) iWrite = nSize - 1;
66289 i64 nSize; /* Size of log file */
66313 rc = sqlite3OsFileSize(pWal->pWalFd, &nSize);
66318 if( nSize>WAL_HDRSIZE ){
66386 iLastFrame = (nSize - WAL_HDRSIZE) / szFrame;
[all …]
H A Dshell.c9553 u32 nSize; member
10282 i64 iEof = pCsr->eocd.iOffset + pCsr->eocd.nSize; in zipfileNext()
10568 pEOCD->nSize = zipfileRead32(aRead); in zipfileReadEOCD()
11137 zipfileWrite32(a, p->nSize); in zipfileSerializeEOCD()
11220 eocd.nSize = (u32)(pTab->szCurrent - iOffset); in zipfileCommit()
11532 eocd.nSize = p->cds.n; in zipfileFinal()
31053 sqlite3_int64 nSize = 0; local
31063 rc = pFile->pMethods->xFileSize(pFile, &nSize);
31065 if(nSize % nBuf){
31069 if(0 == nSize % 4096) nBuf = 4096;
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Support/Windows/
H A DSignals.inc111 HANDLE hProcess, DWORD64 qwBaseAddress, PVOID lpBuffer, DWORD nSize,