Home
last modified time | relevance | path

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

/external/webp/src/dec/
Dvp8l_dec.c796 int first_row, int last_row, in AlphaApplyFilter() argument
802 for (y = first_row; y < last_row; ++y) { in AlphaApplyFilter()
811 static void ExtractPalettedAlphaRows(VP8LDecoder* const dec, int last_row) { in ExtractPalettedAlphaRows() argument
820 assert(last_row <= dec->io_->crop_bottom); in ExtractPalettedAlphaRows()
821 if (last_row > first_row) { in ExtractPalettedAlphaRows()
830 VP8LColorIndexInverseTransformAlpha(transform, first_row, last_row, in ExtractPalettedAlphaRows()
832 AlphaApplyFilter(alph_dec, first_row, last_row, out, width); in ExtractPalettedAlphaRows()
834 dec->last_row_ = dec->last_out_row_ = last_row; in ExtractPalettedAlphaRows()
957 int width, int height, int last_row) { in DecodeAlphaData() argument
965 const int last = width * last_row; // Last pixel to decode in DecodeAlphaData()
[all …]
Dvp8li_dec.h110 int last_row);
/external/skia/experimental/tools/
Dgenerate-unicode-test-txt53 last_row = -1 variable
58 if last_row != row:
62 last_row = row variable
/external/skqp/experimental/tools/
Dgenerate-unicode-test-txt53 last_row = -1 variable
58 if last_row != row:
62 last_row = row variable
/external/webp/src/dsp/
Dfilters.c51 const int last_row = row + num_rows; in DoHorizontalFilter_C() local
68 while (row < last_row) { in DoHorizontalFilter_C()
88 const int last_row = row + num_rows; in DoVerticalFilter_C() local
108 while (row < last_row) { in DoVerticalFilter_C()
133 const int last_row = row + num_rows; in DoGradientFilter_C() local
150 while (row < last_row) { in DoGradientFilter_C()
Dfilters_mips_dsp_r2.c185 while (row < last_row) { \
202 const int last_row = row + num_rows; in DoHorizontalFilter_MIPSdspR2() local
234 while (row < last_row) { \
250 const int last_row = row + num_rows; in DoVerticalFilter_MIPSdspR2() local
298 while (row < last_row) { \
318 const int last_row = row + num_rows; in DoGradientFilter_MIPSdspR2() local
Dfilters_neon.c73 const int last_row = row + num_rows; in DoHorizontalFilter_NEON() local
88 while (row < last_row) { in DoHorizontalFilter_NEON()
112 const int last_row = row + num_rows; in DoVerticalFilter_NEON() local
128 while (row < last_row) { in DoVerticalFilter_NEON()
174 const int last_row = row + num_rows; in DoGradientFilter_NEON() local
189 while (row < last_row) { in DoGradientFilter_NEON()
Dfilters_sse2.c80 const int last_row = row + num_rows; in DoHorizontalFilter_SSE2() local
95 while (row < last_row) { in DoHorizontalFilter_SSE2()
113 const int last_row = row + num_rows; in DoVerticalFilter_SSE2() local
129 while (row < last_row) { in DoVerticalFilter_SSE2()
175 const int last_row = row + num_rows; in DoGradientFilter_SSE2() local
190 while (row < last_row) { in DoGradientFilter_SSE2()
/external/webp/src/enc/
Danalysis_enc.c485 const int last_row = enc->mb_h_; in VP8EncAnalyze() local
487 const int split_row = (9 * last_row + 15) >> 4; in VP8EncAnalyze()
488 const int total_mb = last_row * enc->mb_w_; in VP8EncAnalyze()
503 InitSegmentJob(enc, &side_job, split_row, last_row); in VP8EncAnalyze()
518 InitSegmentJob(enc, &main_job, 0, last_row); in VP8EncAnalyze()
/external/libjpeg-turbo/
Djdcoefct.c421 boolean first_row, last_row; in decompress_smooth_data() local
459 last_row = FALSE; in decompress_smooth_data()
465 last_row = TRUE; in decompress_smooth_data()
500 if (last_row && block_row == block_rows-1) in decompress_smooth_data()
/external/llvm/lib/DebugInfo/DWARF/
DDWARFDebugLine.cpp537 RowIter last_row = Rows.begin() + seq.LastRowIndex; in findRowInSeq() local
539 first_row, last_row, row, DWARFDebugLine::Row::orderByAddress); in findRowInSeq()
540 if (row_pos == last_row) { in findRowInSeq()
/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/eigen/Eigen/src/OrderingMethods/
DEigen_Colamd.h503 IndexType last_row ; /* previous row */ in init_rows_cols() local
542 last_row = -1 ; in init_rows_cols()
562 if (row <= last_row || Row [row].shared2.mark == col) in init_rows_cols()
587 last_row = row ; in init_rows_cols()
/external/mesa3d/src/mesa/program/
Dprogram_parse.y2330 const int last_row = state_tokens[3];
2332 for (row = first_row; row <= last_row; row++) {
2386 const int last_row = state_tokens[3];
2388 for (row = first_row; row <= last_row; row++) {
/external/mesa3d/src/compiler/glsl/
Dast_function.cpp1561 const unsigned last_row = MIN2(src_matrix->type->vector_elements, in emit_inline_matrix_constructor() local
1567 for (unsigned i = 1; i < last_row; i++) in emit_inline_matrix_constructor()
1570 const unsigned write_mask = (1U << last_row) - 1; in emit_inline_matrix_constructor()
1589 rhs = new(ctx) ir_swizzle(rhs_col, swiz, last_row); in emit_inline_matrix_constructor()