Searched refs:x_out_max (Results 1 – 6 of 6) sorted by relevance
/AliOS-Things-master/components/SDL2/src/image/external/libwebp-1.0.2/src/dsp/ |
A D | rescaler_mips_dsp_r2.c | 31 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) { 117 if (x_out_max >= 4) { 158 for (i = 0; i < (x_out_max & 0x3); ++i) { 175 const int temp6 = (x_out_max & ~0x3) << 2; in ExportRowExpand_MIPSdspR2() 182 if (x_out_max >= 4) { in ExportRowExpand_MIPSdspR2() 219 for (i = 0; i < (x_out_max & 0x3); ++i) { in ExportRowExpand_MIPSdspR2() 228 if (x_out_max >= 4) { in ExportRowExpand_MIPSdspR2() [all …]
|
A D | rescaler_mips32.c | 27 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;
|
A D | rescaler.c | 32 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() 118 for (x_out = 0; x_out < x_out_max; ++x_out) { in WebPRescalerExportRowExpand_C() 133 const int x_out_max = wrk->dst_width * wrk->num_channels; in WebPRescalerExportRowShrink_C() local 140 for (x_out = 0; x_out < x_out_max; ++x_out) { in WebPRescalerExportRowShrink_C() 148 for (x_out = 0; x_out < x_out_max; ++x_out) { in WebPRescalerExportRowShrink_C()
|
A D | rescaler_neon.c | 67 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() 108 for (; x_out < x_out_max; ++x_out) { in RescalerExportRowExpand_NEON() 123 const int x_out_max = wrk->dst_width * wrk->num_channels; in RescalerExportRowShrink_NEON() local 124 const int max_span = x_out_max & ~7; in RescalerExportRowShrink_NEON() 150 for (; x_out < x_out_max; ++x_out) { in RescalerExportRowShrink_NEON() 168 for (; x_out < x_out_max; ++x_out) { in RescalerExportRowShrink_NEON()
|
A D | rescaler_sse2.c | 261 const int x_out_max = wrk->dst_width * wrk->num_channels; in RescalerExportRowExpand_SSE2() local 269 for (x_out = 0; x_out + 8 <= x_out_max; x_out += 8) { in RescalerExportRowExpand_SSE2() 274 for (; x_out < x_out_max; ++x_out) { in RescalerExportRowExpand_SSE2() 286 for (x_out = 0; x_out + 8 <= x_out_max; x_out += 8) { in RescalerExportRowExpand_SSE2() 306 for (; x_out < x_out_max; ++x_out) { in RescalerExportRowExpand_SSE2() 321 const int x_out_max = wrk->dst_width * wrk->num_channels; in RescalerExportRowShrink_SSE2() local 332 for (x_out = 0; x_out + 8 <= x_out_max; x_out += 8) { in RescalerExportRowShrink_SSE2() 358 for (; x_out < x_out_max; ++x_out) { in RescalerExportRowShrink_SSE2() 369 for (x_out = 0; x_out + 8 <= x_out_max; x_out += 8) { in RescalerExportRowShrink_SSE2() 376 for (; x_out < x_out_max; ++x_out) { in RescalerExportRowShrink_SSE2()
|
A D | rescaler_msa.c | 253 const int x_out_max = wrk->dst_width * wrk->num_channels; in RescalerExportRowExpand_MIPSdspR2() local 260 ExportRowExpand_0(frow, dst, x_out_max, wrk); in RescalerExportRowExpand_MIPSdspR2() 262 ExportRowExpand_1(frow, irow, dst, x_out_max, wrk); in RescalerExportRowExpand_MIPSdspR2() 419 const int x_out_max = wrk->dst_width * wrk->num_channels; 426 ExportRowShrink_0(frow, irow, dst, x_out_max, yscale, wrk); 428 ExportRowShrink_1(irow, dst, x_out_max, wrk);
|
Completed in 9 milliseconds