Searched refs:tot_count (Results 1 - 3 of 3) sorted by relevance

/external/ltrace/
H A Dsummary.c43 unsigned tot_count; member in struct:fill_struct_data
81 data->tot_count += st->count;
143 cdata.tot_usecs % 1000000, cdata.tot_count);
/external/libvpx/libvpx/vp8/encoder/
H A Dencodeframe.c966 int tot_count; local
972 tot_count = segment_counts[0] + segment_counts[1] + segment_counts[2] + segment_counts[3];
974 if (tot_count)
976 xd->mb_segment_tree_probs[0] = ((segment_counts[0] + segment_counts[1]) * 255) / tot_count;
978 tot_count = segment_counts[0] + segment_counts[1];
980 if (tot_count > 0)
982 xd->mb_segment_tree_probs[1] = (segment_counts[0] * 255) / tot_count;
985 tot_count = segment_counts[2] + segment_counts[3];
987 if (tot_count > 0)
988 xd->mb_segment_tree_probs[2] = (segment_counts[2] * 255) / tot_count;
[all...]
/external/speex/libspeex/
H A Djitter.c182 int tot_count; local
193 tot_count = 0;
195 tot_count += tb[i].curr_count;
196 if (tot_count==0)
201 late_factor = jitter->latency_tradeoff * 100.0f / tot_count;
203 late_factor = jitter->auto_tradeoff * jitter->window_size/tot_count;
265 if (tot_count < TOP_DELAY && opt > 0)

Completed in 134 milliseconds