Lines Matching refs:szMalloc

14680   int szMalloc;       /* Size of the zMalloc allocation */  member
23217 pMem->szMalloc = sqlite3DbMallocSize(pMem->db, pMem->z);
63124 assert( (p->flags & MEM_Dyn)==0 || p->szMalloc==0 );
63130 assert( p->szMalloc==0
63131 || p->szMalloc==sqlite3DbMallocSize(p->db,p->zMalloc) );
63143 ((p->szMalloc>0 && p->z==p->zMalloc)? 1 : 0) +
63211 assert( pMem->szMalloc==0
63212 || pMem->szMalloc==sqlite3DbMallocSize(pMem->db, pMem->zMalloc) );
63213 if( pMem->szMalloc<n ){
63215 if( bPreserve && pMem->szMalloc>0 && pMem->z==pMem->zMalloc ){
63219 if( pMem->szMalloc>0 ) sqlite3DbFree(pMem->db, pMem->zMalloc);
63225 pMem->szMalloc = 0;
63228 pMem->szMalloc = sqlite3DbMallocSize(pMem->db, pMem->zMalloc);
63260 assert( (pMem->flags & MEM_Dyn)==0 || pMem->szMalloc==0 );
63261 if( pMem->szMalloc<szNew ){
63282 if( (f&(MEM_Str|MEM_Blob)) && (pMem->szMalloc==0 || pMem->z!=pMem->zMalloc) ){
63429 if( pMem->szMalloc>0 ) sqlite3DbFree(pMem->db, pMem->zMalloc);
63479 if( p->szMalloc ){
63481 p->szMalloc = 0;
63498 if( VdbeMemDynamic(p) || p->szMalloc ){
63720 pMem->szMalloc = 0;
63811 pMem->szMalloc = 0;
63814 pMem->szMalloc = sqlite3DbMallocSize(db, pMem->zMalloc);
63815 pMem->u.pRowSet = sqlite3RowSetInit(db, pMem->zMalloc, pMem->szMalloc);
63918 pFrom->szMalloc = 0;
63995 pMem->szMalloc = sqlite3DbMallocSize(pMem->db, pMem->zMalloc);
65512 if( p->szMalloc ) sqlite3DbFree(db, p->zMalloc);
66046 if( p->szMalloc ) sqlite3DbFree(db, p->zMalloc);
66072 }else if( p->szMalloc ){
66074 p->szMalloc = 0;
68028 pMem->szMalloc = 0;
68068 VVA_ONLY( mem1.szMalloc = 0; ) /* Only needed by assert() statements */
68111 assert( mem1.szMalloc==0 ); /* See comment below */
68124 assert( mem1.szMalloc==0 );
68412 VVA_ONLY( mem1.szMalloc = 0; ) /* Only needed by assert() statements */
68535 assert( mem1.szMalloc==0 ); /* See comment below */
68548 assert( mem1.szMalloc==0 );
68835 testcase( m.szMalloc!=0 );
71883 assert( pOut->szMalloc>0 && pOut->zMalloc==pOut->z );
71885 pOut->szMalloc = 0;