Home
last modified time | relevance | path

Searched refs:tot_count (Results 1 – 25 of 61) sorted by relevance

123

/dports/www/squid/squid-4.15/src/
H A DCacheDigest.cc226 const int tot_count = true_count + false_count; in cacheDigestGuessStatsReport() local
229 assert(tot_count == hit_count + miss_count); /* paranoid */ in cacheDigestGuessStatsReport()
231 if (!tot_count) { in cacheDigestGuessStatsReport()
240 stats->trueHits, xpercent(stats->trueHits, tot_count), in cacheDigestGuessStatsReport()
241 stats->trueMisses, xpercent(stats->trueMisses, tot_count), in cacheDigestGuessStatsReport()
242 true_count, xpercent(true_count, tot_count)); in cacheDigestGuessStatsReport()
244 stats->falseHits, xpercent(stats->falseHits, tot_count), in cacheDigestGuessStatsReport()
246 false_count, xpercent(false_count, tot_count)); in cacheDigestGuessStatsReport()
248 hit_count, xpercent(hit_count, tot_count), in cacheDigestGuessStatsReport()
249 miss_count, xpercent(miss_count, tot_count), in cacheDigestGuessStatsReport()
[all …]
/dports/science/gromacs/gromacs-2021.4/src/external/thread_mpi/src/
H A Dprofile.cpp215 long unsigned int tot_count = 0; in tMPI_Profiles_summarize() local
223 tot_count += count; in tMPI_Profiles_summarize()
227 printf(" %10.5f\n", (double)tot_buf/(double)tot_count); in tMPI_Profiles_summarize()
230 tot_count = 0; in tMPI_Profiles_summarize()
238 tot_count += count; in tMPI_Profiles_summarize()
242 printf(" %10.5f\n", (double)tot_buf/(double)tot_count); in tMPI_Profiles_summarize()
/dports/math/py-gym/gym-0.21.0/gym/wrappers/
H A Dnormalize.py29 tot_count = count + batch_count
31 new_mean = mean + delta * batch_count / tot_count
34 M2 = m_a + m_b + np.square(delta) * count * batch_count / tot_count
35 new_var = M2 / tot_count
36 new_count = tot_count
/dports/emulators/jzintv/jzintv-20200712-src/examples/spacepat/c/
H A Dwasm3.c680 int tot_count = 0; in generate_level() local
806 i, tot_count, level[i].object); in generate_level()
812 i, tot_count, level[i].cuelbl); in generate_level()
821 i, tot_count, level[i].object - 256); in generate_level()
827 i, tot_count, level[i].cuelbl); in generate_level()
835 i, tot_count, cmd_name[level[i].object]); in generate_level()
845 i, tot_count, level[i].object - 10); in generate_level()
852 i, tot_count, in generate_level()
863 tot_count += level[i].count; in generate_level()
867 "; %4d END\n", tot_count); in generate_level()
/dports/mail/cone/cone-1.1/libmail/
H A Dnntppost.C42 tot_count=stat_buf.st_size; in loggedIn()
110 if (me->tot_count < me->byte_count) in fillWriteBuffer()
111 me->tot_count=me->byte_count; in fillWriteBuffer()
113 me->callbackPtr->reportProgress(me->byte_count, me->tot_count, 0, 1); in fillWriteBuffer()
/dports/multimedia/gpac-mp4box/gpac-1.0.0/src/laser/
H A Dlsr_enc.c1286 tot_count = 0; in lsr_write_rare()
1296 tot_count++; in lsr_write_rare()
1300 tot_count++; in lsr_write_rare()
1304 tot_count++; in lsr_write_rare()
1308 tot_count++; in lsr_write_rare()
1312 tot_count++; in lsr_write_rare()
1316 tot_count++; in lsr_write_rare()
1320 tot_count++; in lsr_write_rare()
1324 tot_count++; in lsr_write_rare()
1328 tot_count++; in lsr_write_rare()
[all …]
/dports/multimedia/gpac-libgpac/gpac-1.0.0/src/laser/
H A Dlsr_enc.c1286 tot_count = 0; in lsr_write_rare()
1296 tot_count++; in lsr_write_rare()
1300 tot_count++; in lsr_write_rare()
1304 tot_count++; in lsr_write_rare()
1308 tot_count++; in lsr_write_rare()
1312 tot_count++; in lsr_write_rare()
1316 tot_count++; in lsr_write_rare()
1320 tot_count++; in lsr_write_rare()
1324 tot_count++; in lsr_write_rare()
1328 tot_count++; in lsr_write_rare()
[all …]
/dports/biology/py-multiqc/multiqc-1.10/multiqc/modules/picard/
H A DInsertSizeMetrics.py36 tot_count = sum([int(x) for x in sections[1:]])
37 self.picard_insertSize_histogram[s_name][ins] = tot_count
38 self.picard_insertSize_samplestats[s_name]["total_count"] += tot_count
/dports/biology/py-multiqc/multiqc-1.10/multiqc/modules/sentieon/
H A DInsertSizeMetrics.py36 tot_count = sum([int(x) for x in sections[1:]])
37 self.sentieon_insertSize_histogram[s_name][ins] = tot_count
38 self.sentieon_insertSize_samplestats[s_name]["total_count"] += tot_count
/dports/games/ioquake3/ioquake3-1.36/code/libspeex/
H A Djitter.c182 int tot_count; in compute_opt_delay() local
193 tot_count = 0; in compute_opt_delay()
195 tot_count += tb[i].curr_count; in compute_opt_delay()
196 if (tot_count==0) in compute_opt_delay()
201 late_factor = jitter->latency_tradeoff * 100.0f / tot_count; in compute_opt_delay()
203 late_factor = jitter->auto_tradeoff * jitter->window_size/tot_count; in compute_opt_delay()
265 if (tot_count < TOP_DELAY && opt > 0) in compute_opt_delay()
/dports/games/ioquake3-server/ioquake3-1.36/code/libspeex/
H A Djitter.c182 int tot_count; in compute_opt_delay() local
193 tot_count = 0; in compute_opt_delay()
195 tot_count += tb[i].curr_count; in compute_opt_delay()
196 if (tot_count==0) in compute_opt_delay()
201 late_factor = jitter->latency_tradeoff * 100.0f / tot_count; in compute_opt_delay()
203 late_factor = jitter->auto_tradeoff * jitter->window_size/tot_count; in compute_opt_delay()
265 if (tot_count < TOP_DELAY && opt > 0) in compute_opt_delay()
/dports/devel/godot2-tools/godot-2.1.6-stable/thirdparty/speex/
H A Djitter.c182 int tot_count; in compute_opt_delay() local
193 tot_count = 0; in compute_opt_delay()
195 tot_count += tb[i].curr_count; in compute_opt_delay()
196 if (tot_count==0) in compute_opt_delay()
201 late_factor = jitter->latency_tradeoff * 100.0f / tot_count; in compute_opt_delay()
203 late_factor = jitter->auto_tradeoff * jitter->window_size/tot_count; in compute_opt_delay()
265 if (tot_count < TOP_DELAY && opt > 0) in compute_opt_delay()
/dports/games/evq3/evq3/code/libspeex/
H A Djitter.c182 int tot_count; in compute_opt_delay() local
193 tot_count = 0; in compute_opt_delay()
195 tot_count += tb[i].curr_count; in compute_opt_delay()
196 if (tot_count==0) in compute_opt_delay()
201 late_factor = jitter->latency_tradeoff * 100.0f / tot_count; in compute_opt_delay()
203 late_factor = jitter->auto_tradeoff * jitter->window_size/tot_count; in compute_opt_delay()
265 if (tot_count < TOP_DELAY && opt > 0) in compute_opt_delay()
/dports/net/pjsip/pjproject-2.11.1/third_party/speex/libspeex/
H A Djitter.c180 int tot_count; in compute_opt_delay() local
191 tot_count = 0; in compute_opt_delay()
193 tot_count += tb[i].curr_count; in compute_opt_delay()
194 if (tot_count==0) in compute_opt_delay()
199 late_factor = jitter->latency_tradeoff * 100.0f / tot_count; in compute_opt_delay()
201 late_factor = jitter->auto_tradeoff * jitter->window_size/tot_count; in compute_opt_delay()
263 if (tot_count < TOP_DELAY && opt > 0) in compute_opt_delay()
/dports/games/openarena/openarena-engine-source-0.8.8/code/libspeex/
H A Djitter.c182 int tot_count; in compute_opt_delay() local
193 tot_count = 0; in compute_opt_delay()
195 tot_count += tb[i].curr_count; in compute_opt_delay()
196 if (tot_count==0) in compute_opt_delay()
201 late_factor = jitter->latency_tradeoff * 100.0f / tot_count; in compute_opt_delay()
203 late_factor = jitter->auto_tradeoff * jitter->window_size/tot_count; in compute_opt_delay()
265 if (tot_count < TOP_DELAY && opt > 0) in compute_opt_delay()
/dports/games/openarena-server/openarena-engine-source-0.8.8/code/libspeex/
H A Djitter.c182 int tot_count; in compute_opt_delay() local
193 tot_count = 0; in compute_opt_delay()
195 tot_count += tb[i].curr_count; in compute_opt_delay()
196 if (tot_count==0) in compute_opt_delay()
201 late_factor = jitter->latency_tradeoff * 100.0f / tot_count; in compute_opt_delay()
203 late_factor = jitter->auto_tradeoff * jitter->window_size/tot_count; in compute_opt_delay()
265 if (tot_count < TOP_DELAY && opt > 0) in compute_opt_delay()
/dports/devel/godot2/godot-2.1.6-stable/thirdparty/speex/
H A Djitter.c182 int tot_count; in compute_opt_delay() local
193 tot_count = 0; in compute_opt_delay()
195 tot_count += tb[i].curr_count; in compute_opt_delay()
196 if (tot_count==0) in compute_opt_delay()
201 late_factor = jitter->latency_tradeoff * 100.0f / tot_count; in compute_opt_delay()
203 late_factor = jitter->auto_tradeoff * jitter->window_size/tot_count; in compute_opt_delay()
265 if (tot_count < TOP_DELAY && opt > 0) in compute_opt_delay()
/dports/audio/speexdsp/speexdsp-1.2.0/libspeexdsp/
H A Djitter.c180 int tot_count; in compute_opt_delay() local
191 tot_count = 0; in compute_opt_delay()
193 tot_count += tb[i].curr_count; in compute_opt_delay()
194 if (tot_count==0) in compute_opt_delay()
199 late_factor = jitter->latency_tradeoff * 100.0f / tot_count; in compute_opt_delay()
201 late_factor = jitter->auto_tradeoff * jitter->window_size/tot_count; in compute_opt_delay()
263 if (tot_count < TOP_DELAY && opt > 0) in compute_opt_delay()
/dports/www/firefox-esr/firefox-91.8.0/media/libvpx/libvpx/vp8/encoder/
H A Dencodeframe.c892 int tot_count; in vp8_encode_frame() local
898 tot_count = segment_counts[0] + segment_counts[1] + segment_counts[2] + in vp8_encode_frame()
901 if (tot_count) { in vp8_encode_frame()
903 ((segment_counts[0] + segment_counts[1]) * 255) / tot_count; in vp8_encode_frame()
905 tot_count = segment_counts[0] + segment_counts[1]; in vp8_encode_frame()
907 if (tot_count > 0) { in vp8_encode_frame()
908 xd->mb_segment_tree_probs[1] = (segment_counts[0] * 255) / tot_count; in vp8_encode_frame()
911 tot_count = segment_counts[2] + segment_counts[3]; in vp8_encode_frame()
913 if (tot_count > 0) { in vp8_encode_frame()
914 xd->mb_segment_tree_probs[2] = (segment_counts[2] * 255) / tot_count; in vp8_encode_frame()
/dports/net/freeswitch/freeswitch-1.10.3.-release/libs/libvpx/vp8/encoder/
H A Dencodeframe.c892 int tot_count; in vp8_encode_frame() local
898 tot_count = segment_counts[0] + segment_counts[1] + segment_counts[2] + in vp8_encode_frame()
901 if (tot_count) { in vp8_encode_frame()
903 ((segment_counts[0] + segment_counts[1]) * 255) / tot_count; in vp8_encode_frame()
905 tot_count = segment_counts[0] + segment_counts[1]; in vp8_encode_frame()
907 if (tot_count > 0) { in vp8_encode_frame()
908 xd->mb_segment_tree_probs[1] = (segment_counts[0] * 255) / tot_count; in vp8_encode_frame()
911 tot_count = segment_counts[2] + segment_counts[3]; in vp8_encode_frame()
913 if (tot_count > 0) { in vp8_encode_frame()
914 xd->mb_segment_tree_probs[2] = (segment_counts[2] * 255) / tot_count; in vp8_encode_frame()
/dports/net-im/tg_owt/tg_owt-d578c76/src/third_party/libvpx/source/libvpx/vp8/encoder/
H A Dencodeframe.c892 int tot_count; in vp8_encode_frame() local
898 tot_count = segment_counts[0] + segment_counts[1] + segment_counts[2] + in vp8_encode_frame()
901 if (tot_count) { in vp8_encode_frame()
903 ((segment_counts[0] + segment_counts[1]) * 255) / tot_count; in vp8_encode_frame()
905 tot_count = segment_counts[0] + segment_counts[1]; in vp8_encode_frame()
907 if (tot_count > 0) { in vp8_encode_frame()
908 xd->mb_segment_tree_probs[1] = (segment_counts[0] * 255) / tot_count; in vp8_encode_frame()
911 tot_count = segment_counts[2] + segment_counts[3]; in vp8_encode_frame()
913 if (tot_count > 0) { in vp8_encode_frame()
914 xd->mb_segment_tree_probs[2] = (segment_counts[2] * 255) / tot_count; in vp8_encode_frame()
/dports/multimedia/libvpx/libvpx-1.11.0/vp8/encoder/
H A Dencodeframe.c895 int tot_count; in vp8_encode_frame() local
901 tot_count = segment_counts[0] + segment_counts[1] + segment_counts[2] + in vp8_encode_frame()
904 if (tot_count) { in vp8_encode_frame()
906 ((segment_counts[0] + segment_counts[1]) * 255) / tot_count; in vp8_encode_frame()
908 tot_count = segment_counts[0] + segment_counts[1]; in vp8_encode_frame()
910 if (tot_count > 0) { in vp8_encode_frame()
911 xd->mb_segment_tree_probs[1] = (segment_counts[0] * 255) / tot_count; in vp8_encode_frame()
914 tot_count = segment_counts[2] + segment_counts[3]; in vp8_encode_frame()
916 if (tot_count > 0) { in vp8_encode_frame()
917 xd->mb_segment_tree_probs[2] = (segment_counts[2] * 255) / tot_count; in vp8_encode_frame()
/dports/www/qt5-webengine/qtwebengine-everywhere-src-5.15.2/src/3rdparty/chromium/third_party/libvpx/source/libvpx/vp8/encoder/
H A Dencodeframe.c892 int tot_count; in vp8_encode_frame() local
898 tot_count = segment_counts[0] + segment_counts[1] + segment_counts[2] + in vp8_encode_frame()
901 if (tot_count) { in vp8_encode_frame()
903 ((segment_counts[0] + segment_counts[1]) * 255) / tot_count; in vp8_encode_frame()
905 tot_count = segment_counts[0] + segment_counts[1]; in vp8_encode_frame()
907 if (tot_count > 0) { in vp8_encode_frame()
908 xd->mb_segment_tree_probs[1] = (segment_counts[0] * 255) / tot_count; in vp8_encode_frame()
911 tot_count = segment_counts[2] + segment_counts[3]; in vp8_encode_frame()
913 if (tot_count > 0) { in vp8_encode_frame()
914 xd->mb_segment_tree_probs[2] = (segment_counts[2] * 255) / tot_count; in vp8_encode_frame()
/dports/www/firefox/firefox-99.0/media/libvpx/libvpx/vp8/encoder/
H A Dencodeframe.c892 int tot_count; in vp8_encode_frame() local
898 tot_count = segment_counts[0] + segment_counts[1] + segment_counts[2] + in vp8_encode_frame()
901 if (tot_count) { in vp8_encode_frame()
903 ((segment_counts[0] + segment_counts[1]) * 255) / tot_count; in vp8_encode_frame()
905 tot_count = segment_counts[0] + segment_counts[1]; in vp8_encode_frame()
907 if (tot_count > 0) { in vp8_encode_frame()
908 xd->mb_segment_tree_probs[1] = (segment_counts[0] * 255) / tot_count; in vp8_encode_frame()
911 tot_count = segment_counts[2] + segment_counts[3]; in vp8_encode_frame()
913 if (tot_count > 0) { in vp8_encode_frame()
914 xd->mb_segment_tree_probs[2] = (segment_counts[2] * 255) / tot_count; in vp8_encode_frame()
/dports/lang/spidermonkey60/firefox-60.9.0/media/libvpx/libvpx/vp8/encoder/
H A Dencodeframe.c895 int tot_count; in vp8_encode_frame() local
901 tot_count = segment_counts[0] + segment_counts[1] + segment_counts[2] + in vp8_encode_frame()
904 if (tot_count) { in vp8_encode_frame()
906 ((segment_counts[0] + segment_counts[1]) * 255) / tot_count; in vp8_encode_frame()
908 tot_count = segment_counts[0] + segment_counts[1]; in vp8_encode_frame()
910 if (tot_count > 0) { in vp8_encode_frame()
911 xd->mb_segment_tree_probs[1] = (segment_counts[0] * 255) / tot_count; in vp8_encode_frame()
914 tot_count = segment_counts[2] + segment_counts[3]; in vp8_encode_frame()
916 if (tot_count > 0) { in vp8_encode_frame()
917 xd->mb_segment_tree_probs[2] = (segment_counts[2] * 255) / tot_count; in vp8_encode_frame()

123