• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-WNDR4500v2-V1.0.0.60_1.0.38/ap/gpl/minidlna/sqlite-3.6.22/

Lines Matching refs:nSize

35778   PAGERTRACE(("DATABASE SYNC: File=%s zMaster=%s nSize=%d\n", 
37029 u16 nSize; /* Size of the cell content on the main b-tree page */
38471 int nSize; /* Total size of cell content in bytes */
38472 nSize = nPayload + n;
38475 if( (nSize & ~3)==0 ){
38476 nSize = 4; /* Minimum cell size is 4 */
38478 pInfo->nSize = (u16)nSize;
38504 pInfo->nSize = pInfo->iOverflow + 4;
38525 u32 nSize;
38529 ** the (CellInfo.nSize) value found by doing a full parse of the
38539 pIter += getVarint32(pIter, nSize);
38541 nSize = 0;
38550 pIter += getVarint32(pIter, nSize);
38553 testcase( nSize==pPage->maxLocal );
38554 testcase( nSize==pPage->maxLocal+1 );
38555 if( nSize>pPage->maxLocal ){
38557 nSize = minLocal + (nSize - minLocal) % (pPage->pBt->usableSize - 4);
38558 testcase( nSize==pPage->maxLocal );
38559 testcase( nSize==pPage->maxLocal+1 );
38560 if( nSize>pPage->maxLocal ){
38561 nSize = minLocal;
38563 nSize += 4;
38565 nSize += (u32)(pIter - pCell);
38568 if( nSize<4 ){
38569 nSize = 4;
38572 assert( nSize==debuginfo.nSize );
38573 return (u16)nSize;
41026 if( pCur->info.nSize==0 ){
41037 if( pCur->info.nSize==0 ){ \
41452 if( NEVER(pCur->info.nSize==0) ){
41536 pCur->info.nSize = 0;
41584 pCur->info.nSize = 0;
41662 pCur->info.nSize = 0;
41724 pCur->info.nSize = 0;
41889 pCur->info.nSize = 0;
41989 pCur->info.nSize = 0;
42047 pCur->info.nSize = 0;
42128 pCur->info.nSize = 0;
42687 *pnSize = info.nSize;
44136 ** the cursor, zero the BtCursor.info.nSize and BtCursor.validNKey
44154 pCur->info.nSize = 0;
60910 int nSize;
60913 nSize = EXPR_FULLSIZE;
60920 nSize = EXPR_REDUCEDSIZE | EP_Reduced;
60922 nSize = EXPR_TOKENONLYSIZE | EP_TokenOnly;
60925 return nSize;
61009 int nSize = exprStructSize(p);
61010 memcpy(zAlloc, p, nSize);
61011 memset(&zAlloc[nSize], 0, EXPR_FULLSIZE-nSize);
103672 int nSize; /* Size of allocation at aData */
105090 pWriter->nSize = p->nNodeSize;
105152 if( nReq>pWriter->nSize ){
105156 pWriter->nSize = nReq;
105158 assert( nData+nReq<=pWriter->nSize );