Lines Matching defs:nSize
28526 i64 nSize; /* Required file size */
28533 nSize = ((nByte+pFile->szChunk-1) / pFile->szChunk) * pFile->szChunk;
28534 if( nSize>(i64)buf.st_size ){
28542 err = osFallocate(pFile->h, buf.st_size, nSize-buf.st_size);
28555 if( robust_ftruncate(pFile->h, nSize) ){
28560 while( iWrite<nSize ){
44217 PAGERTRACE(("DATABASE SYNC: File=%s zMaster=%s nSize=%d\n",
46422 i64 nSize; /* Size of log file */
46447 rc = sqlite3OsFileSize(pWal->pWalFd, &nSize);
46452 if( nSize>WAL_HDRSIZE ){
46518 for(iOffset=WAL_HDRSIZE; (iOffset+szFrame)<=nSize; iOffset+=szFrame){
47076 i64 nSize; /* Current size of database file */
47089 rc = sqlite3OsFileSize(pWal->pDbFd, &nSize);
47090 if( rc==SQLITE_OK && nSize<nReq ){
48929 u16 nSize; /* Size of the cell content on the main b-tree page */
50320 if( (pInfo->nSize = (u16)(n+nPayload))<4 ) pInfo->nSize = 4;
50348 pInfo->nSize = pInfo->iOverflow + 4;
50369 u32 nSize;
50373 ** the (CellInfo.nSize) value found by doing a full parse of the
50383 pIter += getVarint32(pIter, nSize);
50385 nSize = 0;
50394 pIter += getVarint32(pIter, nSize);
50397 testcase( nSize==pPage->maxLocal );
50398 testcase( nSize==pPage->maxLocal+1 );
50399 if( nSize>pPage->maxLocal ){
50401 nSize = minLocal + (nSize - minLocal) % (pPage->pBt->usableSize - 4);
50402 testcase( nSize==pPage->maxLocal );
50403 testcase( nSize==pPage->maxLocal+1 );
50404 if( nSize>pPage->maxLocal ){
50405 nSize = minLocal;
50407 nSize += 4;
50409 nSize += (u32)(pIter - pCell);
50412 if( nSize<4 ){
50413 nSize = 4;
50416 assert( nSize==debuginfo.nSize );
50417 return (u16)nSize;
53025 if( pCur->info.nSize==0 ){
53036 if( pCur->info.nSize==0 ){ \
53485 if( NEVER(pCur->info.nSize==0) ){
53569 pCur->info.nSize = 0;
53627 pCur->info.nSize = 0;
53708 pCur->info.nSize = 0;
53770 pCur->info.nSize = 0;
53934 pCur->info.nSize = 0;
54038 pCur->info.nSize = 0;
54102 pCur->info.nSize = 0;
54183 pCur->info.nSize = 0;
54763 *pnSize = info.nSize;
56252 ** the cursor, zero the BtCursor.info.nSize and BtCursor.validNKey
56270 pCur->info.nSize = 0;
75111 int nSize;
75114 nSize = EXPR_FULLSIZE;
75121 nSize = EXPR_REDUCEDSIZE | EP_Reduced;
75123 nSize = EXPR_TOKENONLYSIZE | EP_TokenOnly;
75126 return nSize;
75210 int nSize = exprStructSize(p);
75211 memcpy(zAlloc, p, nSize);
75212 memset(&zAlloc[nSize], 0, EXPR_FULLSIZE-nSize);
122077 static int fts3auxGrowStatArray(Fts3auxCursor *pCsr, int nSize){
122078 if( nSize>pCsr->nStat ){
122081 sizeof(struct Fts3auxColstats) * nSize
122085 sizeof(struct Fts3auxColstats) * (nSize - pCsr->nStat)
122088 pCsr->nStat = nSize;
125271 int nSize; /* Size of allocation at aData */
127178 pWriter->nSize = p->nNodeSize;
127240 if( nReq>pWriter->nSize ){
127244 pWriter->nSize = nReq;
127246 assert( nData+nReq<=pWriter->nSize );