Searched refs:pSlot (Results 1 – 2 of 2) sorted by relevance
| /netbsd-src/external/public-domain/sqlite/dist/ |
| H A D | shell.c | 13348 struct IdxRemSlot *pSlot; in idxRemFunc() local 13354 pSlot = &p->aSlot[iSlot]; in idxRemFunc() 13356 switch( pSlot->eType ){ in idxRemFunc() 13362 sqlite3_result_int64(pCtx, pSlot->iVal); in idxRemFunc() 13366 sqlite3_result_double(pCtx, pSlot->rVal); in idxRemFunc() 13370 sqlite3_result_blob(pCtx, pSlot->z, pSlot->n, SQLITE_TRANSIENT); in idxRemFunc() 13374 sqlite3_result_text(pCtx, pSlot->z, pSlot->n, SQLITE_TRANSIENT); in idxRemFunc() 13378 pSlot->eType = sqlite3_value_type(argv[1]); in idxRemFunc() 13379 switch( pSlot->eType ){ in idxRemFunc() 13385 pSlot->iVal = sqlite3_value_int64(argv[1]); in idxRemFunc() [all …]
|
| H A D | sqlite3.c | 55182 PgFreeslot *pSlot; 55185 pSlot = (PgFreeslot*)p; 55186 pSlot->pNext = pcache1.pFree; 55187 pcache1.pFree = pSlot; 77773 u8 *pSlot; 77776 if( (aData[1]==0 && aData[2]==0) || (pSlot = pageFindSlot(pPg,sz,&rc))==0 ){ 77779 pSlot = pData; 77784 assert( (pSlot+sz)<=pCArray->apCell[i] 77785 || pSlot>=(pCArray->apCell[i]+sz) 77794 memmove(pSlot, pCArray->apCell[i], sz); [all …]
|