Lines Matching defs:nExtra

38198   u16 nExtra;                 /* Add this many bytes to each in-memory page */
41799 ** The nExtra parameter specifies the number of bytes of space allocated
41821 int nExtra, /* Extra bytes append to each in-memory page */
42033 assert( nExtra<1000 );
42034 nExtra = ROUND8(nExtra);
42035 sqlite3PcacheOpen(szPageDflt, nExtra, !memDb,
42071 pPager->nExtra = (u16)nExtra;
43586 int perPageSize = pPager->pageSize + pPager->nExtra + sizeof(PgHdr)
43835 ** meta-data associated with pPg (i.e. data stored in the nExtra bytes
43988 ** Return a pointer to the Pager.nExtra bytes of "extra" space
73405 int nExtra = 0;
73411 nExtra = pToken->n+1;
73415 pNew = sqlite3DbMallocZero(db, sizeof(Expr)+nExtra);
73420 if( nExtra==0 ){
73428 if( dequote && nExtra>=3
81606 int nExtra = 0;
81766 nExtra += (1 + sqlite3Strlen30(pColl->zName));
81783 nExtra /* Collation sequence names */
81845 assert( nExtra>=nColl );
81849 nExtra -= nColl;
82254 ** creating nExtra new slots beginning at iStart. iStart is zero based.
82274 int nExtra, /* Number of new slots to add to pSrc->a[] */
82281 assert( nExtra>=1 );
82286 if( pSrc->nSrc+nExtra>pSrc->nAlloc ){
82288 int nAlloc = pSrc->nSrc+nExtra;
82304 pSrc->a[i+nExtra] = pSrc->a[i];
82306 pSrc->nSrc += (i16)nExtra;
82309 memset(&pSrc->a[iStart], 0, sizeof(pSrc->a[0])*nExtra);
82310 for(i=iStart; i<iStart+nExtra; i++){
123629 int nExtra = 0; /* Bytes to allocate segment root node */
123633 nExtra = nRoot + FTS3_NODE_PADDING;
123636 pReader = (Fts3SegReader *)sqlite3_malloc(sizeof(Fts3SegReader) + nExtra);
123646 if( nExtra ){