Searched refs:fy_scale (Results 1 – 8 of 8) sorted by relevance
/external/webp/src/dsp/ |
D | rescaler_neon.c | 70 const uint32_t fy_scale = wrk->fy_scale; in RescalerExportRowExpand_NEON() local 71 const int32x4_t fy_scale_half = MAKE_HALF_CST(fy_scale); in RescalerExportRowExpand_NEON() 89 const int v = (int)MULT_FIX_C(J, fy_scale); in RescalerExportRowExpand_NEON() 111 const int v = (int)MULT_FIX_C(J, fy_scale); in RescalerExportRowExpand_NEON() 124 const uint32_t yscale = wrk->fy_scale * (-wrk->y_accum); in RescalerExportRowShrink_NEON()
|
D | rescaler_mips_dsp_r2.c | 35 const int yscale = wrk->fy_scale * (-wrk->y_accum); 174 const int temp7 = (int)wrk->fy_scale; in ExportRowExpand_MIPSdspR2() 219 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 | 111 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() 133 const uint32_t yscale = wrk->fy_scale * (-wrk->y_accum); in WebPRescalerExportRowShrink_C()
|
D | rescaler_sse2.c | 234 const __m128i mult = _mm_set_epi32(0, wrk->fy_scale, 0, wrk->fy_scale); in RescalerExportRowExpand_SSE2() 247 const int v = (int)MULT_FIX(J, wrk->fy_scale); in RescalerExportRowExpand_SSE2() 280 const int v = (int)MULT_FIX(J, wrk->fy_scale); in RescalerExportRowExpand_SSE2() 292 const uint32_t yscale = wrk->fy_scale * (-wrk->y_accum); in RescalerExportRowShrink_SSE2()
|
D | rescaler_mips32.c | 155 const int temp2 = (int)wrk->fy_scale; in ExportRowExpand_MIPS32() 218 const int yscale = wrk->fy_scale * (-wrk->y_accum);
|
D | rescaler_msa.c | 120 const v4u32 scale = (v4u32)__msa_fill_w(wrk->fy_scale); in ExportRowExpand_0() 168 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() 417 const uint32_t yscale = wrk->fy_scale * (-wrk->y_accum);
|
/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
|