Home
last modified time | relevance | path

Searched refs:cols_ (Results 1 – 13 of 13) sorted by relevance

/external/libvpx/test/
Dpp_filter_test.cc228 : rows_(16), cols_(16), mb_post_proc_across_ip_(GetParam()), in VpxMbPostProcAcrossIpTest()
229 src_(Buffer<uint8_t>(rows_, cols_, 8, 8, 17, 8)) {} in VpxMbPostProcAcrossIpTest()
263 const int cols_; member in __anonbc68c3e10111::VpxMbPostProcAcrossIpTest
269 mb_post_proc_across_ip_(src_.TopLeftPixel(), src_.stride(), rows_, cols_, in Run()
276 SetCols(src_.TopLeftPixel(), rows_, cols_, src_.stride()); in TEST_P()
278 Buffer<uint8_t> expected_output = Buffer<uint8_t>(cols_, rows_, 0); in TEST_P()
280 SetCols(expected_output.TopLeftPixel(), rows_, cols_, in TEST_P()
283 RunFilterLevel(src_.TopLeftPixel(), rows_, cols_, src_.stride(), q2mbl(0), in TEST_P()
290 SetCols(src_.TopLeftPixel(), rows_, cols_, src_.stride()); in TEST_P()
296 RunFilterLevel(src_.TopLeftPixel(), rows_, cols_, src_.stride(), q2mbl(70), in TEST_P()
[all …]
/external/gemmlowp/public/
Dmap.h39 int rows_, cols_, stride_; variable
42 MatrixMap() : data_(nullptr), rows_(0), cols_(0), stride_(0) {} in MatrixMap()
46 cols_(cols), in MatrixMap()
49 : data_(data), rows_(rows), cols_(cols), stride_(stride) {} in MatrixMap()
53 cols_(other.cols_), in MatrixMap()
57 int cols() const { return cols_; } in cols()
72 assert(start_col + block_cols <= cols_); in block()
/external/gemmlowp/test/
Dtest.h55 using Map::cols_;
67 Resize(other.rows_, other.cols_);
73 return a.rows_ == b.rows_ && a.cols_ == b.cols_ &&
79 cols_ = cols; 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()
Dbenchmark_all_sizes.cc59 using Map::cols_;
73 Resize(other.rows_, other.cols_); in operator =()
79 return a.rows_ == b.rows_ && a.cols_ == b.cols_ && in operator ==()
85 cols_ = cols; in Resize()
91 int size() const { return rows_ * cols_; } in size()
95 ConstMap const_map() const { return ConstMap(data_, rows_, cols_, stride_); } in const_map()
/external/webrtc/modules/audio_coding/codecs/opus/test/
Dlapped_transform.h29 : rows_(rows), cols_(cols) { in AlignedArray()
35 AlignedMalloc(cols_ * sizeof(**head_row_), alignment)); in AlignedArray()
62 size_t cols_; variable
/external/ruy/ruy/
Dmatrix.h36 int cols() const { return cols_; } in cols()
37 void set_cols(int val) { cols_ = val; } in set_cols()
45 int cols_ = 0; variable
/external/tensorflow/tensorflow/compiler/xla/
Dreference_util_test.cc38 matrix_ = std::make_unique<Array2D<float>>(rows_, cols_); in ReferenceUtilTest()
42 for (int64_t j = 0; j < cols_; ++j) { in ReferenceUtilTest()
43 (*matrix_)(i, j) = i * cols_ + j + 1; in ReferenceUtilTest()
49 const int64_t cols_ = 3; member in xla::__anon82f4a6570111::ReferenceUtilTest
/external/perfetto/src/trace_processor/prelude/operators/
Dspan_join_operator.h119 const std::vector<SqliteTable::Column>& columns() const { return cols_; } in columns()
130 std::vector<SqliteTable::Column> cols_; variable
Dspan_join_operator.cc852 cols_(std::move(cols)), in TableDefinition()
/external/gemmlowp/internal/
Dunpack.h64 MatrixBlockBounds(int start_row_, int start_col_, int rows_, int cols_) in MatrixBlockBounds()
68 cols(cols_) {} in MatrixBlockBounds()
/external/tensorflow/tensorflow/python/kernel_tests/linalg/
Dqr_op_test.py63 for cols_ in 4, 5:
64 matrix_shape = [rows_, cols_]
/external/tensorflow/tensorflow/core/kernels/
Ddeep_conv2d.cc604 cols_(cols), in GemmState()
613 void PackRhs() { pack_rhs(rhs_block_, rhs_mapper_, depth_, cols_); } in PackRhs()
617 gebp(out_mapper_, lhs_block_, rhs_block_, rows_, depth_, cols_, 1.0); in Compute()
622 const int64_t cols_; member in tensorflow::GemmState
Dreduction_gpu_kernels.cu.h611 __host__ __device__ explicit RowOffset(const int& cols) : cols_(cols) {}
613 __host__ __device__ int operator()(const int& x) const { return cols_ * x; }
615 int cols_;