HomeSort by relevance Sort by last modified time
    Searched defs:num_rows (Results 1 - 25 of 33) sorted by null

1 2

  /external/webrtc/webrtc/modules/audio_processing/beamformer/
complex_matrix.h 30 ComplexMatrix(size_t num_rows, size_t num_columns)
31 : Matrix<complex<T> >(num_rows, num_columns) {}
33 ComplexMatrix(const complex<T>* data, size_t num_rows, size_t num_columns)
34 : Matrix<complex<T> >(data, num_rows, num_columns) {}
39 size_t size = this->num_rows() * this->num_columns();
54 size_t num_rows = this->num_rows(); local
56 this->SetNumColumns(num_rows);
62 RTC_CHECK_EQ(operand.num_rows(), this->num_columns());
63 RTC_CHECK_EQ(operand.num_columns(), this->num_rows());
    [all...]
matrix.h 70 Matrix(size_t num_rows, size_t num_columns)
71 : num_rows_(num_rows), num_columns_(num_columns) {
78 Matrix(const T* data, size_t num_rows, size_t num_columns)
80 CopyFrom(data, num_rows, num_columns);
93 void CopyFrom(const T* const data, size_t num_rows, size_t num_columns) {
94 Resize(num_rows, num_columns);
100 size_t num_rows) {
101 Resize(1, num_rows);
109 void Resize(size_t num_rows, size_t num_columns) {
110 if (num_rows != num_rows_ || num_columns != num_columns_)
118 size_t num_rows() const { return num_rows_; } function in class:webrtc::Matrix
    [all...]
  /art/compiler/debug/dwarf/
dwarf_test.cc 256 size_t num_rows = 0; local
267 num_rows++;
275 EXPECT_LT(opcodes.data()->size(), num_rows * 3);
  /external/libjpeg-turbo/
jdpostct.c 133 JDIMENSION num_rows, max_rows; local
140 num_rows = 0;
143 post->buffer, &num_rows, max_rows);
146 post->buffer, output_buf + *out_row_ctr, (int) num_rows);
147 *out_row_ctr += num_rows;
165 JDIMENSION old_next_row, num_rows; local
183 num_rows = post->next_row - old_next_row;
185 (JSAMPARRAY) NULL, (int) num_rows);
186 *out_row_ctr += num_rows;
209 JDIMENSION num_rows, max_rows local
    [all...]
jdsample.c 68 JDIMENSION num_rows; local
87 num_rows = (JDIMENSION) (cinfo->max_v_samp_factor - upsample->next_row_out);
91 if (num_rows > upsample->rows_to_go)
92 num_rows = upsample->rows_to_go;
95 if (num_rows > out_rows_avail)
96 num_rows = out_rows_avail;
101 (int) num_rows);
104 *out_row_ctr += num_rows;
105 upsample->rows_to_go -= num_rows;
106 upsample->next_row_out += num_rows;
    [all...]
jdmerge.c 260 JDIMENSION num_rows; /* number of rows returned to caller */ local
269 num_rows = 1;
273 num_rows = 2;
275 if (num_rows > upsample->rows_to_go)
276 num_rows = upsample->rows_to_go;
279 if (num_rows > out_rows_avail)
280 num_rows = out_rows_avail;
283 if (num_rows > 1) {
294 *out_row_ctr += num_rows;
295 upsample->rows_to_go -= num_rows;
    [all...]
  /external/pdfium/third_party/libjpeg/
fpdfapi_jdpostct.c 133 JDIMENSION num_rows, max_rows; local
140 num_rows = 0;
143 post->buffer, &num_rows, max_rows);
146 post->buffer, output_buf + *out_row_ctr, (int) num_rows);
147 *out_row_ctr += num_rows;
165 JDIMENSION old_next_row, num_rows; local
183 num_rows = post->next_row - old_next_row;
185 (JSAMPARRAY) NULL, (int) num_rows);
186 *out_row_ctr += num_rows;
209 JDIMENSION num_rows, max_rows local
    [all...]
fpdfapi_jdmerge.c 152 JDIMENSION num_rows; /* number of rows returned to caller */ local
158 num_rows = 1;
162 num_rows = 2;
164 if (num_rows > upsample->rows_to_go)
165 num_rows = upsample->rows_to_go;
168 if (num_rows > out_rows_avail)
169 num_rows = out_rows_avail;
172 if (num_rows > 1) {
183 *out_row_ctr += num_rows;
184 upsample->rows_to_go -= num_rows;
    [all...]
fpdfapi_jdsample.c 98 JDIMENSION num_rows; local
117 num_rows = (JDIMENSION) (cinfo->max_v_samp_factor - upsample->next_row_out);
121 if (num_rows > upsample->rows_to_go)
122 num_rows = upsample->rows_to_go;
125 if (num_rows > out_rows_avail)
126 num_rows = out_rows_avail;
131 (int) num_rows);
134 *out_row_ctr += num_rows;
135 upsample->rows_to_go -= num_rows;
136 upsample->next_row_out += num_rows;
    [all...]
  /external/eigen/unsupported/test/
cxx11_tensor_reduction_sycl.cpp 27 const int num_rows = 452; local
29 array<int, 2> tensorRange = {{num_rows, num_cols}};
cxx11_tensor_thread_pool.cpp 278 const int num_rows = internal::random<int>(13, 732); local
280 Tensor<float, 2, DataLayout> t1(num_rows, num_cols);
  /external/libhevc/decoder/x86/
ihevcd_fmt_conv_ssse3_intr.c 63 WORD32 num_rows, num_cols, src_strd, dst_strd, cols, rows; local
75 num_rows = ht;
80 for(i = 0; i < num_rows; i++)
118 num_rows = ht >> 1;
130 for(i = 0; i < (num_rows >> 2); i++)
208 rows = num_rows & 0x3;
244 pu1_u_dst -= (num_rows * dst_strd);
245 pu1_v_dst -= (num_rows * dst_strd);
254 for(i = 0; i < num_rows; i++)
  /external/libavc/decoder/
ih264d_format_conv.c 385 WORD32 num_rows, num_cols, src_strd, dst_strd; local
392 num_rows = ht;
398 for(i = 0; i < num_rows; i++)
409 num_rows = ht >> 1;
415 for(i = 0; i < num_rows; i++)
482 WORD32 num_rows, num_cols, src_strd, dst_strd; local
489 num_rows = ht;
495 for(i = 0; i < num_rows; i++)
506 num_rows = ht >> 1;
512 for(i = 0; i < num_rows; i++
594 WORD32 num_rows, num_cols, src_strd, dst_strd; local
    [all...]
  /external/libhevc/decoder/
ihevcd_decode.c 91 WORD32 num_rows);
807 WORD32 num_rows = 1 << ps_sps->i1_log2_ctb_size; local
813 num_rows = MIN(num_rows, (ps_codec->i4_disp_ht - (s_job.i2_ctb_y << ps_sps->i1_log2_ctb_size)));
814 if(num_rows < 0)
815 num_rows = 0;
822 num_rows);
    [all...]
ihevcd_fmt_conv.c 391 WORD32 num_rows, num_cols, src_strd, dst_strd; local
398 num_rows = ht;
404 for(i = 0; i < num_rows; i++)
415 num_rows = ht >> 1;
421 for(i = 0; i < num_rows; i++)
490 WORD32 num_rows, num_cols, src_strd, dst_strd; local
497 num_rows = ht;
503 for(i = 0; i < num_rows; i++)
514 num_rows = ht >> 1;
520 for(i = 0; i < num_rows; i++
603 WORD32 num_rows, num_cols, src_strd, dst_strd; local
    [all...]
ihevcd_process_slice.c 98 WORD32 num_rows);
1605 WORD32 num_rows; local
    [all...]
  /external/libmpeg2/common/
ideint_utils.c 96 WORD32 num_rows)
117 comp_row_end = comp_row_start + num_rows;
260 WORD32 num_cols, num_rows; local
265 num_rows = blk_ht + 4;
282 num_rows -= 2;
292 num_rows -= 2;
294 for(i = 0; i < num_rows; i += 2)
  /external/libavc/encoder/
ih264e_fmt_conv.c 371 WORD32 num_rows, num_cols, src_strd, dst_strd; local
378 num_rows = ht;
384 for (i = 0; i < num_rows; i++)
395 num_rows = ht >> 1;
401 for (i = 0; i < num_rows; i++)
423 WORD32 num_rows, num_cols, src_strd, dst_strd; local
430 num_rows = ht;
436 for (i = 0; i < num_rows; i++)
447 num_rows = ht >> 1;
453 for (i = 0; i < num_rows; i++
483 WORD32 num_rows, num_cols, src_strd, dst_strd; local
    [all...]
ih264e_process.c 1255 WORD32 num_rows = MB_SIZE; local
    [all...]
  /packages/services/BuiltInPrintService/jni/plugins/
lib_pcl.h 103 int page_number, num_rows; member in struct:__anon44637
155 * rgb_pixels[] must have (num_rows * pixel_width) pixels. bytes_per_row can be used for
158 status_t (*print_swath)(pcl_job_info_t *job_info, char *rgb_pixels, int start_row, int num_rows,
plugin_pcl.c 60 int num_rows; member in struct:__anon44639::__anon44640::__anon44642
131 msg.param.send.start_row, msg.param.send.num_rows,
281 int num_rows, height, image_row; local
394 num_rows = wprint_image_get_height(image_info);
398 while ((result != ERROR) && (num_rows > 0)) {
407 height = MIN(num_rows, job_params->strip_height);
424 msg.param.send.num_rows = height;
433 num_rows -= height;
wprint_image.c 611 int _decode_stripe(wprint_image_info_t *image_info, int start_row, int num_rows,
634 old_num_rows = ~num_rows;
638 while (num_rows > 0) {
642 if (old_num_rows == num_rows) {
646 old_num_rows = num_rows;
675 for (image_y = start_row; ((num_rows != 0) &&
678 image_y++, num_rows--, start_row++) {
690 ((image_y < image_info->sampled_height) && (num_rows != 0));
691 image_y++, num_rows--) {
709 while (num_rows > 0)
788 int num_rows = *height; local
    [all...]
  /external/libmpeg2/decoder/
impeg2d_dec_hdr.c 930 WORD32 num_rows; local
1017 WORD32 num_rows; local
    [all...]
  /frameworks/base/tools/aapt2/compile/
NinePatch.cpp 549 const int32_t num_rows = local
553 if ((int64_t)num_rows * (int64_t)num_cols > 0x7f) {
558 nine_patch->region_colors.reserve(num_rows * num_cols);
  /external/webp/src/dec/
io_dec.c 154 const uint8_t** alpha, int* const num_rows) {
156 *num_rows = io->mb_h;
163 --*num_rows;
173 *num_rows = io->crop_bottom - io->crop_top - start_y;
188 int num_rows; local
189 const int start_y = GetAlphaSourceRow(io, &alpha, &num_rows);
193 num_rows, dst, buf->stride);
195 assert(expected_num_lines_out == num_rows);
199 mb_w, num_rows, buf->stride);
212 int num_rows; local
    [all...]

Completed in 710 milliseconds

1 2