Searched refs:nTotal (Results 1 – 5 of 5) sorted by relevance
/freebsd/sys/contrib/openzfs/module/zstd/lib/compress/ |
H A D | fse_compress.c | 482 U32 nTotal = 0; in FSE_normalizeCount() 486 nTotal += abs(normalizedCounter[s]); in FSE_normalizeCount() 487 if (nTotal != (1U<<tableLog)) in FSE_normalizeCount() 488 RAWLOG(2, "Warning !!! Total == %u != %u !!!", nTotal, 1U<<tableLog); in FSE_normalizeCount()
|
/freebsd/sys/contrib/zstd/lib/compress/ |
H A D | fse_compress.c | 521 U32 nTotal = 0; in FSE_normalizeCount() 525 nTotal += abs(normalizedCounter[s]); in FSE_normalizeCount() 526 if (nTotal != (1U<<tableLog)) in FSE_normalizeCount() 527 RAWLOG(2, "Warning !!! Total == %u != %u !!!", nTotal, 1U<<tableLog); in FSE_normalizeCount()
|
/freebsd/contrib/llvm-project/openmp/runtime/src/ |
H A D | extractExternal.cpp | 401 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 D | shell.c | 17916 int nTotal = nField + 4; in recoverLostAndFoundInsert() local 17922 for(ii=0; ii<nTotal; ii++){ in recoverLostAndFoundInsert() 17930 for(ii=0; ii<nTotal; ii++){ in recoverLostAndFoundInsert() 21348 i64 nTotal = 0; in display_explain_scanstats() local 21363 sqlite3_stmt_scanstatus_v2(p, -1, SQLITE_SCANSTAT_NCYCLE, f, (void*)&nTotal); in display_explain_scanstats() 21389 if( nCycle>=0 && nTotal>0 ){ in display_explain_scanstats() 21391 nCycle, ((nCycle*100)+nTotal/2) / nTotal in display_explain_scanstats() 21415 eqp_render(pArg, nTotal); in display_explain_scanstats() 21873 int j, nTotal, w, n; in exec_prepared_stmt_columnar() local 21963 nTotal = nColumn*(nRow+1); in exec_prepared_stmt_columnar() [all …]
|
H A D | sqlite3.c | 27453 int nTotal = 0; in sqlite3MemdebugMallocCount() local 27455 nTotal += mem.nAlloc[i]; in sqlite3MemdebugMallocCount() 27457 return nTotal; in sqlite3MemdebugMallocCount() 79741 int nTotal = pX->nData + pX->nZero; /* Total bytes of to write */ 79748 assert( pCur->info.nLocal<nTotal ); /* pCur is an overflow cell */ 79757 assert( nTotal>=0 ); 79768 if( iOffset+ovflPageSize<(u32)nTotal ){ 79771 ovflPageSize = nTotal - iOffset; 79779 }while( iOffset<nTotal ); 79788 int nTotal = pX->nData + pX->nZero; /* Total bytes of to write */ [all …]
|