Home
last modified time | relevance | path

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

/freebsd/sys/contrib/openzfs/module/zstd/lib/compress/
H A Dfse_compress.c514 U32 nTotal = 0; in FSE_normalizeCount()
518 nTotal += abs(normalizedCounter[s]); in FSE_normalizeCount()
519 if (nTotal != (1U<<tableLog)) in FSE_normalizeCount()
520 RAWLOG(2, "Warning !!! Total == %u != %u !!!", nTotal, 1U<<tableLog); in FSE_normalizeCount()
/freebsd/sys/contrib/zstd/lib/compress/
H A Dfse_compress.c513 U32 nTotal = 0; in FSE_normalizeCount()
517 nTotal += abs(normalizedCounter[s]); in FSE_normalizeCount()
518 if (nTotal != (1U<<tableLog)) in FSE_normalizeCount()
519 RAWLOG(2, "Warning !!! Total == %u != %u !!!", nTotal, 1U<<tableLog); in FSE_normalizeCount()
/freebsd/contrib/llvm-project/openmp/runtime/src/
H A DextractExternal.cpp401 set<int> *findRequiredExternal(int nExternal, int nTotal, set<string> *defined, in findRequiredExternal() argument
408 for (i = nTotal - 1; i >= nExternal; --i) in findRequiredExternal()
/freebsd/contrib/sqlite3/
H A Dshell.c20166 int nTotal = nField + 4; in recoverLostAndFoundInsert() local
20172 for(ii=0; ii<nTotal; ii++){ in recoverLostAndFoundInsert()
20180 for(ii=0; ii<nTotal; ii++){ in recoverLostAndFoundInsert()
23791 i64 nTotal = 0; in display_explain_scanstats() local
23806 sqlite3_stmt_scanstatus_v2(p, -1, SQLITE_SCANSTAT_NCYCLE, f, (void*)&nTotal); in display_explain_scanstats()
23832 if( nCycle>=0 && nTotal>0 ){ in display_explain_scanstats()
23834 nCycle, ((nCycle*100)+nTotal/2) / nTotal in display_explain_scanstats()
23858 eqp_render(pArg, nTotal); in display_explain_scanstats()
24392 int j, nTotal, w, n; in exec_prepared_stmt_columnar() local
24483 nTotal = nColumn*(nRow+1); in exec_prepared_stmt_columnar()
[all …]
H A Dsqlite3.c27952 int nTotal = 0; in sqlite3MemdebugMallocCount() local
27954 nTotal += mem.nAlloc[i]; in sqlite3MemdebugMallocCount()
27956 return nTotal; in sqlite3MemdebugMallocCount()
80794 int nTotal = pX->nData + pX->nZero; /* Total bytes of to write */ local
80801 assert( pCur->info.nLocal<nTotal ); /* pCur is an overflow cell */
80810 assert( nTotal>=0 );
80821 if( iOffset+ovflPageSize<(u32)nTotal ){
80824 ovflPageSize = nTotal - iOffset;
80832 }while( iOffset<nTotal );
80841 int nTotal = pX->nData + pX->nZero; /* Total bytes of to write */ local
[all …]