Searched refs:nAlloc (Results 1 – 4 of 4) sorted by relevance
/external/sqlite/dist/orig/ |
D | shell.c | 716 int nAlloc; member 751 if( p->n+len>=p->nAlloc ){ in appendText() 752 p->nAlloc = p->nAlloc*2 + len + 20; in appendText() 753 p->z = realloc(p->z, p->nAlloc); in appendText() 4727 int nAlloc = (int)compressBound(nIn); in zipfileDeflate() local 4731 aOut = (u8*)sqlite3_malloc(nAlloc); in zipfileDeflate() 4741 str.avail_out = nAlloc; in zipfileDeflate() 9352 int nAlloc = 0; /* Allocated size of p->aiIndent[], abYield */ in explain_data_prepare() local 9389 if( iOp>=nAlloc ){ in explain_data_prepare() 9404 nAlloc += 100; in explain_data_prepare() [all …]
|
D | sqlite3.c | 16459 u32 nAlloc; /* Number of entries allocated in a[] below */ member 17118 u32 nAlloc; /* Amount of space allocated in zText */ member 21795 int nAlloc[NCSIZE]; /* Total number of allocations */ member 21811 mem.nAlloc[i]++; in adjustStats() 22178 if( mem.nAlloc[i] ){ in sqlite3MemdebugDump() 22180 i*8, mem.nAlloc[i], mem.nCurrent[i], mem.mxCurrent[i]); in sqlite3MemdebugDump() 22183 if( mem.nAlloc[NCSIZE-1] ){ in sqlite3MemdebugDump() 22185 NCSIZE*8-8, mem.nAlloc[NCSIZE-1], in sqlite3MemdebugDump() 22198 nTotal += mem.nAlloc[i]; in sqlite3MemdebugMallocCount() 23006 u64 nAlloc; /* Total number of calls to malloc */ member [all …]
|
/external/sqlite/dist/ |
D | shell.c | 722 int nAlloc; member 757 if( p->n+len>=p->nAlloc ){ in appendText() 758 p->nAlloc = p->nAlloc*2 + len + 20; in appendText() 759 p->z = realloc(p->z, p->nAlloc); in appendText() 4733 int nAlloc = (int)compressBound(nIn); in zipfileDeflate() local 4737 aOut = (u8*)sqlite3_malloc(nAlloc); in zipfileDeflate() 4747 str.avail_out = nAlloc; in zipfileDeflate() 9358 int nAlloc = 0; /* Allocated size of p->aiIndent[], abYield */ in explain_data_prepare() local 9395 if( iOp>=nAlloc ){ in explain_data_prepare() 9410 nAlloc += 100; in explain_data_prepare() [all …]
|
D | sqlite3.c | 16459 u32 nAlloc; /* Number of entries allocated in a[] below */ member 17118 u32 nAlloc; /* Amount of space allocated in zText */ member 21795 int nAlloc[NCSIZE]; /* Total number of allocations */ member 21811 mem.nAlloc[i]++; in adjustStats() 22178 if( mem.nAlloc[i] ){ in sqlite3MemdebugDump() 22180 i*8, mem.nAlloc[i], mem.nCurrent[i], mem.mxCurrent[i]); in sqlite3MemdebugDump() 22183 if( mem.nAlloc[NCSIZE-1] ){ in sqlite3MemdebugDump() 22185 NCSIZE*8-8, mem.nAlloc[NCSIZE-1], in sqlite3MemdebugDump() 22198 nTotal += mem.nAlloc[i]; in sqlite3MemdebugMallocCount() 23006 u64 nAlloc; /* Total number of calls to malloc */ member [all …]
|