Searched refs:fy_scale (Results 1 – 8 of 8) sorted by relevance
/external/webp/src/dsp/ |
D | rescaler_neon.c | 66 const uint32_t fy_scale = wrk->fy_scale; in RescalerExportRowExpand_NEON() local 67 const int32x4_t fy_scale_half = MAKE_HALF_CST(fy_scale); in RescalerExportRowExpand_NEON() 85 const int v = (int)MULT_FIX_C(J, fy_scale); in RescalerExportRowExpand_NEON() 108 const int v = (int)MULT_FIX_C(J, fy_scale); in RescalerExportRowExpand_NEON() 122 const uint32_t yscale = wrk->fy_scale * (-wrk->y_accum); in RescalerExportRowShrink_NEON()
|
D | rescaler_mips_dsp_r2.c | 33 const int yscale = wrk->fy_scale * (-wrk->y_accum); in ExportRowShrink_MIPSdspR2() 173 const int temp7 = (int)wrk->fy_scale; in ExportRowExpand_MIPSdspR2() 218 const int v = (int)MULT_FIX(J, wrk->fy_scale); in ExportRowExpand_MIPSdspR2() 290 const int v = (int)MULT_FIX(J, wrk->fy_scale); in ExportRowExpand_MIPSdspR2()
|
D | rescaler.c | 110 const int v = (int)MULT_FIX(J, wrk->fy_scale); in WebPRescalerExportRowExpand_C() 121 const int v = (int)MULT_FIX(J, wrk->fy_scale); in WebPRescalerExportRowExpand_C() 134 const uint32_t yscale = wrk->fy_scale * (-wrk->y_accum); in WebPRescalerExportRowShrink_C()
|
D | rescaler_sse2.c | 235 const __m128i mult = _mm_set_epi32(0, wrk->fy_scale, 0, wrk->fy_scale); in RescalerExportRowExpand_SSE2() 248 const int v = (int)MULT_FIX(J, wrk->fy_scale); in RescalerExportRowExpand_SSE2() 282 const int v = (int)MULT_FIX(J, wrk->fy_scale); in RescalerExportRowExpand_SSE2() 295 const uint32_t yscale = wrk->fy_scale * (-wrk->y_accum); in RescalerExportRowShrink_SSE2()
|
D | rescaler_msa.c | 119 const v4u32 scale = (v4u32)__msa_fill_w(wrk->fy_scale); in ExportRowExpand_0() 167 const int v = (int)MULT_FIX(J, wrk->fy_scale); in ExportRowExpand_0() 182 const v4u32 scale = (v4u32)__msa_fill_w(wrk->fy_scale); in ExportRowExpand_1() 242 const int v = (int)MULT_FIX(J, wrk->fy_scale); in ExportRowExpand_1() 419 const uint32_t yscale = wrk->fy_scale * (-wrk->y_accum); in RescalerExportRowShrink_MIPSdspR2()
|
D | rescaler_mips32.c | 155 const int temp2 = (int)wrk->fy_scale; in ExportRowExpand_MIPS32() 217 const int yscale = wrk->fy_scale * (-wrk->y_accum); in ExportRowShrink_MIPS32()
|
/external/webp/src/utils/ |
D | rescaler_utils.c | 65 wrk->fy_scale = WEBP_RESCALER_FRAC(1, wrk->y_sub); in WebPRescalerInit() 67 wrk->fy_scale = WEBP_RESCALER_FRAC(1, wrk->x_add); in WebPRescalerInit()
|
D | rescaler_utils.h | 36 uint32_t fy_scale; // '' member
|