Lines Matching refs:sqlite3MallocSize
10685 SQLITE_PRIVATE int sqlite3MallocSize(void*);
12562 nByte += sqlite3MallocSize(pSchema->tblHash.ht);
12563 nByte += sqlite3MallocSize(pSchema->trigHash.ht);
12564 nByte += sqlite3MallocSize(pSchema->idxHash.ht);
12565 nByte += sqlite3MallocSize(pSchema->fkeyHash.ht);
17745 nFull = sqlite3MallocSize(p);
17877 int iSize = sqlite3MallocSize(p);
17906 SQLITE_PRIVATE int sqlite3MallocSize(void *p){
17932 sqlite3StatusAdd(SQLITE_STATUS_MEMORY_USED, -sqlite3MallocSize(p));
17984 nOld = sqlite3MallocSize(pOld);
18006 nNew = sqlite3MallocSize(pNew);
21147 pH->htsize = new_size = sqlite3MallocSize(new_ht)/sizeof(struct _ht);
33603 int sz = sqlite3MallocSize(p);
33629 iSize = sqlite3MallocSize(p);
33647 iSize = sqlite3MallocSize(p);
40811 + sqlite3MallocSize(pPager)
107687 || (aDyn && nArg==(int)(sqlite3MallocSize(aDyn)/sizeof(void*)))