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

/external/chromium_org/third_party/sqlite/src/src/
H A Dmem3.c65 ** We often identify a chunk by its index in mem3.aPool[]. When
88 u32 next; /* Index in mem3.aPool[] of next free chunk */
89 u32 prev; /* Index in mem3.aPool[] of previous free chunk */
103 ** (in Mem3Blocks) pointed to by aPool less 2.
106 Mem3Block *aPool; member in struct:Mem3Global
144 ** Unlink the chunk at mem3.aPool[i] from list it is currently
148 u32 next = mem3.aPool[i].u.list.next;
149 u32 prev = mem3.aPool[i].u.list.prev;
154 mem3.aPool[prev].u.list.next = next;
157 mem3.aPool[nex
[all...]
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c15188 ** We often identify a chunk by its index in mem3.aPool[]. When
15211 u32 next; /* Index in mem3.aPool[] of next free chunk */
15212 u32 prev; /* Index in mem3.aPool[] of previous free chunk */
15226 ** (in Mem3Blocks) pointed to by aPool less 2.
15229 Mem3Block *aPool; member in struct:Mem3Global
15267 ** Unlink the chunk at mem3.aPool[i] from list it is currently
15271 u32 next = mem3.aPool[i].u.list.next;
15272 u32 prev = mem3.aPool[i].u.list.prev;
15277 mem3.aPool[prev].u.list.next = next;
15280 mem3.aPool[nex
[all...]
/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 745 milliseconds