Home
last modified time | relevance | path

Searched refs:pSlot (Results 1 – 2 of 2) sorted by relevance

/NextBSD/contrib/sqlite3/
HDsqlite3.c20828 ScratchFreeslot *pSlot;
20831 pSlot = (ScratchFreeslot*)sqlite3GlobalConfig.pScratch;
20833 mem0.pScratchFree = pSlot;
20836 pSlot->pNext = (ScratchFreeslot*)(sz+(char*)pSlot);
20837 pSlot = pSlot->pNext;
20839 pSlot->pNext = 0;
20840 mem0.pScratchEnd = (void*)&pSlot[1];
21062 ScratchFreeslot *pSlot;
21063 pSlot = (ScratchFreeslot*)p;
21065 pSlot->pNext = mem0.pScratchFree;
[all …]
/NextBSD/crypto/heimdal/lib/sqlite/
HDsqlite3.c18264 ScratchFreeslot *pSlot; in sqlite3MallocInit() local
18267 pSlot = (ScratchFreeslot*)sqlite3GlobalConfig.pScratch; in sqlite3MallocInit()
18269 mem0.pScratchFree = pSlot; in sqlite3MallocInit()
18272 pSlot->pNext = (ScratchFreeslot*)(sz+(char*)pSlot); in sqlite3MallocInit()
18273 pSlot = pSlot->pNext; in sqlite3MallocInit()
18275 pSlot->pNext = 0; in sqlite3MallocInit()
18276 mem0.pScratchEnd = (void*)&pSlot[1]; in sqlite3MallocInit()
18498 ScratchFreeslot *pSlot; in sqlite3ScratchFree() local
18499 pSlot = (ScratchFreeslot*)p; in sqlite3ScratchFree()
18501 pSlot->pNext = mem0.pScratchFree; in sqlite3ScratchFree()
[all …]