HomeSort by relevance Sort by last modified time
    Searched refs:num_rows (Results 76 - 100 of 143) sorted by null

1 2 34 5 6

  /external/chromium_org/third_party/libjpeg_turbo/simd/
jsimd_arm64.c 118 JDIMENSION output_row, int num_rows)
125 JDIMENSION output_row, int num_rows)
132 JSAMPARRAY output_buf, int num_rows)
165 neonfct(cinfo->output_width, input_buf, input_row, output_buf, num_rows);
171 JSAMPARRAY output_buf, int num_rows)
175 output_buf, num_rows);
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/chromium_org/third_party/libjpeg_turbo/
jdsample.c 103 JDIMENSION num_rows; local
122 num_rows = (JDIMENSION) (cinfo->max_v_samp_factor - upsample->next_row_out);
126 if (num_rows > upsample->rows_to_go)
127 num_rows = upsample->rows_to_go;
130 if (num_rows > out_rows_avail)
131 num_rows = out_rows_avail;
136 (int) num_rows);
139 *out_row_ctr += num_rows;
140 upsample->rows_to_go -= num_rows;
141 upsample->next_row_out += num_rows;
    [all...]
jsimd_none.c 42 JDIMENSION output_row, int num_rows)
49 JDIMENSION output_row, int num_rows)
56 JSAMPARRAY output_buf, int num_rows)
jquant1.c 465 JSAMPARRAY output_buf, int num_rows)
477 for (row = 0; row < num_rows; row++) {
493 JSAMPARRAY output_buf, int num_rows)
506 for (row = 0; row < num_rows; row++) {
521 JSAMPARRAY output_buf, int num_rows)
536 for (row = 0; row < num_rows; row++) {
571 JSAMPARRAY output_buf, int num_rows)
589 for (row = 0; row < num_rows; row++) {
616 JSAMPARRAY output_buf, int num_rows)
641 for (row = 0; row < num_rows; row++)
    [all...]
  /external/jpeg/
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...]
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...]
  /external/ceres-solver/internal/ceres/
block_random_access_sparse_matrix.cc 111 DCHECK_LT(rows[pos], tsm_->num_rows());
112 DCHECK_LT(cols[pos], tsm_->num_rows());
schur_complement_solver_test.cc 59 num_rows = A->num_rows();
71 TripletSparseMatrix triplet_A(A->num_rows(),
126 int num_rows; member in class:ceres::internal::SchurComplementSolverTest
sparse_normal_cholesky_solver.cc 174 outer_product_->num_rows(),
175 outer_product_->num_rows(),
181 const Vector b = VectorRef(rhs_and_solution, outer_product_->num_rows());
206 VectorRef(rhs_and_solution, outer_product_->num_rows()) =
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/chrome/browser/ui/cocoa/autofill/
simple_grid_layout.h 81 int num_rows() const { return static_cast<int>(rows_.size()); } function in class:SimpleGridLayout
  /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/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/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) {

Completed in 1179 milliseconds

1 2 34 5 6