Lines Matching refs:sqlite3_int64
47 sqlite3_int64 alarmThreshold; /* The soft heap limit */
48 sqlite3_int64 hardLimit; /* The hard upper bound on memory */
73 void(*xCallback)(void *pArg, sqlite3_int64 used,int N), in sqlite3_memory_alarm()
75 sqlite3_int64 iThreshold in sqlite3_memory_alarm()
95 sqlite3_int64 sqlite3_soft_heap_limit64(sqlite3_int64 n){ in sqlite3_soft_heap_limit64()
96 sqlite3_int64 priorLimit; in sqlite3_soft_heap_limit64()
97 sqlite3_int64 excess; in sqlite3_soft_heap_limit64()
98 sqlite3_int64 nUsed; in sqlite3_soft_heap_limit64()
137 sqlite3_int64 sqlite3_hard_heap_limit64(sqlite3_int64 n){ in sqlite3_hard_heap_limit64()
138 sqlite3_int64 priorLimit; in sqlite3_hard_heap_limit64()
197 sqlite3_int64 sqlite3_memory_used(void){ in sqlite3_memory_used()
198 sqlite3_int64 res, mx; in sqlite3_memory_used()
208 sqlite3_int64 sqlite3_memory_highwater(int resetFlag){ in sqlite3_memory_highwater()
209 sqlite3_int64 res, mx; in sqlite3_memory_highwater()
243 sqlite3_int64 nUsed = sqlite3StatusValue(SQLITE_STATUS_MEMORY_USED); in mallocWithAlarm()
529 sqlite3_int64 nUsed; in sqlite3Realloc()