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

/external/sqlite/dist/orig/
H A Dsqlite3.c16052 ** We often identify a chunk by its index in mem3.aPool[]. When
16075 u32 next; /* Index in mem3.aPool[] of next free chunk */
16076 u32 prev; /* Index in mem3.aPool[] of previous free chunk */
16090 ** (in Mem3Blocks) pointed to by aPool less 2.
16093 Mem3Block *aPool; member in struct:Mem3Global
16131 ** Unlink the chunk at mem3.aPool[i] from list it is currently
16135 u32 next = mem3.aPool[i].u.list.next;
16136 u32 prev = mem3.aPool[i].u.list.prev;
16141 mem3.aPool[prev].u.list.next = next;
16144 mem3.aPool[nex
[all...]
/external/sqlite/dist/
H A Dsqlite3.c16052 ** We often identify a chunk by its index in mem3.aPool[]. When
16075 u32 next; /* Index in mem3.aPool[] of next free chunk */
16076 u32 prev; /* Index in mem3.aPool[] of previous free chunk */
16090 ** (in Mem3Blocks) pointed to by aPool less 2.
16093 Mem3Block *aPool; member in struct:Mem3Global
16131 ** Unlink the chunk at mem3.aPool[i] from list it is currently
16135 u32 next = mem3.aPool[i].u.list.next;
16136 u32 prev = mem3.aPool[i].u.list.prev;
16141 mem3.aPool[prev].u.list.next = next;
16144 mem3.aPool[nex
[all...]

Completed in 365 milliseconds