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

/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c15173 ** We often identify a chunk by its index in mem3.aPool[]. When
15196 u32 next; /* Index in mem3.aPool[] of next free chunk */
15197 u32 prev; /* Index in mem3.aPool[] of previous free chunk */
15211 ** (in Mem3Blocks) pointed to by aPool less 2.
15214 Mem3Block *aPool; member in struct:Mem3Global
15252 ** Unlink the chunk at mem3.aPool[i] from list it is currently
15256 u32 next = mem3.aPool[i].u.list.next;
15257 u32 prev = mem3.aPool[i].u.list.prev;
15262 mem3.aPool[prev].u.list.next = next;
15265 mem3.aPool[nex
[all...]
/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/sqlite/dist/orig/
H A Dsqlite3.c17167 ** We often identify a chunk by its index in mem3.aPool[]. When
17190 u32 next; /* Index in mem3.aPool[] of next free chunk */
17191 u32 prev; /* Index in mem3.aPool[] of previous free chunk */
17205 ** (in Mem3Blocks) pointed to by aPool less 2.
17208 Mem3Block *aPool; member in struct:Mem3Global
17246 ** Unlink the chunk at mem3.aPool[i] from list it is currently
17250 u32 next = mem3.aPool[i].u.list.next;
17251 u32 prev = mem3.aPool[i].u.list.prev;
17256 mem3.aPool[prev].u.list.next = next;
17259 mem3.aPool[nex
[all...]
/external/sqlite/dist/
H A Dsqlite3.c17167 ** We often identify a chunk by its index in mem3.aPool[]. When
17190 u32 next; /* Index in mem3.aPool[] of next free chunk */
17191 u32 prev; /* Index in mem3.aPool[] of previous free chunk */
17205 ** (in Mem3Blocks) pointed to by aPool less 2.
17208 Mem3Block *aPool; member in struct:Mem3Global
17246 ** Unlink the chunk at mem3.aPool[i] from list it is currently
17250 u32 next = mem3.aPool[i].u.list.next;
17251 u32 prev = mem3.aPool[i].u.list.prev;
17256 mem3.aPool[prev].u.list.next = next;
17259 mem3.aPool[nex
[all...]

Completed in 1048 milliseconds