HomeSort by relevance Sort by last modified time
    Searched refs:num_rows (Results 101 - 125 of 186) sorted by null

1 2 3 45 6 7 8

  /external/qemu/distrib/jpeg-6b/
jquant1.c 460 JSAMPARRAY output_buf, int num_rows)
472 for (row = 0; row < num_rows; row++) {
488 JSAMPARRAY output_buf, int num_rows)
501 for (row = 0; row < num_rows; row++) {
516 JSAMPARRAY output_buf, int num_rows)
531 for (row = 0; row < num_rows; row++) {
566 JSAMPARRAY output_buf, int num_rows)
584 for (row = 0; row < num_rows; row++) {
611 JSAMPARRAY output_buf, int num_rows)
636 for (row = 0; row < num_rows; row++)
    [all...]
jdmerge.c 171 JDIMENSION num_rows; /* number of rows returned to caller */ local
183 num_rows = 1;
187 num_rows = 2;
189 if (num_rows > upsample->rows_to_go)
190 num_rows = upsample->rows_to_go;
193 if (num_rows > out_rows_avail)
194 num_rows = out_rows_avail;
197 if (num_rows > 1) {
208 *out_row_ctr += num_rows;
209 upsample->rows_to_go -= num_rows;
    [all...]
jpegint.h 87 JDIMENSION output_row, int num_rows));
280 JSAMPARRAY output_buf, int num_rows));
288 int num_rows));
408 int num_rows, JDIMENSION num_cols));
  /external/chromium_org/third_party/libjpeg_turbo/simd/
jsimd_arm.c 182 JDIMENSION output_row, int num_rows)
217 output_buf, output_row, num_rows);
223 JDIMENSION output_row, int num_rows)
230 JSAMPARRAY output_buf, int num_rows)
265 input_row, output_buf, num_rows);
jsimd_i386.c 136 JDIMENSION output_row, int num_rows)
180 output_buf, output_row, num_rows);
183 output_buf, output_row, num_rows);
190 JDIMENSION output_row, int num_rows)
234 output_buf, output_row, num_rows);
237 output_buf, output_row, num_rows);
243 JSAMPARRAY output_buf, int num_rows)
287 input_row, output_buf, num_rows);
290 input_row, output_buf, num_rows);
jsimd_x86_64.c 89 JDIMENSION output_row, int num_rows)
122 sse2fct(cinfo->image_width, input_buf, output_buf, output_row, num_rows);
129 JDIMENSION output_row, int num_rows)
162 sse2fct(cinfo->image_width, input_buf, output_buf, output_row, num_rows);
168 JSAMPARRAY output_buf, int num_rows)
201 sse2fct(cinfo->output_width, input_buf, input_row, output_buf, num_rows);
  /external/ceres-solver/internal/ceres/
implicit_schur_complement_test.cc 67 num_rows_ = A_->num_rows();
83 const int num_schur_rows = blhs.num_rows();
numeric_diff_cost_function_test.cc 152 template<int num_rows, int num_cols>
153 class SizeTestingCostFunction : public SizedCostFunction<num_rows, num_cols> {
suitesparse.cc 58 triplet.nrow = A->num_rows();
78 triplet.ncol = A->num_rows(); // swap row and columns
99 m.ncol = A->num_rows();
block_jacobi_preconditioner.cc 45 : num_rows_(A.num_rows()),
iterative_schur_complement_solver.cc 97 reduced_linear_system_solution_.resize(schur_complement_->num_rows());
  /external/chromium_org/third_party/angle/tests/compiler_tests/
VariablePacker_test.cpp 75 int num_rows = VariablePacker::GetNumRows(type); local
83 int num_vars = kMaxRows / num_rows;
94 num_vars = kMaxRows / num_rows *
  /external/chromium_org/third_party/libwebp/dec/
io.c 173 const uint8_t** alpha, int* const num_rows) {
175 *num_rows = io->mb_h;
182 --*num_rows;
192 *num_rows = io->crop_bottom - io->crop_top - start_y;
206 int num_rows; local
207 const int start_y = GetAlphaSourceRow(io, &alpha, &num_rows);
213 for (j = 0; j < num_rows; ++j) {
225 mb_w, num_rows, buf->stride);
237 int num_rows; local
238 const int start_y = GetAlphaSourceRow(io, &alpha, &num_rows);
    [all...]
vp8l.c 574 int mb_w, int num_rows) {
576 while (num_rows-- > 0) {
635 static void ApplyInverseTransforms(VP8LDecoder* const dec, int num_rows,
638 const int cache_pixs = dec->width_ * num_rows;
640 const int end_row = start_row + num_rows;
655 static void ApplyInverseTransformsAlpha(VP8LDecoder* const dec, int num_rows,
658 const int end_row = start_row + num_rows;
672 const int num_rows = row - dec->last_row_; local
674 if (num_rows <= 0) return; // Nothing to be done.
675 ApplyInverseTransforms(dec, num_rows, rows)
727 const int num_rows = row - dec->last_row_; local
1227 const int num_rows = row - dec->last_row_; local
    [all...]
  /external/chromium_org/third_party/webrtc/modules/rtp_rtcp/source/
forward_error_correction_internal.cc 35 // \param[in] num_rows The number of rows of the input mask.
37 // [0, num_rows * num_sub_mask_bytes]
39 // [0, x * num_mask_bytes], where x >= num_rows.
40 void FitSubMask(int num_mask_bytes, int num_sub_mask_bytes, int num_rows,
43 memcpy(packet_mask, sub_mask, num_rows * num_sub_mask_bytes);
45 for (int i = 0; i < num_rows; ++i) {
  /external/webp/src/dec/
io.c 173 const uint8_t** alpha, int* const num_rows) {
175 *num_rows = io->mb_h;
182 --*num_rows;
192 *num_rows = io->crop_bottom - io->crop_top - start_y;
206 int num_rows; local
207 const int start_y = GetAlphaSourceRow(io, &alpha, &num_rows);
213 for (j = 0; j < num_rows; ++j) {
225 mb_w, num_rows, buf->stride);
237 int num_rows; local
238 const int start_y = GetAlphaSourceRow(io, &alpha, &num_rows);
    [all...]
vp8l.c 574 int mb_w, int num_rows) {
576 while (num_rows-- > 0) {
635 static void ApplyInverseTransforms(VP8LDecoder* const dec, int num_rows,
638 const int cache_pixs = dec->width_ * num_rows;
640 const int end_row = start_row + num_rows;
655 static void ApplyInverseTransformsAlpha(VP8LDecoder* const dec, int num_rows,
658 const int end_row = start_row + num_rows;
672 const int num_rows = row - dec->last_row_; local
674 if (num_rows <= 0) return; // Nothing to be done.
675 ApplyInverseTransforms(dec, num_rows, rows)
727 const int num_rows = row - dec->last_row_; local
1227 const int num_rows = row - dec->last_row_; local
    [all...]
  /external/libhevc/decoder/
ihevcd_decode.c 90 WORD32 num_rows);
718 WORD32 num_rows = 1 << ps_sps->i1_log2_ctb_size; local
724 num_rows = MIN(num_rows, (ps_codec->i4_disp_ht - (s_job.i2_ctb_y << ps_sps->i1_log2_ctb_size)));
725 if(num_rows < 0)
726 num_rows = 0;
733 num_rows);
  /external/jpeg/
jdmerge.c 171 JDIMENSION num_rows; /* number of rows returned to caller */ local
183 num_rows = 1;
187 num_rows = 2;
189 if (num_rows > upsample->rows_to_go)
190 num_rows = upsample->rows_to_go;
193 if (num_rows > out_rows_avail)
194 num_rows = out_rows_avail;
197 if (num_rows > 1) {
208 *out_row_ctr += num_rows;
209 upsample->rows_to_go -= num_rows;
    [all...]
jpegint.h 87 JDIMENSION output_row, int num_rows));
280 JSAMPARRAY output_buf, int num_rows));
288 int num_rows));
408 int num_rows, JDIMENSION num_cols));
  /external/chromium_org/media/base/
video_util.cc 191 int num_rows = height; local
231 num_rows = num_cols = height;
235 num_rows = num_cols = width;
261 for (int row = 0; row < num_rows; ++row) {
  /external/chromium_org/third_party/libjpeg_turbo/
jpegint.h 88 JDIMENSION output_row, int num_rows));
251 JSAMPARRAY output_buf, int num_rows));
259 int num_rows));
381 int num_rows, JDIMENSION num_cols));
  /external/chromium_org/third_party/libwebp/dsp/
alpha_processing.c 184 void WebPMultARGBRows(uint8_t* ptr, int stride, int width, int num_rows,
187 for (n = 0; n < num_rows; ++n) {
195 int width, int num_rows, int inverse) {
197 for (n = 0; n < num_rows; ++n) {
  /external/pdfium/core/include/thirdparties/libjpeg/
jpegint.h 87 JDIMENSION output_row, int num_rows));
250 JSAMPARRAY output_buf, int num_rows));
258 int num_rows));
375 int num_rows, JDIMENSION num_cols));
  /external/pdfium/core/src/fxcodec/libjpeg/
jpegint.h 87 JDIMENSION output_row, int num_rows));
250 JSAMPARRAY output_buf, int num_rows));
258 int num_rows));
375 int num_rows, JDIMENSION num_cols));

Completed in 930 milliseconds

1 2 3 45 6 7 8