Home
last modified time | relevance | path

Searched refs:nIncr (Results 1 – 5 of 5) sorted by relevance

/sqlite-3.40.0/ext/fts3/unicode/
H A Dmkunicode.tcl341 set nIncr 0
350 set nIncr 1
354 set nIncr $diff
357 if {$diff != $nIncr || ($mapping - $code)!=$nOff} {
358 if { $nRange==1 } {set nIncr 1}
359 lappend lRecord [list $iFirst $nIncr $nRange $nOff]
363 set nIncr 1
370 lappend lRecord [list $iFirst $nIncr $nRange $nOff]
405 foreach {iFirst nIncr nRange nOff} $entry {}
438 foreach {iFirst nIncr nRange nOff} $entry {}
[all …]
/sqlite-3.40.0/src/
H A Dfkey.c328 int nIncr, /* Increment constraint counter by this */ in fkLookupParent() argument
349 if( nIncr<0 ){ in fkLookupParent()
379 if( pTab==pFKey->pFrom && nIncr==1 ){ in fkLookupParent()
412 if( pTab==pFKey->pFrom && nIncr==1 ){ in fkLookupParent()
448 assert( nIncr==1 ); in fkLookupParent()
452 if( nIncr>0 && pFKey->isDeferred==0 ){ in fkLookupParent()
455 sqlite3VdbeAddOp2(v, OP_FkCounter, pFKey->isDeferred, nIncr); in fkLookupParent()
555 int nIncr /* Amount to increment deferred counter by */ in fkScanChildren() argument
570 if( nIncr<0 ){ in fkScanChildren()
614 if( pTab==pFKey->pFrom && nIncr>0 ){ in fkScanChildren()
[all …]
/sqlite-3.40.0/ext/fts5/
H A Dfts5_hash.c252 int nIncr = 0; /* Amount to increment (*pHash->pnByte) by */ in sqlite3Fts5HashWrite() local
332 nIncr -= p->nData; in sqlite3Fts5HashWrite()
383 nIncr += p->nData; in sqlite3Fts5HashWrite()
384 *pHash->pnByte += nIncr; in sqlite3Fts5HashWrite()
H A Dfts5_index.c6042 int nIncr; in fts5IntegrityCheckPgidx() local
6044 ii += fts5GetVarint32(&pLeaf->p[ii], nIncr); in fts5IntegrityCheckPgidx()
6045 iTermOff += nIncr; in fts5IntegrityCheckPgidx()
6050 }else if( iTermOff==nIncr ){ in fts5IntegrityCheckPgidx()
6626 int nIncr; in fts5DecodeFunction() local
6627 iPgidxOff += fts5GetVarint32(&a[iPgidxOff], nIncr); in fts5DecodeFunction()
6628 iTermOff += nIncr; in fts5DecodeFunction()
/sqlite-3.40.0/ext/session/
H A Dsqlite3session.c1285 int nIncr = nNew - pC->nMaxSize; in sessionUpdateMaxSize() local
1287 pSession->nMaxChangesetSize += nIncr; in sessionUpdateMaxSize()