Home
last modified time | relevance | path

Searched refs:szMalloc (Results 1 – 6 of 6) sorted by relevance

/sqlite-3.40.0/src/
H A Dvdbemem.c77 assert( p->szMalloc==0 in sqlite3VdbeCheckMemInvariants()
161 if( p->szMalloc>0 && p->z==p->zMalloc ){ in sqlite3VdbeMemValidStrRep()
248 assert( pMem->szMalloc==0 in sqlite3VdbeMemGrow()
268 pMem->szMalloc = 0; in sqlite3VdbeMemGrow()
304 if( pMem->szMalloc<szNew ){ in sqlite3VdbeMemClearAndResize()
542 if( p->szMalloc ){ in vdbeMemClear()
544 p->szMalloc = 0; in vdbeMemClear()
561 if( VdbeMemDynamic(p) || p->szMalloc ){ in sqlite3VdbeMemRelease()
571 if( p->szMalloc ) vdbeMemClear(p); in sqlite3VdbeMemReleaseMalloc()
851 pMem->szMalloc = 0; in sqlite3VdbeMemInit()
[all …]
H A Dvdbeaux.c1222 if( p->szMalloc ) sqlite3DbFree(db, p->zMalloc); in freeP4Mem()
1995 p->szMalloc = 0; in initMemArray()
2018 if( p->szMalloc ) sqlite3DbFree(db, p->zMalloc); in releaseMemArray()
2044 }else if( p->szMalloc ){ in releaseMemArray()
2046 p->szMalloc = 0; in releaseMemArray()
4087 pMem->szMalloc = 0; in sqlite3VdbeRecordUnpack()
4182 assert( mem1.szMalloc==0 ); /* See comment below */ in vdbeRecordCompareDebug()
4200 assert( mem1.szMalloc==0 ); in vdbeRecordCompareDebug()
4708 assert( mem1.szMalloc==0 ); /* See comment below */ in sqlite3VdbeRecordCompareWithSkip()
4727 assert( mem1.szMalloc==0 ); in sqlite3VdbeRecordCompareWithSkip()
[all …]
H A Dtest_func.c509 if( mem.szMalloc ) sqlite3DbFree(db, mem.zMalloc); in test_extract()
597 if( mem.szMalloc ){ in test_decode()
H A Dutf.c351 pMem->szMalloc = sqlite3DbMallocSize(pMem->db, pMem->z); in sqlite3VdbeMemTranslate()
H A DvdbeInt.h223 int szMalloc; /* Size of the zMalloc allocation */ member
H A Dvdbe.c284 assert( pMem->szMalloc==0 || pMem->z==pMem->zMalloc ); in allocateCursor()
285 if( pMem->szMalloc<nByte ){ in allocateCursor()
286 if( pMem->szMalloc>0 ){ in allocateCursor()
291 pMem->szMalloc = 0; in allocateCursor()
294 pMem->szMalloc = nByte; in allocateCursor()
1267 assert( pOut->szMalloc>0 && pOut->zMalloc==pOut->z ); in sqlite3VdbeExec()
1269 pOut->szMalloc = 0; in sqlite3VdbeExec()
3022 if( pDest->szMalloc < len+2 ){ in sqlite3VdbeExec()
3478 if( nByte+nZero<=pOut->szMalloc ){ in sqlite3VdbeExec()