/external/webrtc/webrtc/modules/desktop_capture/ |
D | desktop_region.cc | 49 rows_ = other.rows_; in operator =() 50 for (Rows::iterator it = rows_.begin(); it != rows_.end(); ++it) { in operator =() 60 Rows::const_iterator it1 = rows_.begin(); in Equals() 61 Rows::const_iterator it2 = region.rows_.begin(); in Equals() 62 while (it1 != rows_.end()) { in Equals() 63 if (it2 == region.rows_.end() || in Equals() 73 return it2 == region.rows_.end(); in Equals() 77 for (Rows::iterator row = rows_.begin(); row != rows_.end(); ++row) { in Clear() 80 rows_.clear(); in Clear() 98 Rows::iterator row = rows_.upper_bound(top); in AddRect() [all …]
|
D | desktop_region.h | 99 bool is_empty() const { return rows_.empty(); } in is_empty() 161 Rows rows_; variable
|
/external/libvpx/libvpx/test/ |
D | pp_filter_test.cc | 224 : rows_(16), cols_(16), mb_post_proc_across_ip_(GetParam()), in VpxMbPostProcAcrossIpTest() 225 src_(Buffer<uint8_t>(rows_, cols_, 8, 8, 17, 8)) {} in VpxMbPostProcAcrossIpTest() 258 const int rows_; member in __anon53922e890111::VpxMbPostProcAcrossIpTest 265 mb_post_proc_across_ip_(src_.TopLeftPixel(), src_.stride(), rows_, cols_, in Run() 272 SetCols(src_.TopLeftPixel(), rows_, cols_, src_.stride()); in TEST_P() 274 Buffer<uint8_t> expected_output = Buffer<uint8_t>(cols_, rows_, 0); in TEST_P() 276 SetCols(expected_output.TopLeftPixel(), rows_, cols_, in TEST_P() 279 RunFilterLevel(src_.TopLeftPixel(), rows_, cols_, src_.stride(), q2mbl(0), in TEST_P() 286 SetCols(src_.TopLeftPixel(), rows_, cols_, src_.stride()); in TEST_P() 292 RunFilterLevel(src_.TopLeftPixel(), rows_, cols_, src_.stride(), q2mbl(70), in TEST_P() [all …]
|
/external/webrtc/webrtc/system_wrappers/include/ |
D | aligned_array.h | 24 : rows_(rows), in AlignedArray() 27 head_row_ = static_cast<T**>(AlignedMalloc(rows_ * sizeof(*head_row_), in AlignedArray() 29 for (size_t i = 0; i < rows_; ++i) { in AlignedArray() 36 for (size_t i = 0; i < rows_; ++i) { in ~AlignedArray() 51 RTC_CHECK_LE(row, rows_); in Row() 56 RTC_CHECK_LE(row, rows_); in Row() 71 return rows_; in rows() 79 size_t rows_;
|
/external/perfetto/src/trace_processor/ |
D | filtered_row_index.cc | 41 rows_.insert(rows_.end(), begin, end); in IntersectRows() 45 std::set_intersection(rows_.begin(), rows_.end(), rows.begin(), rows.end(), in IntersectRows() 47 rows_ = std::move(intersected); in IntersectRows() 79 rows_.resize(end_row_ - start_row_); in ToRowVector() 80 std::iota(rows_.begin(), rows_.end(), start_row_); in ToRowVector() 102 rows_.emplace_back(filter_idx + start_row_); in ConvertBitVectorToRowVector() 133 auto vector = std::move(rows_); in TakeRowVector() 134 rows_.clear(); in TakeRowVector()
|
D | filtered_row_index.h | 125 size_t rows_size = rows_.size(); in FilterRowVector() 127 if (fn(rows_[i])) { in FilterRowVector() 130 std::swap(rows_[i], rows_[rows_size - 1]); in FilterRowVector() 134 rows_.resize(rows_size); in FilterRowVector() 152 std::vector<uint32_t> rows_; variable
|
/external/ImageMagick/Magick++/lib/ |
D | Pixels.cpp | 38 const size_t columns_,const size_t rows_) in get() argument 43 _rows=rows_; in get() 46 Quantum* pixels=GetCacheViewAuthenticPixels(_view,x_,y_,columns_,rows_, in get() 54 const ssize_t y_,const size_t columns_,const size_t rows_) in getConst() argument 59 _rows=rows_; in getConst() 62 const Quantum* pixels=GetCacheViewVirtualPixels(_view,x_,y_,columns_,rows_, in getConst() 77 const size_t columns_,const size_t rows_) in set() argument 82 _rows=rows_; in set() 85 Quantum* pixels=QueueCacheViewAuthenticPixels(_view,x_,y_,columns_,rows_, in set()
|
D | Image.cpp | 2914 const ssize_t y_,const size_t columns_,const size_t rows_, in evaluate() argument 2924 geometry.height = rows_; in evaluate() 3263 const ssize_t y_,const size_t columns_,const size_t rows_) const in getConstPixels() 3269 p=GetVirtualPixels(constImage(),x_, y_,columns_, rows_,exceptionInfo); in getConstPixels() 3303 const size_t columns_,const size_t rows_) in getPixels() argument 3310 result=GetAuthenticPixels(image(),x_, y_,columns_,rows_,exceptionInfo); in getPixels() 4197 void Magick::Image::roll(const size_t columns_,const size_t rows_) in roll() argument 4204 static_cast<ssize_t>(rows_),exceptionInfo); in roll() 4371 const size_t columns_,const size_t rows_) in setPixels() argument 4378 result=QueueAuthenticPixels(image(),x_,y_,columns_,rows_,exceptionInfo); in setPixels() [all …]
|
D | STL.cpp | 896 const ssize_t rows_ ) in rollImage() argument 898 _rows( rows_ ) in rollImage()
|
/external/gemmlowp/public/ |
D | map.h | 39 int rows_, cols_, stride_; variable 42 MatrixMap() : data_(nullptr), rows_(0), cols_(0), stride_(0) {} in MatrixMap() 45 rows_(rows), in MatrixMap() 49 : data_(data), rows_(rows), cols_(cols), stride_(stride) {} in MatrixMap() 52 rows_(other.rows_), in MatrixMap() 56 int rows() const { return rows_; } in rows() 70 assert(start_row + block_rows <= rows_); in block()
|
/external/gemmlowp/test/ |
D | test.h | 54 using Map::rows_; 67 Resize(other.rows_, other.cols_); 73 return a.rows_ == b.rows_ && a.cols_ == b.cols_ && 78 rows_ = rows; in Resize() 85 int size() const { return rows_ * cols_; } in size() 89 ConstMap const_map() const { return ConstMap(data_, rows_, cols_, stride_); } in const_map()
|
D | benchmark_all_sizes.cc | 58 using Map::rows_; 69 Resize(other.rows_, other.cols_); in operator =() 75 return a.rows_ == b.rows_ && a.cols_ == b.cols_ && in operator ==() 80 rows_ = rows; in Resize() 87 int size() const { return rows_ * cols_; } in size() 91 ConstMap const_map() const { return ConstMap(data_, rows_, cols_, stride_); } in const_map()
|
/external/ImageMagick/Magick++/lib/Magick++/ |
D | Pixels.h | 32 const size_t columns_,const size_t rows_); 37 const size_t columns_,const size_t rows_); 49 const size_t rows_ );
|
D | Image.h | 889 const ::ssize_t y_,const size_t columns_,const size_t rows_, 982 const size_t columns_,const size_t rows_) const; 995 const size_t columns_,const size_t rows_); 1264 void roll(const size_t columns_,const size_t rows_); 1312 const size_t columns_,const size_t rows_); 1487 const size_t rows_,const std::string &map_,const StorageType type_,
|
D | STL.h | 936 rollImage( const ::ssize_t columns_, const ::ssize_t rows_ );
|
/external/webrtc/webrtc/system_wrappers/source/ |
D | data_log.cc | 97 RowList rows_[2]; member in webrtc::LogTable 143 rows_(), in LogTable() 144 rows_history_(&rows_[0]), in LogTable() 145 rows_flush_(&rows_[1]), in LogTable()
|
/external/tensorflow/tensorflow/python/kernel_tests/ |
D | qr_op_test.py | 60 for rows_ in 4, 5: 62 matrix1 = random_ops.random_normal([rows_, cols_], seed=42) 63 matrix2 = random_ops.random_normal([rows_, cols_], seed=42)
|
/external/tensorflow/tensorflow/compiler/xla/ |
D | reference_util_test.cc | 39 matrix_ = absl::make_unique<Array2D<float>>(rows_, cols_); in ReferenceUtilTest() 42 for (int64 i = 0; i < rows_; ++i) { in ReferenceUtilTest() 49 const int64 rows_ = 2; member in xla::__anon2e9acc1b0111::ReferenceUtilTest
|
/external/ImageMagick/www/Magick++/ |
D | Cache.fig | 34 4 2 0 0 0 16 12 0.0000 4 135 495 2250 3300 rows_\001
|
/external/tensorflow/tensorflow/core/kernels/ |
D | deep_conv2d.cc | 509 : rows_(rows), in GemmFilterPacker() 514 void Run() { pack_lhs(lhs_block_, lhs_mapper_, depth_, rows_); } in Run() 517 const int64 rows_; member in tensorflow::GemmFilterPacker 591 : rows_(rows), in GemmState() 599 out_mapper_(out_buffer, rows_) {} in GemmState() 605 gebp(out_mapper_, lhs_block_, rhs_block_, rows_, depth_, cols_, 1.0); in Compute() 609 const int64 rows_; member in tensorflow::GemmState
|
/external/gemmlowp/internal/ |
D | unpack.h | 64 MatrixBlockBounds(int start_row_, int start_col_, int rows_, int cols_) in MatrixBlockBounds() 67 rows(rows_), in MatrixBlockBounds()
|
/external/libchrome/mojo/public/cpp/bindings/ |
D | README.md | 789 rows_.insert({key, data}); 794 std::map<int32_t, std::string> rows_; 986 rows_.insert({key, data}); 998 std::map<int32_t, std::string> rows_;
|