Lines Matching defs:pSlot
53919 PgFreeslot *pSlot;
53922 pSlot = (PgFreeslot*)p;
53923 pSlot->pNext = pcache1.pFree;
53924 pcache1.pFree = pSlot;
76030 u8 *pSlot;
76033 if( (aData[1]==0 && aData[2]==0) || (pSlot = pageFindSlot(pPg,sz,&rc))==0 ){
76036 pSlot = pData;
76038 /* pSlot and pCArray->apCell[i] will never overlap on a well-formed
76041 assert( (pSlot+sz)<=pCArray->apCell[i]
76042 || pSlot>=(pCArray->apCell[i]+sz)
76051 memmove(pSlot, pCArray->apCell[i], sz);
76052 put2byte(pCellptr, (pSlot - aData));
229574 Fts5HashEntry *pSlot;
229575 for(pSlot=pHash->aSlot[i]; pSlot; pSlot=pNext){
229576 pNext = pSlot->pHashNext;
229577 sqlite3_free(pSlot);