Lines Matching refs:sqlite3MallocSize
11227 SQLITE_PRIVATE int sqlite3MallocSize(void*);
13157 nByte += sqlite3MallocSize(pSchema->tblHash.ht); in sqlite3_db_status()
13158 nByte += sqlite3MallocSize(pSchema->trigHash.ht); in sqlite3_db_status()
13159 nByte += sqlite3MallocSize(pSchema->idxHash.ht); in sqlite3_db_status()
13160 nByte += sqlite3MallocSize(pSchema->fkeyHash.ht); in sqlite3_db_status()
18381 nFull = sqlite3MallocSize(p); in mallocWithAlarm()
18513 int iSize = sqlite3MallocSize(p); in sqlite3ScratchFree()
18542 SQLITE_PRIVATE int sqlite3MallocSize(void *p){ in sqlite3MallocSize() function
18568 sqlite3StatusAdd(SQLITE_STATUS_MEMORY_USED, -sqlite3MallocSize(p)); in sqlite3_free()
18620 nOld = sqlite3MallocSize(pOld); in sqlite3Realloc()
18643 nNew = sqlite3MallocSize(pNew); in sqlite3Realloc()
21922 pH->htsize = new_size = sqlite3MallocSize(new_ht)/sizeof(struct _ht); in rehash()
36073 int sz = sqlite3MallocSize(p);
36103 iSize = sqlite3MallocSize(p);
36122 iSize = sqlite3MallocSize(p);
36221 pBlock->nEntry = (sqlite3MallocSize(pBlock) - sizeof(PGroupBlock)) / nByte;
36230 sz = sqlite3MallocSize(pBlock);
36321 int sz = sqlite3MallocSize(pBlock);
43589 + sqlite3MallocSize(pPager)
113356 || (aDyn && nArg==(int)(sqlite3MallocSize(aDyn)/sizeof(void*)))