Home
last modified time | relevance | path

Searched refs:x_out_max (Results 1 – 6 of 6) sorted by relevance

/external/webp/src/dsp/
Drescaler_mips_dsp_r2.c31 const int x_out_max = wrk->dst_width * wrk->num_channels;
38 const int temp6 = (x_out_max & ~0x3) << 2;
44 if (x_out_max >= 4) {
109 for (i = 0; i < (x_out_max & 0x3); ++i) {
116 if (x_out_max >= 4) {
157 for (i = 0; i < (x_out_max & 0x3); ++i) {
170 const int x_out_max = wrk->dst_width * wrk->num_channels; in ExportRowExpand_MIPSdspR2() local
173 const int temp6 = (x_out_max & ~0x3) << 2; in ExportRowExpand_MIPSdspR2()
180 if (x_out_max >= 4) { in ExportRowExpand_MIPSdspR2()
217 for (i = 0; i < (x_out_max & 0x3); ++i) { in ExportRowExpand_MIPSdspR2()
[all …]
Drescaler_mips32.c27 const int x_out_max = wrk->dst_width * wrk->num_channels; in ImportRowShrink_MIPS32() local
42 int loop_c = x_out_max - channel; in ImportRowShrink_MIPS32()
87 const int x_out_max = wrk->dst_width * wrk->num_channels; in ImportRowExpand_MIPS32() local
139 [x_out_max]"r"(x_out_max) in ImportRowExpand_MIPS32()
152 const int x_out_max = wrk->dst_width * wrk->num_channels; in ExportRowExpand_MIPS32() local
156 const int temp6 = x_out_max << 2; in ExportRowExpand_MIPS32()
214 const int x_out_max = wrk->dst_width * wrk->num_channels;
221 const int temp6 = x_out_max << 2;
Drescaler.c32 const int x_out_max = wrk->dst_width * wrk->num_channels; in WebPRescalerImportRowExpand_C() local
47 if (x_out >= x_out_max) break; in WebPRescalerImportRowExpand_C()
64 const int x_out_max = wrk->dst_width * wrk->num_channels; in WebPRescalerImportRowShrink_C() local
73 while (x_out < x_out_max) { in WebPRescalerImportRowShrink_C()
102 const int x_out_max = wrk->dst_width * wrk->num_channels; in WebPRescalerExportRowExpand_C() local
109 for (x_out = 0; x_out < x_out_max; ++x_out) { in WebPRescalerExportRowExpand_C()
117 for (x_out = 0; x_out < x_out_max; ++x_out) { in WebPRescalerExportRowExpand_C()
131 const int x_out_max = wrk->dst_width * wrk->num_channels; in WebPRescalerExportRowShrink_C() local
138 for (x_out = 0; x_out < x_out_max; ++x_out) { in WebPRescalerExportRowShrink_C()
145 for (x_out = 0; x_out < x_out_max; ++x_out) { in WebPRescalerExportRowShrink_C()
Drescaler_neon.c67 const int x_out_max = wrk->dst_width * wrk->num_channels; in RescalerExportRowExpand_NEON() local
68 const int max_span = x_out_max & ~7; in RescalerExportRowExpand_NEON()
87 for (; x_out < x_out_max; ++x_out) { in RescalerExportRowExpand_NEON()
107 for (; x_out < x_out_max; ++x_out) { in RescalerExportRowExpand_NEON()
121 const int x_out_max = wrk->dst_width * wrk->num_channels; in RescalerExportRowShrink_NEON() local
122 const int max_span = x_out_max & ~7; in RescalerExportRowShrink_NEON()
148 for (; x_out < x_out_max; ++x_out) { in RescalerExportRowShrink_NEON()
165 for (; x_out < x_out_max; ++x_out) { in RescalerExportRowShrink_NEON()
Drescaler_sse2.c232 const int x_out_max = wrk->dst_width * wrk->num_channels; in RescalerExportRowExpand_SSE2() local
240 for (x_out = 0; x_out + 8 <= x_out_max; x_out += 8) { in RescalerExportRowExpand_SSE2()
245 for (; x_out < x_out_max; ++x_out) { in RescalerExportRowExpand_SSE2()
256 for (x_out = 0; x_out + 8 <= x_out_max; x_out += 8) { in RescalerExportRowExpand_SSE2()
276 for (; x_out < x_out_max; ++x_out) { in RescalerExportRowExpand_SSE2()
290 const int x_out_max = wrk->dst_width * wrk->num_channels; in RescalerExportRowShrink_SSE2() local
300 for (x_out = 0; x_out + 8 <= x_out_max; x_out += 8) { in RescalerExportRowShrink_SSE2()
322 for (; x_out < x_out_max; ++x_out) { in RescalerExportRowShrink_SSE2()
332 for (x_out = 0; x_out + 8 <= x_out_max; x_out += 8) { in RescalerExportRowShrink_SSE2()
339 for (; x_out < x_out_max; ++x_out) { in RescalerExportRowShrink_SSE2()
Drescaler_msa.c251 const int x_out_max = wrk->dst_width * wrk->num_channels; in RescalerExportRowExpand_MIPSdspR2() local
258 ExportRowExpand_0(frow, dst, x_out_max, wrk); in RescalerExportRowExpand_MIPSdspR2()
260 ExportRowExpand_1(frow, irow, dst, x_out_max, wrk); in RescalerExportRowExpand_MIPSdspR2()
415 const int x_out_max = wrk->dst_width * wrk->num_channels;
422 ExportRowShrink_0(frow, irow, dst, x_out_max, yscale, wrk);
424 ExportRowShrink_1(irow, dst, x_out_max, wrk);