Searched refs:fy_scale (Results 1 – 9 of 9) sorted by relevance
/external/webp/src/dsp/ |
D | rescaler_neon.c | 66 const uint32_t fy_scale = wrk->fy_scale; in RescalerExportRowExpand() local 67 const int32x4_t fy_scale_half = MAKE_HALF_CST(fy_scale); in RescalerExportRowExpand() 85 const int v = (int)MULT_FIX_C(J, fy_scale); in RescalerExportRowExpand() 108 const int v = (int)MULT_FIX_C(J, fy_scale); in RescalerExportRowExpand() 122 const uint32_t yscale = wrk->fy_scale * (-wrk->y_accum); in RescalerExportRowShrink()
|
D | rescaler_mips_dsp_r2.c | 33 const int yscale = wrk->fy_scale * (-wrk->y_accum); in ExportRowShrink() 173 const int temp7 = (int)wrk->fy_scale; in ExportRowExpand() 218 const int v = (int)MULT_FIX(J, wrk->fy_scale); in ExportRowExpand() 290 const int v = (int)MULT_FIX(J, wrk->fy_scale); in ExportRowExpand()
|
D | rescaler.c | 108 const int v = (int)MULT_FIX(J, wrk->fy_scale); in WebPRescalerExportRowExpandC() 119 const int v = (int)MULT_FIX(J, wrk->fy_scale); in WebPRescalerExportRowExpandC() 132 const uint32_t yscale = wrk->fy_scale * (-wrk->y_accum); in WebPRescalerExportRowShrinkC()
|
D | rescaler_sse2.c | 234 const __m128i mult = _mm_set_epi32(0, wrk->fy_scale, 0, wrk->fy_scale); in RescalerExportRowExpandSSE2() 247 const int v = (int)MULT_FIX(J, wrk->fy_scale); in RescalerExportRowExpandSSE2() 281 const int v = (int)MULT_FIX(J, wrk->fy_scale); in RescalerExportRowExpandSSE2() 294 const uint32_t yscale = wrk->fy_scale * (-wrk->y_accum); in RescalerExportRowShrinkSSE2()
|
D | rescaler_mips32.c | 153 const int temp2 = (int)wrk->fy_scale; in ExportRowExpand() 215 const int yscale = wrk->fy_scale * (-wrk->y_accum); in ExportRowShrink()
|
/external/webp/src/utils/ |
D | rescaler.c | 61 wrk->fy_scale = WEBP_RESCALER_FRAC(1, wrk->y_sub); in WebPRescalerInit() 63 wrk->fy_scale = WEBP_RESCALER_FRAC(1, wrk->x_add); in WebPRescalerInit()
|
D | rescaler.h | 36 uint32_t fy_scale; // '' member
|
/external/opencv3/3rdparty/libwebp/utils/ |
D | rescaler.c | 46 wrk->fy_scale = (1 << RFIX) / y_sub; in WebPRescalerInit() 103 const int yscale = wrk->fy_scale * (-wrk->y_accum); in WebPRescalerExportRow()
|
D | rescaler.h | 27 int fy_scale, fx_scale; // fixed-point scaling factor member
|