Home | History | Annotate | Download | only in dist

Lines Matching defs:sqlite3MallocSize

8730 #define SQLITE_DYNAMIC   ((sqlite3_destructor_type)sqlite3MallocSize)
12384 SQLITE_PRIVATE int sqlite3MallocSize(void*);
14509 nByte += sqlite3MallocSize(pSchema->tblHash.ht);
14510 nByte += sqlite3MallocSize(pSchema->trigHash.ht);
14511 nByte += sqlite3MallocSize(pSchema->idxHash.ht);
14512 nByte += sqlite3MallocSize(pSchema->fkeyHash.ht);
20028 nFull = sqlite3MallocSize(p);
20160 int iSize = sqlite3MallocSize(p);
20189 SQLITE_PRIVATE int sqlite3MallocSize(void *p){
20216 sqlite3StatusAdd(SQLITE_STATUS_MEMORY_USED, -sqlite3MallocSize(p));
20273 nOld = sqlite3MallocSize(pOld);
20296 nNew = sqlite3MallocSize(pNew);
23734 pH->htsize = new_size = sqlite3MallocSize(new_ht)/sizeof(struct _ht);
38801 int sz = sqlite3MallocSize(p);
38832 nFreed = sqlite3MallocSize(p);
38854 iSize = sqlite3MallocSize(p);
46658 + sqlite3MallocSize(pPager)
122745 if( pStart ) cnt = sqlite3MallocSize(pStart)/sz;
125901 || (aDyn && nArg==(int)(sqlite3MallocSize(aDyn)/sizeof(void*)))