Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dshell.c16346 struct IdxRemSlot *pSlot; in idxRemFunc() local
16352 pSlot = &p->aSlot[iSlot]; in idxRemFunc()
16354 switch( pSlot->eType ){ in idxRemFunc()
16360 sqlite3_result_int64(pCtx, pSlot->iVal); in idxRemFunc()
16364 sqlite3_result_double(pCtx, pSlot->rVal); in idxRemFunc()
16368 assert( pSlot->n <= 0x7fffffff ); in idxRemFunc()
16369 sqlite3_result_blob(pCtx, pSlot->z, (int)pSlot->n, SQLITE_TRANSIENT); in idxRemFunc()
16373 assert( pSlot->n <= 0x7fffffff ); in idxRemFunc()
16374 sqlite3_result_text(pCtx, pSlot->z, (int)pSlot->n, SQLITE_TRANSIENT); in idxRemFunc()
16378 pSlot->eType = sqlite3_value_type(argv[1]); in idxRemFunc()
[all …]
H A Dsqlite3.c58067 PgFreeslot *pSlot; local
58070 pSlot = (PgFreeslot*)p;
58071 pSlot->pNext = pcache1.pFree;
58072 pcache1.pFree = pSlot;
80984 u8 *pSlot; local
80987 if( (aData[1]==0 && aData[2]==0) || (pSlot = pageFindSlot(pPg,sz,&rc))==0 ){
80990 pSlot = pData;
80995 assert( (pSlot+sz)<=pCArray->apCell[i]
80996 || pSlot>=(pCArray->apCell[i]+sz)
81005 memmove(pSlot, pCArray->apCell[i], sz);
[all …]