Home
last modified time | relevance | path

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

/external/libvpx/libvpx/test/
Dpp_filter_test.cc224 : 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()
259 const int cols_; member in __anondc23f4e70111::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/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.cc39 matrix_ = absl::make_unique<Array2D<float>>(rows_, cols_); in ReferenceUtilTest()
43 for (int64 j = 0; j < cols_; ++j) { in ReferenceUtilTest()
44 (*matrix_)(i, j) = i * cols_ + j + 1; in ReferenceUtilTest()
50 const int64 cols_ = 3; member in xla::__anon58c7b9390111::ReferenceUtilTest
/external/perfetto/src/trace_processor/sqlite/
Dspan_join_operator_table.h119 const std::vector<SqliteTable::Column>& columns() const { return cols_; } in columns()
130 std::vector<SqliteTable::Column> cols_; variable
Dspan_join_operator_table.cc871 cols_(std::move(cols)), in TableDefinition()
/external/tensorflow/tensorflow/python/kernel_tests/
Dqr_op_test.py67 for cols_ in 4, 5:
68 matrix_shape = [rows_, cols_]
/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/core/kernels/
Ddeep_conv2d.cc592 cols_(cols), in GemmState()
601 void PackRhs() { pack_rhs(rhs_block_, rhs_mapper_, depth_, cols_); } in PackRhs()
605 gebp(out_mapper_, lhs_block_, rhs_block_, rows_, depth_, cols_, 1.0); in Compute()
610 const int64 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_;