Home
last modified time | relevance | path

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

/netbsd-src/external/public-domain/sqlite/dist/
H A Dshell.c16653 int nTotal = nField + 4; in recoverLostAndFoundInsert() local
16659 for(ii=0; ii<nTotal; ii++){ in recoverLostAndFoundInsert()
16667 for(ii=0; ii<nTotal; ii++){ in recoverLostAndFoundInsert()
20085 i64 nTotal = 0; in display_explain_scanstats() local
20100 sqlite3_stmt_scanstatus_v2(p, -1, SQLITE_SCANSTAT_NCYCLE, f, (void*)&nTotal); in display_explain_scanstats()
20126 if( nCycle>=0 && nTotal>0 ){ in display_explain_scanstats()
20128 nCycle, ((nCycle*100)+nTotal/2) / nTotal in display_explain_scanstats()
20152 eqp_render(pArg, nTotal); in display_explain_scanstats()
20610 int j, nTotal, w, n; in exec_prepared_stmt_columnar() local
20699 nTotal = nColumn*(nRow+1); in exec_prepared_stmt_columnar()
[all …]
H A Dsqlite3.c27174 int nTotal = 0; in sqlite3MemdebugMallocCount() local
27176 nTotal += mem.nAlloc[i]; in sqlite3MemdebugMallocCount()
27178 return nTotal; in sqlite3MemdebugMallocCount()
79314 int nTotal = pX->nData + pX->nZero; /* Total bytes of to write */
79321 assert( pCur->info.nLocal<nTotal ); /* pCur is an overflow cell */
79330 assert( nTotal>=0 );
79341 if( iOffset+ovflPageSize<(u32)nTotal ){
79344 ovflPageSize = nTotal - iOffset;
79352 }while( iOffset<nTotal );
79361 int nTotal = pX->nData + pX->nZero; /* Total bytes of to write */
[all …]