Searched refs:pSlot (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/sqlite3/ |
H A D | shell.c | 13427 struct IdxRemSlot *pSlot; in idxRemFunc() local 13433 pSlot = &p->aSlot[iSlot]; in idxRemFunc() 13435 switch( pSlot->eType ){ in idxRemFunc() 13441 sqlite3_result_int64(pCtx, pSlot->iVal); in idxRemFunc() 13445 sqlite3_result_double(pCtx, pSlot->rVal); in idxRemFunc() 13449 sqlite3_result_blob(pCtx, pSlot->z, pSlot->n, SQLITE_TRANSIENT); in idxRemFunc() 13453 sqlite3_result_text(pCtx, pSlot->z, pSlot->n, SQLITE_TRANSIENT); in idxRemFunc() 13457 pSlot->eType = sqlite3_value_type(argv[1]); in idxRemFunc() 13458 switch( pSlot->eType ){ in idxRemFunc() 13464 pSlot->iVal = sqlite3_value_int64(argv[1]); in idxRemFunc() [all …]
|
H A D | sqlite3.c | 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; 78211 assert( (pSlot+sz)<=pCArray->apCell[i] 78212 || pSlot>=(pCArray->apCell[i]+sz) 78221 memmove(pSlot, pCArray->apCell[i], sz); [all …]
|