Searched refs:aPool (Results 1 - 1 of 1) sorted by relevance

/netbsd-6-1-5-RELEASE/external/public-domain/sqlite/dist/
H A Dsqlite3.c15988 ** We often identify a chunk by its index in mem3.aPool[]. When
16011 u32 next; /* Index in mem3.aPool[] of next free chunk */
16012 u32 prev; /* Index in mem3.aPool[] of previous free chunk */
16026 ** (in Mem3Blocks) pointed to by aPool less 2.
16029 Mem3Block *aPool; member in struct:Mem3Global
16067 ** Unlink the chunk at mem3.aPool[i] from list it is currently
16071 u32 next = mem3.aPool[i].u.list.next;
16072 u32 prev = mem3.aPool[i].u.list.prev;
16077 mem3.aPool[prev].u.list.next = next;
16080 mem3.aPool[nex
[all...]

Completed in 405 milliseconds