Home
last modified time | relevance | path

Searched refs:LookasideSlot (Results 1 – 4 of 4) sorted by relevance

/sqlite-3.40.0/src/
H A Dmalloc.c428 LookasideSlot *pBuf = (LookasideSlot*)p; in sqlite3DbFreeNN()
439 LookasideSlot *pBuf = (LookasideSlot*)p; in sqlite3DbFreeNN()
467 LookasideSlot *pBuf = (LookasideSlot*)p; in sqlite3DbNNFreeNN()
478 LookasideSlot *pBuf = (LookasideSlot*)p; in sqlite3DbNNFreeNN()
647 LookasideSlot *pBuf; in sqlite3DbMallocRawNN()
H A Dstatus.c176 static u32 countLookasideSlots(LookasideSlot *p){ in countLookasideSlots()
220 LookasideSlot *p = db->lookaside.pFree; in sqlite3_db_status()
H A DsqliteInt.h1197 typedef struct LookasideSlot LookasideSlot; typedef
1438 LookasideSlot *pInit; /* List of buffers not previously used */
1439 LookasideSlot *pFree; /* List of available buffers */
1441 LookasideSlot *pSmallInit; /* List of small buffers not prediously used */
1442 LookasideSlot *pSmallFree; /* List of available small buffers */
1450 struct LookasideSlot { struct
1451 LookasideSlot *pNext; /* Next buffer in the list of free buffers */ argument
H A Dmain.c768 if( sz<=(int)sizeof(LookasideSlot*) ) sz = 0; in setupLookaside()
803 LookasideSlot *p; in setupLookaside()
804 assert( sz > (int)sizeof(LookasideSlot*) ); in setupLookaside()
805 p = (LookasideSlot*)pStart; in setupLookaside()
809 p = (LookasideSlot*)&((u8*)p)[sz]; in setupLookaside()
818 p = (LookasideSlot*)&((u8*)p)[LOOKASIDE_SMALL]; in setupLookaside()