Lines Matching defs:width
155 int i, j, fsi, hpi, width, dstWi;
186 width = filter_sizes[fsi];
190 ctx->hLumFilterSize = ctx->hChrFilterSize = width;
209 for (j = 0; j < width; j++) {
210 filter[i * width + j] = -((1 << 14) / (width - 1));
212 filter[i * width + (rnd() % width)] = ((1 << 15) - 1);
220 filter[SRC_PIXELS * width + i] = rnd();
226 ff_shuffle_filter_coefficients(ctx, filterPosAvx, width, filterAvx2, SRC_PIXELS);
228 if (check_func(ctx->hcScale, "hscale_%d_to_%d__fs_%d_dstW_%d", ctx->srcBpc, ctx->dstBpc + 1, width, ctx->dstW)) {
232 call_ref(NULL, dst0, ctx->dstW, src, filter, filterPos, width);
233 call_new(NULL, dst1, ctx->dstW, src, filterAvx2, filterPosAvx, width);
236 bench_new(NULL, dst0, ctx->dstW, src, filter, filterPosAvx, width);