Lines Matching refs:pSlot
55541 PgFreeslot *pSlot;
55544 pSlot = (PgFreeslot*)p;
55545 pSlot->pNext = pcache1.pFree;
55546 pcache1.pFree = pSlot;
78200 u8 *pSlot;
78203 if( (aData[1]==0 && aData[2]==0) || (pSlot = pageFindSlot(pPg,sz,&rc))==0 ){
78206 pSlot = pData;
78208 /* pSlot and pCArray->apCell[i] will never overlap on a well-formed
78211 assert( (pSlot+sz)<=pCArray->apCell[i]
78212 || pSlot>=(pCArray->apCell[i]+sz)
78221 memmove(pSlot, pCArray->apCell[i], sz);
78222 put2byte(pCellptr, (pSlot - aData));
240068 Fts5HashEntry *pSlot;
240069 for(pSlot=pHash->aSlot[i]; pSlot; pSlot=pNext){
240070 pNext = pSlot->pHashNext;
240071 sqlite3_free(pSlot);