Home
last modified time | relevance | path

Searched refs:iBefore (Results 1 – 2 of 2) sorted by relevance

/sqlite-3.40.0/ext/misc/
H A Dregexp.c391 static int re_insert(ReCompiled *p, int iBefore, int op, int arg){ in re_insert() argument
394 for(i=p->nState; i>iBefore; i--){ in re_insert()
399 p->aOp[iBefore] = (char)op; in re_insert()
400 p->aArg[iBefore] = arg; in re_insert()
401 return iBefore; in re_insert()
/sqlite-3.40.0/ext/lsm1/
H A Dlsm_shared.c774 int lsmBlockAllocate(lsm_db *pDb, int iBefore, int *piBlk){ in lsmBlockAllocate() argument
834 rc = findFreeblock(pDb, iInUse, (iBefore>0), &iRet); in lsmBlockAllocate()
838 if( iBefore>0 && (iRet<=0 || iRet>=iBefore) ){ in lsmBlockAllocate()
862 assert( iBefore>0 || iRet>0 || rc!=LSM_OK ); in lsmBlockAllocate()