Home
last modified time | relevance | path

Searched refs:cols_ (Results 1 – 12 of 12) 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 __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/
Daligned_array.h25 cols_(cols) { in AlignedArray()
30 head_row_[i] = static_cast<T*>(AlignedMalloc(cols_ * sizeof(**head_row_), in AlignedArray()
61 RTC_CHECK_LE(col, cols_); in At()
66 RTC_CHECK_LE(col, cols_); in At()
75 return cols_; in cols()
80 size_t cols_; variable
/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.cc55 using Map::cols_;
69 Resize(other.rows_, other.cols_); in operator =()
75 return a.rows_ == b.rows_ && a.cols_ == b.cols_ && in operator ==()
81 cols_ = cols; 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/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::__anon2e9acc1b0111::ReferenceUtilTest
/external/tensorflow/tensorflow/python/kernel_tests/
Dqr_op_test.py61 for cols_ in 4, 5:
62 matrix1 = random_ops.random_normal([rows_, cols_], seed=42)
63 matrix2 = random_ops.random_normal([rows_, cols_], seed=42)
/external/perfetto/src/trace_processor/
Dspan_join_operator_table.h110 const std::vector<Table::Column>& columns() const { return cols_; } in columns()
122 std::vector<Table::Column> cols_; variable
Dspan_join_operator_table.cc677 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/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.h469 __host__ __device__ explicit RowOffset(const int& cols) : cols_(cols) {}
471 __host__ __device__ int operator()(const int& x) const { return cols_ * x; }
473 int cols_;