Home
last modified time | relevance | path

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

/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()
/external/libtextclassifier/common/
Dembedding-network.h54 cols_(source_matrix.cols), in EmbeddingMatrix()
57 row_size_in_bytes_(GetRowSizeInBytes(cols_, quant_type_)), in EmbeddingMatrix()
64 int dim() const { return cols_; } in dim()
106 const int cols_; variable
/external/gemmlowp/internal/
Dunpack.h64 MatrixBlockBounds(int start_row_, int start_col_, int rows_, int cols_) in MatrixBlockBounds()
68 cols(cols_) {} in MatrixBlockBounds()