Lines Matching refs:NCSIZE
26728 #define NCSIZE 1000 macro
26773 int nAlloc[NCSIZE]; /* Total number of allocations */
26774 int nCurrent[NCSIZE]; /* Current number of allocations */
26775 int mxCurrent[NCSIZE]; /* Highwater mark for nCurrent */
26785 if( i>NCSIZE-1 ){ in adjustStats()
26786 i = NCSIZE - 1; in adjustStats()
27155 for(i=0; i<NCSIZE-1; i++){ in sqlite3MemdebugDump()
27161 if( mem.nAlloc[NCSIZE-1] ){ in sqlite3MemdebugDump()
27163 NCSIZE*8-8, mem.nAlloc[NCSIZE-1], in sqlite3MemdebugDump()
27164 mem.nCurrent[NCSIZE-1], mem.mxCurrent[NCSIZE-1]); in sqlite3MemdebugDump()
27175 for(i=0; i<NCSIZE; i++){ in sqlite3MemdebugMallocCount()