Lines Matching refs:sqlite3MallocSize
8588 #define SQLITE_DYNAMIC ((sqlite3_destructor_type)sqlite3MallocSize)
12154 SQLITE_PRIVATE int sqlite3MallocSize(void*);
14241 nByte += sqlite3MallocSize(pSchema->tblHash.ht); in sqlite3_db_status()
14242 nByte += sqlite3MallocSize(pSchema->trigHash.ht); in sqlite3_db_status()
14243 nByte += sqlite3MallocSize(pSchema->idxHash.ht); in sqlite3_db_status()
14244 nByte += sqlite3MallocSize(pSchema->fkeyHash.ht); in sqlite3_db_status()
19433 nFull = sqlite3MallocSize(p); in mallocWithAlarm()
19565 int iSize = sqlite3MallocSize(p); in sqlite3ScratchFree()
19594 SQLITE_PRIVATE int sqlite3MallocSize(void *p){ in sqlite3MallocSize() function
19621 sqlite3StatusAdd(SQLITE_STATUS_MEMORY_USED, -sqlite3MallocSize(p)); in sqlite3_free()
19678 nOld = sqlite3MallocSize(pOld); in sqlite3Realloc()
19701 nNew = sqlite3MallocSize(pNew); in sqlite3Realloc()
23061 pH->htsize = new_size = sqlite3MallocSize(new_ht)/sizeof(struct _ht); in rehash()
37963 int sz = sqlite3MallocSize(p);
37994 nFreed = sqlite3MallocSize(p);
38016 iSize = sqlite3MallocSize(p);
45809 + sqlite3MallocSize(pPager)
120012 if( pStart ) cnt = sqlite3MallocSize(pStart)/sz;
123103 || (aDyn && nArg==(int)(sqlite3MallocSize(aDyn)/sizeof(void*)))