HomeSort by relevance Sort by last modified time
    Searched refs:total_count_ (Results 1 - 11 of 11) sorted by null

  /external/brotli/c/enc/
histogram_inc.h 14 size_t total_count_; local
20 self->total_count_ = 0;
32 ++self->total_count_;
37 self->total_count_ += n;
45 self->total_count_ += v->total_count_;
bit_cost_inc.h 22 if (histogram->total_count_ == 0) {
36 return (kTwoSymbolHistogramCost + (double)histogram->total_count_);
75 const double log2total = FastLog2(histogram->total_count_);
entropy_encode.c 48 if (v0->total_count_ != v1->total_count_) {
49 return TO_BROTLI_BOOL(v0->total_count_ < v1->total_count_);
115 if (tree[i].total_count_ <= tree[j].total_count_) {
122 if (tree[i].total_count_ <= tree[j].total_count_) {
133 tree[j_end].total_count_ =
134 tree[left].total_count_ + tree[right].total_count_
    [all...]
entropy_encode.h 21 uint32_t total_count_; member in struct:HuffmanTree
28 self->total_count_ = count;
brotli_bit_stream.c 414 return TO_BROTLI_BOOL(v0->total_count_ < v1->total_count_);
488 if (tree[i].total_count_ <= tree[j].total_count_) {
495 if (tree[i].total_count_ <= tree[j].total_count_) {
503 node[-1].total_count_ =
504 tree[left].total_count_ + tree[right].total_count_;
    [all...]
cluster_inc.h 36 if (out[idx1].total_count_ == 0) {
39 } else if (out[idx2].total_count_ == 0) {
159 if (histogram->total_count_ == 0) {
block_splitter_inc.h 88 insert_cost[i] = FastLog2((uint32_t)histograms[i].total_count_);
  /external/webp/src/utils/
huffman_encode_utils.h 38 uint32_t total_count_; // Symbol frequency. member in struct:__anon43782
huffman_encode_utils.c 125 if (t1->total_count_ > t2->total_count_) {
127 } else if (t1->total_count_ < t2->total_count_) {
201 tree[idx].total_count_ = count;
218 count = tree_pool[tree_pool_size - 1].total_count_ +
219 tree_pool[tree_pool_size - 2].total_count_;
225 if (tree[k].total_count_ <= count) {
230 tree[k].total_count_ = count;
  /external/compiler-rt/lib/asan/
asan_memory_profile.cc 37 total_count_++;
57 "showing top %zd%%\n", total_allocated_, total_count_, top_percent);
71 uptr total_count_ = 0; member in class:__asan::HeapProfile
  /external/libmojo/mojo/public/cpp/bindings/tests/
associated_interface_unittest.cc 327 : total_count_(total_count),
338 CHECK_LT(current_count_, total_count_);
340 finshed = current_count_ == total_count_;
349 const size_t total_count_; member in class:mojo::test::__anon25190::NotificationCounter

Completed in 236 milliseconds