Home
last modified time | relevance | path

Searched refs:num_rows (Results 1 – 25 of 113) sorted by relevance

12345

/external/libjpeg-turbo/simd/
Djsimd.h33 JDIMENSION output_row, int num_rows);
36 JDIMENSION output_row, int num_rows);
39 JDIMENSION output_row, int num_rows);
42 JDIMENSION output_row, int num_rows);
45 JDIMENSION output_row, int num_rows);
48 JDIMENSION output_row, int num_rows);
51 JDIMENSION output_row, int num_rows);
56 JDIMENSION output_row, int num_rows);
59 JDIMENSION output_row, int num_rows);
62 JDIMENSION output_row, int num_rows);
[all …]
/external/libjpeg-turbo/
Djdcolor.c256 JSAMPARRAY output_buf, int num_rows) in ycc_rgb_convert() argument
261 num_rows); in ycc_rgb_convert()
266 num_rows); in ycc_rgb_convert()
270 num_rows); in ycc_rgb_convert()
275 num_rows); in ycc_rgb_convert()
280 num_rows); in ycc_rgb_convert()
285 num_rows); in ycc_rgb_convert()
289 num_rows); in ycc_rgb_convert()
329 JSAMPARRAY output_buf, int num_rows) in rgb_gray_convert() argument
339 while (--num_rows >= 0) { in rgb_gray_convert()
[all …]
Djdpostct.c133 JDIMENSION num_rows, max_rows; in post_process_1pass() local
140 num_rows = 0; in post_process_1pass()
143 post->buffer, &num_rows, max_rows); in post_process_1pass()
146 post->buffer, output_buf + *out_row_ctr, (int) num_rows); in post_process_1pass()
147 *out_row_ctr += num_rows; in post_process_1pass()
165 JDIMENSION old_next_row, num_rows; in post_process_prepass() local
183 num_rows = post->next_row - old_next_row; in post_process_prepass()
185 (JSAMPARRAY) NULL, (int) num_rows); in post_process_prepass()
186 *out_row_ctr += num_rows; in post_process_prepass()
209 JDIMENSION num_rows, max_rows; in post_process_2pass() local
[all …]
Djccolor.c236 JDIMENSION output_row, int num_rows) in rgb_ycc_convert() argument
241 num_rows); in rgb_ycc_convert()
246 num_rows); in rgb_ycc_convert()
250 num_rows); in rgb_ycc_convert()
255 num_rows); in rgb_ycc_convert()
260 num_rows); in rgb_ycc_convert()
265 num_rows); in rgb_ycc_convert()
269 num_rows); in rgb_ycc_convert()
285 JDIMENSION output_row, int num_rows) in rgb_gray_convert() argument
290 num_rows); in rgb_gray_convert()
[all …]
Djdcolext.c33 JSAMPARRAY output_buf, int num_rows) in LOCAL()
49 while (--num_rows >= 0) { in LOCAL()
86 JSAMPARRAY output_buf, int num_rows) in LOCAL()
92 while (--num_rows >= 0) { in LOCAL()
117 JSAMPARRAY output_buf, int num_rows) in LOCAL()
124 while (--num_rows >= 0) { in LOCAL()
Djccolext.c34 JDIMENSION output_row, int num_rows) in LOCAL()
44 while (--num_rows >= 0) { in LOCAL()
91 JDIMENSION output_row, int num_rows) in LOCAL()
101 while (--num_rows >= 0) { in LOCAL()
128 JDIMENSION output_row, int num_rows) in LOCAL()
135 while (--num_rows >= 0) { in LOCAL()
Djsimd.h24 JDIMENSION output_row, int num_rows);
27 JDIMENSION output_row, int num_rows);
30 JSAMPARRAY output_buf, int num_rows);
33 JSAMPARRAY output_buf, int num_rows);
36 JDIMENSION output_row, int num_rows);
Djdcol565.c22 JSAMPARRAY output_buf, int num_rows) in LOCAL()
38 while (--num_rows >= 0) { in LOCAL()
101 JSAMPARRAY output_buf, int num_rows) in LOCAL()
118 while (--num_rows >= 0) { in LOCAL()
187 JSAMPARRAY output_buf, int num_rows) in LOCAL()
195 while (--num_rows >= 0) { in LOCAL()
242 JSAMPARRAY output_buf, int num_rows) in LOCAL()
252 while (--num_rows >= 0) { in LOCAL()
301 JSAMPARRAY output_buf, int num_rows) in LOCAL()
307 while (--num_rows >= 0) { in LOCAL()
[all …]
Djdsample.c68 JDIMENSION num_rows; in sep_upsample() local
87 num_rows = (JDIMENSION) (cinfo->max_v_samp_factor - upsample->next_row_out); in sep_upsample()
91 if (num_rows > upsample->rows_to_go) in sep_upsample()
92 num_rows = upsample->rows_to_go; in sep_upsample()
95 if (num_rows > out_rows_avail) in sep_upsample()
96 num_rows = out_rows_avail; in sep_upsample()
101 (int) num_rows); in sep_upsample()
104 *out_row_ctr += num_rows; in sep_upsample()
105 upsample->rows_to_go -= num_rows; in sep_upsample()
106 upsample->next_row_out += num_rows; in sep_upsample()
/external/webrtc/webrtc/modules/audio_processing/beamformer/
Dcomplex_matrix.h30 ComplexMatrix(size_t num_rows, size_t num_columns) in ComplexMatrix() argument
31 : Matrix<complex<T> >(num_rows, num_columns) {} in ComplexMatrix()
33 ComplexMatrix(const complex<T>* data, size_t num_rows, size_t num_columns) in ComplexMatrix() argument
34 : Matrix<complex<T> >(data, num_rows, num_columns) {} in ComplexMatrix()
39 size_t size = this->num_rows() * this->num_columns(); in PointwiseConjugate()
54 size_t num_rows = this->num_rows(); in ConjugateTranspose() local
56 this->SetNumColumns(num_rows); in ConjugateTranspose()
62 RTC_CHECK_EQ(operand.num_rows(), this->num_columns()); in ConjugateTranspose()
63 RTC_CHECK_EQ(operand.num_columns(), this->num_rows()); in ConjugateTranspose()
69 size_t size = this->num_rows() * this->num_columns(); in ZeroImag()
[all …]
Dmatrix_test_helpers.h32 EXPECT_EQ(expected.num_rows(), actual.num_rows()); in ValidateMatrixEquality()
37 for (size_t i = 0; i < expected.num_rows(); ++i) { in ValidateMatrixEquality()
46 EXPECT_EQ(expected.num_rows(), actual.num_rows()); in ValidateMatrixEqualityFloat()
51 for (size_t i = 0; i < expected.num_rows(); ++i) { in ValidateMatrixEqualityFloat()
61 EXPECT_EQ(expected.num_rows(), actual.num_rows()); in ValidateMatrixEqualityComplexFloat()
66 for (size_t i = 0; i < expected.num_rows(); ++i) { in ValidateMatrixEqualityComplexFloat()
82 EXPECT_EQ(expected.num_rows(), actual.num_rows()); in ValidateMatrixNearEqualityComplexFloat()
87 for (size_t i = 0; i < expected.num_rows(); ++i) { in ValidateMatrixNearEqualityComplexFloat()
Dmatrix.h70 Matrix(size_t num_rows, size_t num_columns) in Matrix() argument
71 : num_rows_(num_rows), num_columns_(num_columns) { in Matrix()
78 Matrix(const T* data, size_t num_rows, size_t num_columns) in Matrix() argument
80 CopyFrom(data, num_rows, num_columns); in Matrix()
93 void CopyFrom(const T* const data, size_t num_rows, size_t num_columns) { in CopyFrom() argument
94 Resize(num_rows, num_columns); in CopyFrom()
100 size_t num_rows) { in CopyFromColumn() argument
101 Resize(1, num_rows); in CopyFromColumn()
109 void Resize(size_t num_rows, size_t num_columns) { in Resize() argument
110 if (num_rows != num_rows_ || num_columns != num_columns_) { in Resize()
[all …]
/external/pdfium/third_party/libjpeg/
Dfpdfapi_jdpostct.c133 JDIMENSION num_rows, max_rows; in post_process_1pass() local
140 num_rows = 0; in post_process_1pass()
143 post->buffer, &num_rows, max_rows); in post_process_1pass()
146 post->buffer, output_buf + *out_row_ctr, (int) num_rows); in post_process_1pass()
147 *out_row_ctr += num_rows; in post_process_1pass()
165 JDIMENSION old_next_row, num_rows; in post_process_prepass() local
183 num_rows = post->next_row - old_next_row; in post_process_prepass()
185 (JSAMPARRAY) NULL, (int) num_rows); in post_process_prepass()
186 *out_row_ctr += num_rows; in post_process_prepass()
209 JDIMENSION num_rows, max_rows; in post_process_2pass() local
[all …]
Dfpdfapi_jdcolor.c122 JSAMPARRAY output_buf, int num_rows) in ycc_rgb_convert() argument
138 while (--num_rows >= 0) { in ycc_rgb_convert()
171 JSAMPARRAY output_buf, int num_rows) in null_convert() argument
179 while (--num_rows >= 0) { in null_convert()
203 JSAMPARRAY output_buf, int num_rows) in grayscale_convert() argument
206 num_rows, cinfo->output_width); in grayscale_convert()
219 JSAMPARRAY output_buf, int num_rows) in gray_rgb_convert() argument
225 while (--num_rows >= 0) { in gray_rgb_convert()
247 JSAMPARRAY output_buf, int num_rows) in ycck_cmyk_convert() argument
263 while (--num_rows >= 0) { in ycck_cmyk_convert()
Dfpdfapi_jdmerge.c152 JDIMENSION num_rows; /* number of rows returned to caller */ in merged_2v_upsample() local
158 num_rows = 1; in merged_2v_upsample()
162 num_rows = 2; in merged_2v_upsample()
164 if (num_rows > upsample->rows_to_go) in merged_2v_upsample()
165 num_rows = upsample->rows_to_go; in merged_2v_upsample()
168 if (num_rows > out_rows_avail) in merged_2v_upsample()
169 num_rows = out_rows_avail; in merged_2v_upsample()
172 if (num_rows > 1) { in merged_2v_upsample()
183 *out_row_ctr += num_rows; in merged_2v_upsample()
184 upsample->rows_to_go -= num_rows; in merged_2v_upsample()
Dfpdfapi_jdsample.c98 JDIMENSION num_rows; in sep_upsample() local
117 num_rows = (JDIMENSION) (cinfo->max_v_samp_factor - upsample->next_row_out); in sep_upsample()
121 if (num_rows > upsample->rows_to_go) in sep_upsample()
122 num_rows = upsample->rows_to_go; in sep_upsample()
125 if (num_rows > out_rows_avail) in sep_upsample()
126 num_rows = out_rows_avail; in sep_upsample()
131 (int) num_rows); in sep_upsample()
134 *out_row_ctr += num_rows; in sep_upsample()
135 upsample->rows_to_go -= num_rows; in sep_upsample()
136 upsample->next_row_out += num_rows; in sep_upsample()
Dfpdfapi_jccolor.c132 JDIMENSION output_row, int num_rows) in rgb_ycc_convert() argument
142 while (--num_rows >= 0) { in rgb_ycc_convert()
188 JDIMENSION output_row, int num_rows) in rgb_gray_convert() argument
198 while (--num_rows >= 0) { in rgb_gray_convert()
227 JDIMENSION output_row, int num_rows) in cmyk_ycck_convert() argument
237 while (--num_rows >= 0) { in cmyk_ycck_convert()
282 JDIMENSION output_row, int num_rows) in grayscale_convert() argument
290 while (--num_rows >= 0) { in grayscale_convert()
311 JDIMENSION output_row, int num_rows) in null_convert() argument
320 while (--num_rows >= 0) { in null_convert()
/external/libhevc/decoder/
Dihevcd_fmt_conv.c391 WORD32 num_rows, num_cols, src_strd, dst_strd; in ihevcd_fmt_conv_420sp_to_420sp() local
398 num_rows = ht; in ihevcd_fmt_conv_420sp_to_420sp()
404 for(i = 0; i < num_rows; i++) in ihevcd_fmt_conv_420sp_to_420sp()
415 num_rows = ht >> 1; in ihevcd_fmt_conv_420sp_to_420sp()
421 for(i = 0; i < num_rows; i++) in ihevcd_fmt_conv_420sp_to_420sp()
490 WORD32 num_rows, num_cols, src_strd, dst_strd; in ihevcd_fmt_conv_420sp_to_420sp_swap_uv() local
497 num_rows = ht; in ihevcd_fmt_conv_420sp_to_420sp_swap_uv()
503 for(i = 0; i < num_rows; i++) in ihevcd_fmt_conv_420sp_to_420sp_swap_uv()
514 num_rows = ht >> 1; in ihevcd_fmt_conv_420sp_to_420sp_swap_uv()
520 for(i = 0; i < num_rows; i++) in ihevcd_fmt_conv_420sp_to_420sp_swap_uv()
[all …]
/external/webp/src/dec/
Dalpha_dec.c110 static int ALPHDecode(VP8Decoder* const dec, int row, int num_rows) { in ALPHDecode() argument
122 for (y = 0; y < num_rows; ++y) { in ALPHDecode()
129 for (y = 0; y < num_rows; ++y) { in ALPHDecode()
139 if (!VP8LDecodeAlphaImageStream(alph_dec, row + num_rows)) { in ALPHDecode()
144 if (row + num_rows >= height) { in ALPHDecode()
179 int row, int num_rows) { in VP8DecompressAlphaRows() argument
185 if (row < 0 || num_rows <= 0 || row + num_rows > height) { in VP8DecompressAlphaRows()
202 num_rows = height - row; // decode everything in one pass in VP8DecompressAlphaRows()
207 assert(row + num_rows <= height); in VP8DecompressAlphaRows()
208 if (!ALPHDecode(dec, row, num_rows)) goto Error; in VP8DecompressAlphaRows()
/external/libavc/encoder/
Dih264e_fmt_conv.c371 WORD32 num_rows, num_cols, src_strd, dst_strd; in ih264e_fmt_conv_420sp_to_420sp() local
378 num_rows = ht; in ih264e_fmt_conv_420sp_to_420sp()
384 for (i = 0; i < num_rows; i++) in ih264e_fmt_conv_420sp_to_420sp()
395 num_rows = ht >> 1; in ih264e_fmt_conv_420sp_to_420sp()
401 for (i = 0; i < num_rows; i++) in ih264e_fmt_conv_420sp_to_420sp()
423 WORD32 num_rows, num_cols, src_strd, dst_strd; in ih264e_fmt_conv_420sp_to_420sp_swap_uv() local
430 num_rows = ht; in ih264e_fmt_conv_420sp_to_420sp_swap_uv()
436 for (i = 0; i < num_rows; i++) in ih264e_fmt_conv_420sp_to_420sp_swap_uv()
447 num_rows = ht >> 1; in ih264e_fmt_conv_420sp_to_420sp_swap_uv()
453 for (i = 0; i < num_rows; i++) in ih264e_fmt_conv_420sp_to_420sp_swap_uv()
[all …]
/external/libhevc/decoder/x86/
Dihevcd_fmt_conv_ssse3_intr.c63 WORD32 num_rows, num_cols, src_strd, dst_strd, cols, rows; in ihevcd_fmt_conv_420sp_to_420p_ssse3() local
75 num_rows = ht; in ihevcd_fmt_conv_420sp_to_420p_ssse3()
80 for(i = 0; i < num_rows; i++) in ihevcd_fmt_conv_420sp_to_420p_ssse3()
118 num_rows = ht >> 1; in ihevcd_fmt_conv_420sp_to_420p_ssse3()
130 for(i = 0; i < (num_rows >> 2); i++) in ihevcd_fmt_conv_420sp_to_420p_ssse3()
208 rows = num_rows & 0x3; in ihevcd_fmt_conv_420sp_to_420p_ssse3()
244 pu1_u_dst -= (num_rows * dst_strd); in ihevcd_fmt_conv_420sp_to_420p_ssse3()
245 pu1_v_dst -= (num_rows * dst_strd); in ihevcd_fmt_conv_420sp_to_420p_ssse3()
254 for(i = 0; i < num_rows; i++) in ihevcd_fmt_conv_420sp_to_420p_ssse3()
/external/libavc/decoder/
Dih264d_format_conv.c385 WORD32 num_rows, num_cols, src_strd, dst_strd; in ih264d_fmt_conv_420sp_to_420sp() local
392 num_rows = ht; in ih264d_fmt_conv_420sp_to_420sp()
398 for(i = 0; i < num_rows; i++) in ih264d_fmt_conv_420sp_to_420sp()
409 num_rows = ht >> 1; in ih264d_fmt_conv_420sp_to_420sp()
415 for(i = 0; i < num_rows; i++) in ih264d_fmt_conv_420sp_to_420sp()
482 WORD32 num_rows, num_cols, src_strd, dst_strd; in ih264d_fmt_conv_420sp_to_420sp_swap_uv() local
489 num_rows = ht; in ih264d_fmt_conv_420sp_to_420sp_swap_uv()
495 for(i = 0; i < num_rows; i++) in ih264d_fmt_conv_420sp_to_420sp_swap_uv()
506 num_rows = ht >> 1; in ih264d_fmt_conv_420sp_to_420sp_swap_uv()
512 for(i = 0; i < num_rows; i++) in ih264d_fmt_conv_420sp_to_420sp_swap_uv()
[all …]
/external/webp/src/dsp/
Dfilters.c28 assert(row >= 0 && num_rows > 0 && row + num_rows <= height); \
46 int row, int num_rows, in DoHorizontalFilter() argument
50 const int last_row = row + num_rows; in DoHorizontalFilter()
83 int row, int num_rows, in DoVerticalFilter() argument
87 const int last_row = row + num_rows; in DoVerticalFilter()
126 int row, int num_rows, in DoGradientFilter() argument
130 const int last_row = row + num_rows; in DoGradientFilter()
Dfilters_mips_dsp_r2.c33 assert(row >= 0 && num_rows > 0 && row + num_rows <= height); \
197 int row, int num_rows, in DoHorizontalFilter() argument
201 const int last_row = row + num_rows; in DoHorizontalFilter()
242 int row, int num_rows, uint8_t* out) { in DoVerticalFilter() argument
245 const int last_row = row + num_rows; in DoVerticalFilter()
309 int row, int num_rows, uint8_t* out) { in DoGradientFilter() argument
312 const int last_row = row + num_rows; in DoGradientFilter()
/external/libmpeg2/common/
Dideint_utils.c96 WORD32 num_rows) in ideint_weave_pic() argument
117 comp_row_end = comp_row_start + num_rows; in ideint_weave_pic()
260 WORD32 num_cols, num_rows; in ideint_pad_blk() local
265 num_rows = blk_ht + 4; in ideint_pad_blk()
282 num_rows -= 2; in ideint_pad_blk()
292 num_rows -= 2; in ideint_pad_blk()
294 for(i = 0; i < num_rows; i += 2) in ideint_pad_blk()

12345