Searched refs:pSlot (Results 1 – 2 of 2) sorted by relevance
| /freebsd/contrib/sqlite3/ |
| H A D | shell.c | 16308 struct IdxRemSlot *pSlot; in idxRemFunc() local 16314 pSlot = &p->aSlot[iSlot]; in idxRemFunc() 16316 switch( pSlot->eType ){ in idxRemFunc() 16322 sqlite3_result_int64(pCtx, pSlot->iVal); in idxRemFunc() 16326 sqlite3_result_double(pCtx, pSlot->rVal); in idxRemFunc() 16330 assert( pSlot->n <= 0x7fffffff ); in idxRemFunc() 16331 sqlite3_result_blob(pCtx, pSlot->z, (int)pSlot->n, SQLITE_TRANSIENT); in idxRemFunc() 16335 assert( pSlot->n <= 0x7fffffff ); in idxRemFunc() 16336 sqlite3_result_text(pCtx, pSlot->z, (int)pSlot->n, SQLITE_TRANSIENT); in idxRemFunc() 16340 pSlot->eType = sqlite3_value_type(argv[1]); in idxRemFunc() [all …]
|
| H A D | sqlite3.c | 58018 PgFreeslot *pSlot; local 58021 pSlot = (PgFreeslot*)p; 58022 pSlot->pNext = pcache1.pFree; 58023 pcache1.pFree = pSlot; 80865 u8 *pSlot; local 80868 if( (aData[1]==0 && aData[2]==0) || (pSlot = pageFindSlot(pPg,sz,&rc))==0 ){ 80871 pSlot = pData; 80876 assert( (pSlot+sz)<=pCArray->apCell[i] 80877 || pSlot>=(pCArray->apCell[i]+sz) 80886 memmove(pSlot, pCArray->apCell[i], sz); [all …]
|