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

  /external/webrtc/webrtc/modules/rtp_rtcp/source/
vp8_partition_aggregator.h 60 size_t this_size() const { return this_size_; }
69 int this_size_int() const { return static_cast<int>(this_size_); }
74 size_t this_size_; member in class:webrtc::PartitionTreeNode
vp8_partition_aggregator.cc 26 this_size_(this_size),
32 // If |this_size_| > INT_MAX, Cost() and CreateChildren() won't work properly.
33 assert(this_size_ <= static_cast<size_t>(std::numeric_limits<int>::max()));
67 if (this_size_ + size_vector_[0] <= max_size) {
71 this_size_ + size_vector_[0]);
78 if (this_size_ > 0) {

Completed in 201 milliseconds