Home
last modified time | relevance | path

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

/sqlite-3.40.0/ext/expert/
H A Dsqlite3expert.c1510 struct IdxRemSlot *pSlot; in idxRemFunc() local
1516 pSlot = &p->aSlot[iSlot]; in idxRemFunc()
1518 switch( pSlot->eType ){ in idxRemFunc()
1532 sqlite3_result_blob(pCtx, pSlot->z, pSlot->n, SQLITE_TRANSIENT); in idxRemFunc()
1536 sqlite3_result_text(pCtx, pSlot->z, pSlot->n, SQLITE_TRANSIENT); in idxRemFunc()
1541 switch( pSlot->eType ){ in idxRemFunc()
1558 if( nByte>pSlot->nByte ){ in idxRemFunc()
1564 pSlot->nByte = nByte*2; in idxRemFunc()
1565 pSlot->z = zNew; in idxRemFunc()
1567 pSlot->n = nByte; in idxRemFunc()
[all …]
/sqlite-3.40.0/ext/fts5/
H A Dfts5_hash.c130 Fts5HashEntry *pSlot; in sqlite3Fts5HashClear() local
131 for(pSlot=pHash->aSlot[i]; pSlot; pSlot=pNext){ in sqlite3Fts5HashClear()
132 pNext = pSlot->pHashNext; in sqlite3Fts5HashClear()
133 sqlite3_free(pSlot); in sqlite3Fts5HashClear()
/sqlite-3.40.0/src/
H A Dpcache1.c385 PgFreeslot *pSlot; in pcache1Free() local
388 pSlot = (PgFreeslot*)p; in pcache1Free()
389 pSlot->pNext = pcache1.pFree; in pcache1Free()
390 pcache1.pFree = pSlot; in pcache1Free()
H A Dbtree.c7390 u8 *pSlot; in pageInsertArray() local
7393 if( (aData[1]==0 && aData[2]==0) || (pSlot = pageFindSlot(pPg,sz,&rc))==0 ){ in pageInsertArray()
7396 pSlot = pData; in pageInsertArray()
7401 assert( (pSlot+sz)<=pCArray->apCell[i] in pageInsertArray()
7402 || pSlot>=(pCArray->apCell[i]+sz) in pageInsertArray()
7411 memmove(pSlot, pCArray->apCell[i], sz); in pageInsertArray()
7412 put2byte(pCellptr, (pSlot - aData)); in pageInsertArray()