Home
last modified time | relevance | path

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

/minix3/external/public-domain/sqlite/dist/
H A Dsqlite3.c17634 u32 currentOut; /* Current checkout, including internal fragmentation */ member
17797 mem5.currentOut += iFullSz; in memsys5MallocUnsafe()
17799 if( mem5.maxOut<mem5.currentOut ) mem5.maxOut = mem5.currentOut; in memsys5MallocUnsafe()
17829 assert( mem5.currentOut>=(size*mem5.szAtom) ); in memsys5FreeUnsafe()
17831 mem5.currentOut -= size*mem5.szAtom; in memsys5FreeUnsafe()
17832 assert( mem5.currentOut>0 || mem5.currentCount==0 ); in memsys5FreeUnsafe()
17833 assert( mem5.currentCount>0 || mem5.currentOut==0 ); in memsys5FreeUnsafe()
18053 fprintf(out, "mem5.currentOut = %u\n", mem5.currentOut); in sqlite3Memsys5Dump()