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

/macosx-10.9.5/Heimdal-323.92.1/lib/sqlite/
H A Dsqlite3.c15564 ** We often identify a chunk by its index in mem3.aPool[]. When
15587 u32 next; /* Index in mem3.aPool[] of next free chunk */
15588 u32 prev; /* Index in mem3.aPool[] of previous free chunk */
15602 ** (in Mem3Blocks) pointed to by aPool less 2.
15605 Mem3Block *aPool; member in struct:Mem3Global
15643 ** Unlink the chunk at mem3.aPool[i] from list it is currently
15647 u32 next = mem3.aPool[i].u.list.next;
15648 u32 prev = mem3.aPool[i].u.list.prev;
15653 mem3.aPool[prev].u.list.next = next;
15656 mem3.aPool[nex
[all...]

Completed in 245 milliseconds