Searched refs:x_out_max (Results 1 – 6 of 6) sorted by relevance
/external/webp/src/dsp/ |
D | rescaler_mips_dsp_r2.c | 29 const int x_out_max = wrk->dst_width * wrk->num_channels; in ExportRowShrink() local 36 const int temp6 = (x_out_max & ~0x3) << 2; in ExportRowShrink() 42 if (x_out_max >= 4) { in ExportRowShrink() 107 for (i = 0; i < (x_out_max & 0x3); ++i) { in ExportRowShrink() 115 if (x_out_max >= 4) { in ExportRowShrink() 156 for (i = 0; i < (x_out_max & 0x3); ++i) { in ExportRowShrink() 169 const int x_out_max = wrk->dst_width * wrk->num_channels; in ExportRowExpand() local 172 const int temp6 = (x_out_max & ~0x3) << 2; in ExportRowExpand() 179 if (x_out_max >= 4) { in ExportRowExpand() 216 for (i = 0; i < (x_out_max & 0x3); ++i) { in ExportRowExpand() [all …]
|
D | rescaler.c | 30 const int x_out_max = wrk->dst_width * wrk->num_channels; in WebPRescalerImportRowExpandC() local 45 if (x_out >= x_out_max) break; in WebPRescalerImportRowExpandC() 61 const int x_out_max = wrk->dst_width * wrk->num_channels; in WebPRescalerImportRowShrinkC() local 70 while (x_out < x_out_max) { in WebPRescalerImportRowShrinkC() 99 const int x_out_max = wrk->dst_width * wrk->num_channels; in WebPRescalerExportRowExpandC() local 106 for (x_out = 0; x_out < x_out_max; ++x_out) { in WebPRescalerExportRowExpandC() 115 for (x_out = 0; x_out < x_out_max; ++x_out) { in WebPRescalerExportRowExpandC() 130 const int x_out_max = wrk->dst_width * wrk->num_channels; in WebPRescalerExportRowShrinkC() local 137 for (x_out = 0; x_out < x_out_max; ++x_out) { in WebPRescalerExportRowShrinkC() 145 for (x_out = 0; x_out < x_out_max; ++x_out) { in WebPRescalerExportRowShrinkC()
|
D | rescaler_mips32.c | 26 const int x_out_max = wrk->dst_width * wrk->num_channels; in ImportRowShrink() local 41 int loop_c = x_out_max - channel; in ImportRowShrink() 85 const int x_out_max = wrk->dst_width * wrk->num_channels; in ImportRowExpand() local 137 [x_out_max]"r"(x_out_max) in ImportRowExpand() 150 const int x_out_max = wrk->dst_width * wrk->num_channels; in ExportRowExpand() local 154 const int temp6 = x_out_max << 2; in ExportRowExpand() 211 const int x_out_max = wrk->dst_width * wrk->num_channels; in ExportRowShrink() local 218 const int temp6 = x_out_max << 2; in ExportRowShrink()
|
D | rescaler_neon.c | 63 const int x_out_max = wrk->dst_width * wrk->num_channels; in RescalerExportRowExpand() local 64 const int max_span = x_out_max & ~7; in RescalerExportRowExpand() 83 for (; x_out < x_out_max; ++x_out) { in RescalerExportRowExpand() 104 for (; x_out < x_out_max; ++x_out) { in RescalerExportRowExpand() 119 const int x_out_max = wrk->dst_width * wrk->num_channels; in RescalerExportRowShrink() local 120 const int max_span = x_out_max & ~7; in RescalerExportRowShrink() 146 for (; x_out < x_out_max; ++x_out) { in RescalerExportRowShrink() 164 for (; x_out < x_out_max; ++x_out) { in RescalerExportRowShrink()
|
D | rescaler_sse2.c | 233 const int x_out_max = wrk->dst_width * wrk->num_channels; in RescalerExportRowExpandSSE2() local 241 for (x_out = 0; x_out + 8 <= x_out_max; x_out += 8) { in RescalerExportRowExpandSSE2() 246 for (; x_out < x_out_max; ++x_out) { in RescalerExportRowExpandSSE2() 258 for (x_out = 0; x_out + 8 <= x_out_max; x_out += 8) { in RescalerExportRowExpandSSE2() 278 for (; x_out < x_out_max; ++x_out) { in RescalerExportRowExpandSSE2() 293 const int x_out_max = wrk->dst_width * wrk->num_channels; in RescalerExportRowShrinkSSE2() local 304 for (x_out = 0; x_out + 8 <= x_out_max; x_out += 8) { in RescalerExportRowShrinkSSE2() 330 for (; x_out < x_out_max; ++x_out) { in RescalerExportRowShrinkSSE2() 341 for (x_out = 0; x_out + 8 <= x_out_max; x_out += 8) { in RescalerExportRowShrinkSSE2() 348 for (; x_out < x_out_max; ++x_out) { in RescalerExportRowShrinkSSE2()
|
D | rescaler_msa.c | 252 const int x_out_max = wrk->dst_width * wrk->num_channels; in RescalerExportRowExpand() local 259 ExportRowExpand_0(frow, dst, x_out_max, wrk); in RescalerExportRowExpand() 261 ExportRowExpand_1(frow, irow, dst, x_out_max, wrk); in RescalerExportRowExpand() 417 const int x_out_max = wrk->dst_width * wrk->num_channels; in RescalerExportRowShrink() local 424 ExportRowShrink_0(frow, irow, dst, x_out_max, yscale, wrk); in RescalerExportRowShrink() 426 ExportRowShrink_1(irow, dst, x_out_max, wrk); in RescalerExportRowShrink()
|