Searched refs:iOld (Results 1 – 7 of 7) sorted by relevance
| /sqlite-3.40.0/src/ |
| H A D | delete.c | 747 int iOld = 0; /* First register in OLD.* array */ in sqlite3GenerateRowDelete() local 780 iOld = pParse->nMem+1; in sqlite3GenerateRowDelete() 785 sqlite3VdbeAddOp2(v, OP_Copy, iPk, iOld); in sqlite3GenerateRowDelete() 791 sqlite3ExprCodeGetColumnOfTable(v, pTab, iDataCur, iCol, iOld+kk+1); in sqlite3GenerateRowDelete() 798 TK_DELETE, 0, TRIGGER_BEFORE, pTab, iOld, onconf, iLabel in sqlite3GenerateRowDelete() 820 sqlite3FkCheck(pParse, pTab, iOld, 0, 0, 0); in sqlite3GenerateRowDelete() 853 sqlite3FkActions(pParse, pTab, 0, iOld, 0, 0); in sqlite3GenerateRowDelete() 857 TK_DELETE, 0, TRIGGER_AFTER, pTab, iOld, onconf, iLabel in sqlite3GenerateRowDelete()
|
| H A D | pcache1.c | 1116 unsigned int iOld, in pcache1Rekey() argument 1123 assert( pPage->iKey==iOld ); in pcache1Rekey() 1125 assert( iOld!=iNew ); /* The page number really is changing */ in pcache1Rekey() 1129 assert( pcache1FetchNoMutex(p, iOld, 0)==pPage ); /* pPg really is iOld */ in pcache1Rekey() 1130 hOld = iOld%pCache->nHash; in pcache1Rekey()
|
| H A D | btree.c | 7517 if( iOld<iNew ){ in editPage() 7518 int nShift = pageFreeArray(pPg, iOld, iNew-iOld, pCArray); in editPage() 7534 if( iNew<iOld ){ in editPage() 8397 int iOld = 0; in balance_nonroot() local 8402 iOld++; in balance_nonroot() 8403 assert( iOld<nNew || iOld<nOld ); in balance_nonroot() 8404 assert( iOld>=0 && iOld<NB ); in balance_nonroot() 8405 pOld = iOld<nNew ? apNew[iOld] : apOld[iOld]; in balance_nonroot() 8419 if( iOld>=nNew in balance_nonroot() 8524 int iOld; in balance_nonroot() local [all …]
|
| H A D | os_unix.c | 4024 int iOld = pFile->iBusyTimeout; in unixFileControl() local 4026 *(int*)pArg = iOld; in unixFileControl()
|
| /sqlite-3.40.0/test/ |
| H A D | fuzz3.test | 93 binary scan $old_blob c iOld 94 return [expr {($offset<<8) + ($iOld&0xFF)}] 137 set iOld [modify_database $iNew] 168 modify_database $iOld
|
| /sqlite-3.40.0/ext/fts5/ |
| H A D | fts5_main.c | 1709 i64 iOld = sqlite3_value_int64(apVal[0]); /* Old rowid */ in fts5UpdateMethod() local 1711 if( eType1==SQLITE_INTEGER && iOld!=iNew ){ in fts5UpdateMethod() 1713 rc = sqlite3Fts5StorageDelete(pTab->pStorage, iOld, 0); in fts5UpdateMethod() 1721 rc = sqlite3Fts5StorageDelete(pTab->pStorage, iOld, 0); in fts5UpdateMethod() 1728 rc = sqlite3Fts5StorageDelete(pTab->pStorage, iOld, 0); in fts5UpdateMethod()
|
| H A D | fts5_expr.c | 2010 int iOld = 0; in sqlite3Fts5ParseColsetInvert() local 2012 if( iOld>=p->nCol || p->aiCol[iOld]!=i ){ in sqlite3Fts5ParseColsetInvert() 2015 iOld++; in sqlite3Fts5ParseColsetInvert()
|