Home
last modified time | relevance | path

Searched refs:last_row (Results 1 – 23 of 23) sorted by relevance

/external/opencv3/modules/core/include/opencv2/core/cuda/
Dborder_interpolate.hpp181 … explicit __host__ __device__ __forceinline__ BrdColReplicate(int height) : last_row(height - 1) {} in BrdColReplicate()
182 …ame U> __host__ __device__ __forceinline__ BrdColReplicate(int height, U) : last_row(height - 1) {} in BrdColReplicate()
191 return ::min(y, last_row); in idx_row_high()
214 int last_row; member
221 …__host__ __device__ __forceinline__ BrdReplicate(int height, int width) : last_row(height - 1), la… in BrdReplicate()
222 …t__ __device__ __forceinline__ BrdReplicate(int height, int width, U) : last_row(height - 1), last… in BrdReplicate()
231 return ::min(y, last_row); in idx_row_high()
264 int last_row; member
315 …explicit __host__ __device__ __forceinline__ BrdColReflect101(int height) : last_row(height - 1) {} in BrdColReflect101()
316 …me U> __host__ __device__ __forceinline__ BrdColReflect101(int height, U) : last_row(height - 1) {} in BrdColReflect101()
[all …]
/external/chromium-trace/catapult/dashboard/dashboard/
Dmr.py101 last_row = query.get()
102 if not last_row:
108 if last_row.timestamp < now - _OLDEST_REVISION_DELTA:
112 for operation in _CreateStoppageAlerts(entity, last_row):
116 def _CreateStoppageAlerts(test, last_row): argument
141 if last_row.timestamp >= earliest_warn_time:
143 if stoppage_alert.GetStoppageAlert(test.test_path, last_row.revision):
145 new_alert = stoppage_alert.CreateStoppageAlert(test, last_row)
/external/webp/src/dsp/
Dfilters.c50 const int last_row = row + num_rows; in DoHorizontalFilter() local
67 while (row < last_row) { in DoHorizontalFilter()
87 const int last_row = row + num_rows; in DoVerticalFilter() local
107 while (row < last_row) { in DoVerticalFilter()
130 const int last_row = row + num_rows; in DoGradientFilter() local
147 while (row < last_row) { in DoGradientFilter()
Dfilters_mips_dsp_r2.c196 while (row < last_row) { \
212 const int last_row = row + num_rows; in DoHorizontalFilter() local
252 while (row < last_row) { \
267 const int last_row = row + num_rows; in DoVerticalFilter() local
325 while (row < last_row) { \
346 const int last_row = row + num_rows; in DoGradientFilter() local
Dfilters_sse2.c123 const int last_row = row + num_rows; in DoHorizontalFilter() local
140 while (row < last_row) { in DoHorizontalFilter()
160 const int last_row = row + num_rows; in DoVerticalFilter() local
180 while (row < last_row) { in DoVerticalFilter()
266 const int last_row = row + num_rows; in DoGradientFilter() local
281 while (row < last_row) { in DoGradientFilter()
/external/opencv3/modules/video/src/
Dtvl1flow.cpp688 const int last_row = src.rows - 1; in centeredGradient() local
699 parallel_for_(Range(1, last_row), body); in centeredGradient()
708 dx(last_row, x) = 0.5f * (src(last_row, x + 1) - src(last_row, x - 1)); in centeredGradient()
709 dy(last_row, x) = 0.5f * (src(last_row, x) - src(last_row - 1, x)); in centeredGradient()
713 for (int y = 1; y < last_row; ++y) in centeredGradient()
729 dx(last_row, 0) = 0.5f * (src(last_row, 1) - src(last_row, 0)); in centeredGradient()
730 dy(last_row, 0) = 0.5f * (src(last_row, 0) - src(last_row - 1, 0)); in centeredGradient()
732 dx(last_row, last_col) = 0.5f * (src(last_row, last_col) - src(last_row, last_col - 1)); in centeredGradient()
733 dy(last_row, last_col) = 0.5f * (src(last_row, last_col) - src(last_row - 1, last_col)); in centeredGradient()
774 const int last_row = src.rows - 1; in forwardGradient() local
[all …]
/external/webp/src/enc/
Danalysis.c453 const int last_row = enc->mb_h_; in VP8EncAnalyze() local
455 const int split_row = (9 * last_row + 15) >> 4; in VP8EncAnalyze()
456 const int total_mb = last_row * enc->mb_w_; in VP8EncAnalyze()
471 InitSegmentJob(enc, &side_job, split_row, last_row); in VP8EncAnalyze()
486 InitSegmentJob(enc, &main_job, 0, last_row); in VP8EncAnalyze()
/external/opencv3/modules/video/src/opencl/
Doptical_flow_farneback.cl135 inline int idx_row_low(const int y, const int last_row)
137 return abs(y) % (last_row + 1);
140 inline int idx_row_high(const int y, const int last_row)
142 return abs(last_row - abs(last_row - y)) % (last_row + 1);
/external/webp/src/dec/
Dvp8li.h111 int last_row);
Dvp8l.c919 int width, int height, int last_row) { in DecodeAlphaData() argument
928 const int last = width * last_row; // Last pixel to decode in DecodeAlphaData()
933 assert(last_row <= height); in DecodeAlphaData()
1022 int width, int height, int last_row, in DecodeImageData() argument
1032 uint32_t* const src_last = data + width * last_row; // Last pixel to decode in DecodeImageData()
1513 int VP8LDecodeAlphaImageStream(ALPHDecoder* const alph_dec, int last_row) { in VP8LDecodeAlphaImageStream() argument
1516 assert(last_row <= dec->height_); in VP8LDecodeAlphaImageStream()
1525 last_row) : in VP8LDecodeAlphaImageStream()
1527 last_row, ExtractAlphaRows); in VP8LDecodeAlphaImageStream()
/external/pdfium/third_party/libjpeg/
Dfpdfapi_jdcoefct.c473 boolean first_row, last_row; in decompress_smooth_data() local
508 last_row = FALSE; in decompress_smooth_data()
514 last_row = TRUE; in decompress_smooth_data()
549 if (last_row && block_row == block_rows-1) in decompress_smooth_data()
/external/opencv3/3rdparty/libjpeg/
Djdcoefct.c475 boolean first_row, last_row; in decompress_smooth_data() local
510 last_row = FALSE; in decompress_smooth_data()
516 last_row = TRUE; in decompress_smooth_data()
551 if (last_row && block_row == block_rows-1) in decompress_smooth_data()
/external/libjpeg-turbo/
Djdcoefct.c420 boolean first_row, last_row; in decompress_smooth_data() local
458 last_row = FALSE; in decompress_smooth_data()
464 last_row = TRUE; in decompress_smooth_data()
499 if (last_row && block_row == block_rows-1) in decompress_smooth_data()
/external/libhevc/decoder/
Dihevcd_fmt_conv.c794 WORD32 last_row = cur_row + num_rows; in ihevcd_fmt_conv() local
800 last_row = cur_row + MAX(num_rows, (1 << ps_sps->i1_log2_ctb_size)) + in ihevcd_fmt_conv()
802 last_ctb_y = (last_row >> ps_sps->i1_log2_ctb_size) - 1; in ihevcd_fmt_conv()
/external/llvm/lib/DebugInfo/DWARF/
DDWARFDebugLine.cpp545 RowIter last_row = Rows.begin() + seq.LastRowIndex; in findRowInSeq() local
547 first_row, last_row, row, DWARFDebugLine::Row::orderByAddress); in findRowInSeq()
548 if (row_pos == last_row) { in findRowInSeq()
/external/opencv3/3rdparty/libwebp/dec/
Dframe.c176 const int last_row = (ctx->mb_y_ >= dec->br_mb_y_ - 1); in FinishRow() local
196 if (!last_row) { in FinishRow()
241 if (!last_row) { in FinishRow()
/external/mesa3d/src/glsl/
Dast_function.cpp1059 const unsigned last_row = MIN2(src_matrix->type->vector_elements, in emit_inline_matrix_constructor() local
1065 for (unsigned i = 1; i < last_row; i++) in emit_inline_matrix_constructor()
1068 const unsigned write_mask = (1U << last_row) - 1; in emit_inline_matrix_constructor()
1086 rhs = new(ctx) ir_swizzle(rhs_col, swiz, last_row); in emit_inline_matrix_constructor()
/external/eigen/Eigen/src/OrderingMethods/
DEigen_Colamd.h510 Index last_row ; /* previous row */ in init_rows_cols() local
549 last_row = -1 ; in init_rows_cols()
569 if (row <= last_row || Row [row].shared2.mark == col) in init_rows_cols()
594 last_row = row ; in init_rows_cols()
/external/mesa3d/src/mesa/program/
Dprogram_parse.y2516 const int last_row = state_tokens[3];
2518 for (row = first_row; row <= last_row; row++) {
2572 const int last_row = state_tokens[3];
2574 for (row = first_row; row <= last_row; row++) {
/external/opencv3/modules/ts/misc/
Dtable_formatter.py353 last_row = header_rows[len(header_rows) - 1]
371 if row == last_row:
/external/pdfium/core/src/fpdfapi/fpdf_render/
Dfpdf_render_pattern.cpp471 CPDF_MeshVertex* last_row = vertex + last_index * row_verts; in DrawLatticeGouraudShading() local
479 triangle[0] = last_row[i]; in DrawLatticeGouraudShading()
481 triangle[2] = last_row[i - 1]; in DrawLatticeGouraudShading()
/external/opencv3/modules/calib3d/src/
Dcalibinit.cpp525 int last_row = (pattern_size.height-1)*pattern_size.width; in cvFindChessboardCorners() local
526 double dy0 = out_corners[last_row].y - out_corners[0].y; in cvFindChessboardCorners()
/external/opencv/cv/src/
Dcvcalibinit.cpp469 int last_row = (pattern_size.height-1)*pattern_size.width; in cvFindChessboardCorners() local
470 double dy0 = out_corners[last_row].y - out_corners[0].y; in cvFindChessboardCorners()