Home
last modified time | relevance | path

Searched refs:num_rows_ (Results 1 – 7 of 7) sorted by relevance

/external/webrtc/webrtc/modules/audio_processing/beamformer/
Dmatrix.h67 Matrix() : num_rows_(0), num_columns_(0) {} in Matrix()
71 : num_rows_(num_rows), num_columns_(num_columns) { in Matrix()
73 scratch_data_.resize(num_rows_ * num_columns_); in Matrix()
74 scratch_elements_.resize(num_rows_); in Matrix()
79 : num_rows_(0), num_columns_(0) { in Matrix()
81 scratch_data_.resize(num_rows_ * num_columns_); in Matrix()
82 scratch_elements_.resize(num_rows_); in Matrix()
89 CopyFrom(&other.data_[0], other.num_rows_, other.num_columns_); in CopyFrom()
95 memcpy(&data_[0], data, num_rows_ * num_columns_ * sizeof(data_[0])); in CopyFrom()
110 if (num_rows != num_rows_ || num_columns != num_columns_) { in Resize()
[all …]
/external/tensorflow/tensorflow/contrib/image/kernels/
Dsegmentation_ops.h67 num_rows_(num_rows), in BlockedImageUnionFindFunctor()
85 return (num_rows_ + block_height_ - 1) / block_height_; in num_blocks_vertically()
109 return block_height_ < num_rows_ || block_width_ < num_cols_; in can_merge()
132 std::min(num_rows_, block_start_y + block_height_); in merge_internal_block_edges()
139 if (0 <= block_center_y && block_center_y + 1 < num_rows_) { in merge_internal_block_edges()
151 const int64 num_rows_; variable
171 const int64 index_a = col + num_cols_ * (row + num_rows_ * batch); in union_down()
172 if (row + 1 < num_rows_ && read_pixel(batch, row + 1, col) == pixel) { in union_down()
173 const int64 index_b = col + num_cols_ * (row + 1 + num_rows_ * batch); in union_down()
185 const int64 index_a = col + num_cols_ * (row + num_rows_ * batch); in union_right()
[all …]
/external/tensorflow/tensorflow/core/kernels/
Dload_and_remap_matrix_op.cc64 OP_REQUIRES_OK(context, context->GetAttr("num_rows", &num_rows_)); in LoadAndRemapMatrixOp()
78 OP_REQUIRES(context, row_remapping.size() == num_rows_, in Compute()
81 " instead of being equal to num_rows=", num_rows_))); in Compute()
194 TensorShape({num_rows_, num_cols_}), in Compute()
251 new_row < num_rows_ && new_col < num_cols_ && in Compute()
255 " should have been less than num_rows_=", num_rows_, in Compute()
265 << num_rows_ << " rows)."; in Compute()
276 for (int i = 0; i < num_rows_; ++i) { in Compute()
299 int64 num_rows_; member in tensorflow::LoadAndRemapMatrixOp
/external/perfetto/src/trace_processor/
Dstring_table.cc65 num_rows_ = storage_->string_count(); in Filter()
75 return row_ >= num_rows_; in Eof()
Dsql_stats_table.cc67 num_rows_ = storage_->sql_stats().size(); in Filter()
77 return row_ >= num_rows_; in Eof()
Dstring_table.h58 size_t num_rows_ = 0; variable
Dsql_stats_table.h63 size_t num_rows_ = 0; variable