Lines Matching refs:in_near

188    uint8_t *(*resample_row_hv_2_kernel)(uint8_t *out, uint8_t *in_near,
1980 static uint8_t *rjpeg_resample_row_1(uint8_t *out, uint8_t *in_near, in rjpeg_resample_row_1() argument
1987 return in_near; in rjpeg_resample_row_1()
1990 static uint8_t* rjpeg_resample_row_v_2(uint8_t *out, uint8_t *in_near, in rjpeg_resample_row_v_2() argument
1997 out[i] = RJPEG_DIV4(3*in_near[i] + in_far[i] + 2); in rjpeg_resample_row_v_2()
2001 static uint8_t* rjpeg_resample_row_h_2(uint8_t *out, uint8_t *in_near, in rjpeg_resample_row_h_2() argument
2006 uint8_t *input = in_near; in rjpeg_resample_row_h_2()
2033 static uint8_t *rjpeg_resample_row_hv_2(uint8_t *out, uint8_t *in_near, in rjpeg_resample_row_hv_2() argument
2040 out[0] = out[1] = RJPEG_DIV4(3*in_near[0] + in_far[0] + 2); in rjpeg_resample_row_hv_2()
2044 t1 = 3*in_near[0] + in_far[0]; in rjpeg_resample_row_hv_2()
2050 t1 = 3*in_near[i]+in_far[i]; in rjpeg_resample_row_hv_2()
2062 static uint8_t *rjpeg_resample_row_hv_2_simd(uint8_t *out, uint8_t *in_near, in rjpeg_resample_row_hv_2_simd() argument
2070 out[0] = out[1] = RJPEG_DIV4(3*in_near[0] + in_far[0] + 2); in rjpeg_resample_row_hv_2_simd()
2074 t1 = 3*in_near[0] + in_far[0]; in rjpeg_resample_row_hv_2_simd()
2086 __m128i nearb = _mm_loadl_epi64((__m128i *) (in_near + i)); in rjpeg_resample_row_hv_2_simd()
2102 __m128i next = _mm_insert_epi16(nxt0, 3*in_near[i+8] + in_far[i+8], 7); in rjpeg_resample_row_hv_2_simd()
2129 uint8x8_t nearb = vld1_u8(in_near + i); in rjpeg_resample_row_hv_2_simd()
2142 int16x8_t next = vsetq_lane_s16(3*in_near[i+8] + in_far[i+8], nxt0, 7); in rjpeg_resample_row_hv_2_simd()
2163 t1 = 3*in_near[i+7] + in_far[i+7]; in rjpeg_resample_row_hv_2_simd()
2167 t1 = 3*in_near[i] + in_far[i]; in rjpeg_resample_row_hv_2_simd()
2173 t1 = 3*in_near[i]+in_far[i]; in rjpeg_resample_row_hv_2_simd()
2186 uint8_t *in_near, uint8_t *in_far, int w, int hs) in rjpeg_resample_row_generic() argument
2194 out[i*hs+j] = in_near[i]; in rjpeg_resample_row_generic()