OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:LookasideSlot
(Results
1 - 4
of
4
) sorted by null
/external/chromium_org/third_party/sqlite/src/src/
malloc.c
492
LookasideSlot
*pBuf = (
LookasideSlot
*)p;
615
LookasideSlot
*pBuf;
main.c
464
if( sz<=(int)sizeof(
LookasideSlot
*) ) sz = 0;
483
LookasideSlot
*p;
484
assert( sz > (int)sizeof(
LookasideSlot
*) );
485
p = (
LookasideSlot
*)pStart;
489
p = (
LookasideSlot
*)&((u8*)p)[sz];
[
all
...]
sqliteInt.h
618
typedef struct
LookasideSlot
LookasideSlot
;
739
** the lookaside subsystem is stored on a linked list of
LookasideSlot
756
LookasideSlot
*pFree; /* List of available buffers */
760
struct
LookasideSlot
{
761
LookasideSlot
*pNext; /* Next buffer in the list of free buffers */
[
all
...]