Home
last modified time | relevance | path

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

/freebsd/contrib/sqlite3/
H A Dsqlite3.c75670 int nOvfl = (pCur->info.nPayload-pCur->info.nLocal+ovflSize-1)/ovflSize;
75672 || nOvfl*(int)sizeof(Pgno) > sqlite3MallocSize(pCur->aOverflow)
75678 aNew = (Pgno*)sqlite3Realloc(pCur->aOverflow, nOvfl*2*sizeof(Pgno));
75686 memset(pCur->aOverflow, 0, nOvfl*sizeof(Pgno));
77431 int nOvfl;
77446 nOvfl = (pInfo->nPayload - pInfo->nLocal + ovflPageSize - 1)/ovflPageSize;
77447 assert( nOvfl>0 ||
77450 while( nOvfl-- ){
77459 if( nOvfl ){
191077 int nOvfl; /* Number of overflow pages to load doclist */
[all …]
H A Dshell.c16144 int nOvfl = 0; in dbdataNext() local
16146 rc = dbdataLoadPage(pCsr, pgnoOvfl, &aOvfl, &nOvfl); in dbdataNext()
16147 assert( rc!=SQLITE_OK || aOvfl==0 || nOvfl==pCsr->nPage ); in dbdataNext()