Home
last modified time | relevance | path

Searched refs:nAlloc (Results 1 – 3 of 3) sorted by relevance

/freebsd/stand/ficl/
H A Ddict.c388 size_t nAlloc; in dictCreateHashed() local
390 nAlloc = sizeof (FICL_HASH) + nCells * sizeof (CELL) in dictCreateHashed()
396 pDict->dict = ficlMalloc(nAlloc); in dictCreateHashed()
/freebsd/contrib/sqlite3/
H A Dshell.c1912 int nAlloc; member
1947 if( p->z==0 || p->n+len>=p->nAlloc ){ in appendText()
1948 p->nAlloc = p->nAlloc*2 + len + 20; in appendText()
1949 p->z = realloc(p->z, p->nAlloc); in appendText()
6427 unsigned nAlloc; /* Slots allocated for aOp[] and aArg[] */ member
6651 p->nAlloc = N; in re_resize()
6660 if( p->nAlloc<=p->nState && re_resize(p, p->nAlloc*2) ) return 0; in re_insert()
6681 if( p->nState+N>=p->nAlloc && re_resize(p, p->nAlloc*2+N) ) return; in re_copy()
10199 sqlite3_int64 nAlloc; in zipfileGetEntry() local
10206 nAlloc = sizeof(ZipfileEntry) + nExtra; in zipfileGetEntry()
[all …]
H A Dsqlite3.c19171 int nAlloc; /* Number of a[] slots allocated */ member
19325 u32 nAlloc; /* Number of entries allocated in a[] below */ member
20104 u32 nAlloc; /* Amount of space allocated in zText */ member
27052 int nAlloc[NCSIZE]; /* Total number of allocations */ member
27068 mem.nAlloc[i]++; in adjustStats()
27435 if( mem.nAlloc[i] ){ in sqlite3MemdebugDump()
27437 i*8, mem.nAlloc[i], mem.nCurrent[i], mem.mxCurrent[i]); in sqlite3MemdebugDump()
27440 if( mem.nAlloc[NCSIZE-1] ){ in sqlite3MemdebugDump()
27442 NCSIZE*8-8, mem.nAlloc[NCSIZE-1], in sqlite3MemdebugDump()
27455 nTotal += mem.nAlloc[i]; in sqlite3MemdebugMallocCount()
[all …]