Searched refs:nFull (Results 1 – 2 of 2) sorted by relevance
20920 int nFull;20923 nFull = sqlite3GlobalConfig.m.xRoundup(n);20927 if( nUsed >= mem0.alarmThreshold - nFull ){20929 sqlite3MallocAlarm(nFull);20934 p = sqlite3GlobalConfig.m.xMalloc(nFull);20937 sqlite3MallocAlarm(nFull);20938 p = sqlite3GlobalConfig.m.xMalloc(nFull);20942 nFull = sqlite3MallocSize(p);20943 sqlite3StatusUp(SQLITE_STATUS_MEMORY_USED, nFull);20947 return nFull;[all …]
18359 int nFull; in mallocWithAlarm() local18362 nFull = sqlite3GlobalConfig.m.xRoundup(n); in mallocWithAlarm()18366 if( nUsed >= mem0.alarmThreshold - nFull ){ in mallocWithAlarm()18368 sqlite3MallocAlarm(nFull); in mallocWithAlarm()18373 p = sqlite3GlobalConfig.m.xMalloc(nFull); in mallocWithAlarm()18376 sqlite3MallocAlarm(nFull); in mallocWithAlarm()18377 p = sqlite3GlobalConfig.m.xMalloc(nFull); in mallocWithAlarm()18381 nFull = sqlite3MallocSize(p); in mallocWithAlarm()18382 sqlite3StatusAdd(SQLITE_STATUS_MEMORY_USED, nFull); in mallocWithAlarm()18386 return nFull; in mallocWithAlarm()[all …]