Lines Matching defs:sqlite3_msize
3376 ** sqlite3_msize(X) returns the size of that memory allocation in bytes.
3377 ** ^The value returned by sqlite3_msize(X) might be larger than the number
3379 ** sqlite3_msize(X) returns zero. If X points to something that is not
3382 ** of sqlite3_msize(X) is undefined and possibly harmful.
3404 SQLITE_API sqlite3_uint64 sqlite3_msize(void*);
24125 nByte += sqlite3_msize(pSchema->tblHash.ht);
24126 nByte += sqlite3_msize(pSchema->trigHash.ht);
24127 nByte += sqlite3_msize(pSchema->idxHash.ht);
24128 nByte += sqlite3_msize(pSchema->fkeyHash.ht);
30618 SQLITE_API sqlite3_uint64 sqlite3_msize(void *p){
83115 && sqlite3_msize(pMem->z) >= (u64)(pMem->n+1)
137037 #define sqlite3_msize sqlite3_api->msize
137540 sqlite3_msize,
225350 if( pSession ) pSession->nMalloc += sqlite3_msize(pRet);
225360 if( pSession ) pSession->nMalloc -= sqlite3_msize(pFree);