Searched refs:stepx (Results 1 – 6 of 6) sorted by relevance
/external/libhevc/encoder/arm/ |
D | ihevce_coarse_layer_sad_neon.c | 116 S32 stepy, stepx, step_shift_x, step_shift_y; in hme_store_4x4_sads_high_speed_neon() local 143 stepx = stepy = HME_COARSE_STEP_SIZE_HIGH_SPEED; in hme_store_4x4_sads_high_speed_neon() 152 ASSERT(4 == stepx); in hme_store_4x4_sads_high_speed_neon() 188 if((mvx + (stepx * 4)) <= ps_range_prms->i2_max_x) // 16x4 in hme_store_4x4_sads_high_speed_neon() 207 mvx += stepx * 4; in hme_store_4x4_sads_high_speed_neon() 209 else if((mvx + (stepx * 2)) <= ps_range_prms->i2_max_x) // 8x4 in hme_store_4x4_sads_high_speed_neon() 226 mvx += stepx * 2; in hme_store_4x4_sads_high_speed_neon() 228 else if((mvx + stepx) <= ps_range_prms->i2_max_x) // 4x4 in hme_store_4x4_sads_high_speed_neon() 243 mvx += stepx; in hme_store_4x4_sads_high_speed_neon() 269 S32 stepy, stepx, step_shift_x, step_shift_y; in hme_store_4x4_sads_high_quality_neon() local [all …]
|
/external/libhevc/encoder/ |
D | hme_coarse.c | 383 S32 stepy, stepx, best_mv_y_4x8, best_mv_x_4x8, best_mv_y_8x4, best_mv_x_8x4; in hme_combine_4x4_sads_and_compute_cost_high_quality() local 393 stepx = stepy = HME_COARSE_STEP_SIZE_HIGH_QUALITY; in hme_combine_4x4_sads_and_compute_cost_high_quality() 405 for(mvx = ps_mv_range->i2_min_x; mvx < ps_mv_range->i2_max_x; mvx += stepx) in hme_combine_4x4_sads_and_compute_cost_high_quality() 460 S32 stepy, stepx, best_mv_y_4x8, best_mv_x_4x8, best_mv_y_8x4, best_mv_x_8x4; in hme_combine_4x4_sads_and_compute_cost_high_speed() local 470 stepx = stepy = HME_COARSE_STEP_SIZE_HIGH_SPEED; in hme_combine_4x4_sads_and_compute_cost_high_speed() 489 for(mvx = ps_mv_range->i2_min_x; mvx < ps_mv_range->i2_max_x; mvx += stepx) in hme_combine_4x4_sads_and_compute_cost_high_speed() 577 S32 stepy, stepx, step_shift_x, step_shift_y; in hme_store_4x4_sads_high_quality() local 605 stepx = stepy = HME_COARSE_STEP_SIZE_HIGH_QUALITY; in hme_store_4x4_sads_high_quality() 617 for(mvx = ps_range_prms->i2_min_x; mvx < ps_range_prms->i2_max_x; mvx += stepx) in hme_store_4x4_sads_high_quality() 660 S32 stepy, stepx, step_shift_x, step_shift_y; in hme_store_4x4_sads_high_speed() local [all …]
|
/external/pdfium/third_party/libpng16/ |
D | pngread.c | 2980 unsigned int startx, stepx, stepy; in png_image_read_and_map() local 2990 stepx = PNG_PASS_COL_OFFSET(pass); in png_image_read_and_map() 2999 stepx = stepy = 1; in png_image_read_and_map() 3019 for (; outrow < end_row; outrow += stepx) in png_image_read_and_map() 3048 for (; outrow < end_row; outrow += stepx) in png_image_read_and_map() 3065 for (; outrow < end_row; outrow += stepx) in png_image_read_and_map() 3073 for (; outrow < end_row; outrow += stepx) in png_image_read_and_map() 3297 unsigned int startx, stepx, stepy; in png_image_read_composite() local 3307 stepx = PNG_PASS_COL_OFFSET(pass) * channels; in png_image_read_composite() 3316 stepx = channels; in png_image_read_composite() [all …]
|
/external/libpng/ |
D | pngread.c | 2980 unsigned int startx, stepx, stepy; in png_image_read_and_map() local 2990 stepx = PNG_PASS_COL_OFFSET(pass); in png_image_read_and_map() 2999 stepx = stepy = 1; in png_image_read_and_map() 3019 for (; outrow < end_row; outrow += stepx) in png_image_read_and_map() 3048 for (; outrow < end_row; outrow += stepx) in png_image_read_and_map() 3065 for (; outrow < end_row; outrow += stepx) in png_image_read_and_map() 3073 for (; outrow < end_row; outrow += stepx) in png_image_read_and_map() 3297 unsigned int startx, stepx, stepy; in png_image_read_composite() local 3307 stepx = PNG_PASS_COL_OFFSET(pass) * channels; in png_image_read_composite() 3316 stepx = channels; in png_image_read_composite() [all …]
|
/external/libvpx/libvpx/third_party/libyuv/source/ |
D | scale_msa.cc | 112 int32_t stepx = src_stepx * 4; in ScaleARGBRowDownEven_MSA() local 118 data1 = LW(src_argb + stepx); in ScaleARGBRowDownEven_MSA() 119 data2 = LW(src_argb + stepx * 2); in ScaleARGBRowDownEven_MSA() 120 data3 = LW(src_argb + stepx * 3); in ScaleARGBRowDownEven_MSA() 125 src_argb += stepx * 4; in ScaleARGBRowDownEven_MSA() 137 int32_t stepx = src_stepx * 4; in ScaleARGBRowDownEvenBox_MSA() local 146 data1 = LD(src_argb + stepx); in ScaleARGBRowDownEvenBox_MSA() 147 data2 = LD(src_argb + stepx * 2); in ScaleARGBRowDownEvenBox_MSA() 148 data3 = LD(src_argb + stepx * 3); in ScaleARGBRowDownEvenBox_MSA() 154 data1 = LD(nxt_argb + stepx); in ScaleARGBRowDownEvenBox_MSA() [all …]
|
/external/libyuv/files/source/ |
D | scale_msa.cc | 112 int32_t stepx = src_stepx * 4; in ScaleARGBRowDownEven_MSA() local 118 data1 = LW(src_argb + stepx); in ScaleARGBRowDownEven_MSA() 119 data2 = LW(src_argb + stepx * 2); in ScaleARGBRowDownEven_MSA() 120 data3 = LW(src_argb + stepx * 3); in ScaleARGBRowDownEven_MSA() 125 src_argb += stepx * 4; in ScaleARGBRowDownEven_MSA() 137 int32_t stepx = src_stepx * 4; in ScaleARGBRowDownEvenBox_MSA() local 146 data1 = LD(src_argb + stepx); in ScaleARGBRowDownEvenBox_MSA() 147 data2 = LD(src_argb + stepx * 2); in ScaleARGBRowDownEvenBox_MSA() 148 data3 = LD(src_argb + stepx * 3); in ScaleARGBRowDownEvenBox_MSA() 154 data1 = LD(nxt_argb + stepx); in ScaleARGBRowDownEvenBox_MSA() [all …]
|