test               67 libavcodec/mpeg12framerate.c                 AVRational test, error;
test               70 libavcodec/mpeg12framerate.c                 test = av_mul_q(ff_mpeg12_frame_rate_tab[c],
test               73 libavcodec/mpeg12framerate.c                 cmp = av_cmp_q(test, frame_rate);
test               82 libavcodec/mpeg12framerate.c                     error = av_div_q(frame_rate, test);
test               84 libavcodec/mpeg12framerate.c                     error = av_div_q(test, frame_rate);
test              118 libavcodec/tests/dct.c static void init_block(int16_t block[64], int test, int is_idct, AVLFG *prng, int vals)
test              124 libavcodec/tests/dct.c     switch (test) {
test              178 libavcodec/tests/dct.c static int dct_error(const struct algo *dct, int test, int is_idct, int speed, const int bits)
test              200 libavcodec/tests/dct.c         init_block(block1, test, is_idct, &prng, vals);
test              251 libavcodec/tests/dct.c     if (test < 2)
test              269 libavcodec/tests/dct.c     init_block(block, test, is_idct, &prng, vals);
test              470 libavcodec/tests/dct.c     int test = 1;
test              499 libavcodec/tests/dct.c         test = atoi(argv[optind]);
test              510 libavcodec/tests/dct.c                 err |= dct_error(&idct_tab[i], test, test_idct, speed, bits);
test              514 libavcodec/tests/dct.c                     err |= dct_error(&idct_tab_arch[i], test, test_idct, speed, bits);
test              519 libavcodec/tests/dct.c                 err |= dct_error(&fdct_tab[i], test, test_idct, speed, bits);
test              523 libavcodec/tests/dct.c                     err |= dct_error(&fdct_tab_arch[i], test, test_idct, speed, bits);
test              132 libavdevice/jack.c     int test, pkt_size = self->buffer_size * self->nports * sizeof(float);
test              138 libavdevice/jack.c         if ((test = av_new_packet(&pkt, pkt_size)) < 0) {
test              140 libavdevice/jack.c             return test;
test              151 libavdevice/jack.c     int i, test;
test              203 libavdevice/jack.c     if ((test = supply_new_packets(self, context))) {
test              205 libavdevice/jack.c         return test;
test              240 libavdevice/jack.c     int test;
test              242 libavdevice/jack.c     if ((test = start_jack(context)))
test              243 libavdevice/jack.c         return test;
test              268 libavdevice/jack.c     int test;
test              318 libavdevice/jack.c     if ((test = supply_new_packets(self, context)))
test              319 libavdevice/jack.c         return test;
test               59 libavfilter/vsrc_mptestsrc.c     int test;           ///< test_type
test               70 libavfilter/vsrc_mptestsrc.c     { "test", "set test to perform", OFFSET(test),  AV_OPT_TYPE_INT,   {.i64=TEST_ALL}, 0, INT_MAX, FLAGS, "test" },
test               71 libavfilter/vsrc_mptestsrc.c     { "t",    "set test to perform", OFFSET(test),  AV_OPT_TYPE_INT,   {.i64=TEST_ALL}, 0, INT_MAX, FLAGS, "test" },
test              263 libavfilter/vsrc_mptestsrc.c     MPTestContext *test = ctx->priv;
test              265 libavfilter/vsrc_mptestsrc.c     test->max_pts = test->duration >= 0 ?
test              266 libavfilter/vsrc_mptestsrc.c         av_rescale_q(test->duration, AV_TIME_BASE_Q, av_inv_q(test->frame_rate)) : -1;
test              267 libavfilter/vsrc_mptestsrc.c     test->pts = 0;
test              270 libavfilter/vsrc_mptestsrc.c            test->frame_rate.num, test->frame_rate.den,
test              271 libavfilter/vsrc_mptestsrc.c            test->duration < 0 ? -1 : test->max_pts * av_q2d(av_inv_q(test->frame_rate)));
test              280 libavfilter/vsrc_mptestsrc.c     MPTestContext *test = ctx->priv;
test              283 libavfilter/vsrc_mptestsrc.c     test->hsub = pix_desc->log2_chroma_w;
test              284 libavfilter/vsrc_mptestsrc.c     test->vsub = pix_desc->log2_chroma_h;
test              288 libavfilter/vsrc_mptestsrc.c     outlink->time_base = av_inv_q(test->frame_rate);
test              307 libavfilter/vsrc_mptestsrc.c     MPTestContext *test = outlink->src->priv;
test              310 libavfilter/vsrc_mptestsrc.c         cw = AV_CEIL_RSHIFT(w, test->hsub), ch = AV_CEIL_RSHIFT(h, test->vsub);
test              311 libavfilter/vsrc_mptestsrc.c     uint64_t frame = outlink->frame_count_in / test->max_frames;
test              312 libavfilter/vsrc_mptestsrc.c     uint64_t mod = outlink->frame_count_in % test->max_frames;
test              313 libavfilter/vsrc_mptestsrc.c     enum test_type tt = test->test;
test              316 libavfilter/vsrc_mptestsrc.c     if (test->max_pts >= 0 && test->pts > test->max_pts)
test              321 libavfilter/vsrc_mptestsrc.c     picref->pts = test->pts++;
test              108 libavfilter/vsrc_testsrc.c     TestSourceContext *test = ctx->priv;
test              110 libavfilter/vsrc_testsrc.c     test->time_base = av_inv_q(test->frame_rate);
test              111 libavfilter/vsrc_testsrc.c     test->nb_frame = 0;
test              112 libavfilter/vsrc_testsrc.c     test->pts = 0;
test              115 libavfilter/vsrc_testsrc.c            test->w, test->h, test->frame_rate.num, test->frame_rate.den,
test              116 libavfilter/vsrc_testsrc.c            test->duration < 0 ? -1 : (double)test->duration/1000000,
test              117 libavfilter/vsrc_testsrc.c            test->sar.num, test->sar.den);
test              123 libavfilter/vsrc_testsrc.c     TestSourceContext *test = ctx->priv;
test              125 libavfilter/vsrc_testsrc.c     av_frame_free(&test->picref);
test              130 libavfilter/vsrc_testsrc.c     TestSourceContext *test = outlink->src->priv;
test              132 libavfilter/vsrc_testsrc.c     outlink->w = test->w;
test              133 libavfilter/vsrc_testsrc.c     outlink->h = test->h;
test              134 libavfilter/vsrc_testsrc.c     outlink->sample_aspect_ratio = test->sar;
test              135 libavfilter/vsrc_testsrc.c     outlink->frame_rate = test->frame_rate;
test              136 libavfilter/vsrc_testsrc.c     outlink->time_base  = test->time_base;
test              143 libavfilter/vsrc_testsrc.c     TestSourceContext *test = outlink->src->priv;
test              146 libavfilter/vsrc_testsrc.c     if (test->duration >= 0 &&
test              147 libavfilter/vsrc_testsrc.c         av_rescale_q(test->pts, test->time_base, AV_TIME_BASE_Q) >= test->duration)
test              150 libavfilter/vsrc_testsrc.c     if (test->draw_once) {
test              151 libavfilter/vsrc_testsrc.c         if (test->draw_once_reset) {
test              152 libavfilter/vsrc_testsrc.c             av_frame_free(&test->picref);
test              153 libavfilter/vsrc_testsrc.c             test->draw_once_reset = 0;
test              155 libavfilter/vsrc_testsrc.c         if (!test->picref) {
test              156 libavfilter/vsrc_testsrc.c             test->picref =
test              157 libavfilter/vsrc_testsrc.c                 ff_get_video_buffer(outlink, test->w, test->h);
test              158 libavfilter/vsrc_testsrc.c             if (!test->picref)
test              160 libavfilter/vsrc_testsrc.c             test->fill_picture_fn(outlink->src, test->picref);
test              162 libavfilter/vsrc_testsrc.c         frame = av_frame_clone(test->picref);
test              164 libavfilter/vsrc_testsrc.c         frame = ff_get_video_buffer(outlink, test->w, test->h);
test              168 libavfilter/vsrc_testsrc.c     frame->pts                 = test->pts;
test              172 libavfilter/vsrc_testsrc.c     frame->sample_aspect_ratio = test->sar;
test              173 libavfilter/vsrc_testsrc.c     if (!test->draw_once)
test              174 libavfilter/vsrc_testsrc.c         test->fill_picture_fn(outlink->src, frame);
test              176 libavfilter/vsrc_testsrc.c     test->pts++;
test              177 libavfilter/vsrc_testsrc.c     test->nb_frame++;
test              195 libavfilter/vsrc_testsrc.c     TestSourceContext *test = ctx->priv;
test              196 libavfilter/vsrc_testsrc.c     ff_fill_rectangle(&test->draw, &test->color,
test              198 libavfilter/vsrc_testsrc.c                       0, 0, test->w, test->h);
test              203 libavfilter/vsrc_testsrc.c     TestSourceContext *test = ctx->priv;
test              204 libavfilter/vsrc_testsrc.c     test->fill_picture_fn = color_fill_picture;
test              205 libavfilter/vsrc_testsrc.c     test->draw_once = 1;
test              217 libavfilter/vsrc_testsrc.c     TestSourceContext *test = ctx->priv;
test              220 libavfilter/vsrc_testsrc.c     ff_draw_init(&test->draw, inlink->format, 0);
test              221 libavfilter/vsrc_testsrc.c     ff_draw_color(&test->draw, &test->color, test->color_rgba);
test              223 libavfilter/vsrc_testsrc.c     test->w = ff_draw_round_to_sub(&test->draw, 0, -1, test->w);
test              224 libavfilter/vsrc_testsrc.c     test->h = ff_draw_round_to_sub(&test->draw, 1, -1, test->h);
test              225 libavfilter/vsrc_testsrc.c     if (av_image_check_size(test->w, test->h, 0, ctx) < 0)
test              237 libavfilter/vsrc_testsrc.c     TestSourceContext *test = ctx->priv;
test              244 libavfilter/vsrc_testsrc.c     ff_draw_color(&test->draw, &test->color, test->color_rgba);
test              245 libavfilter/vsrc_testsrc.c     test->draw_once_reset = 1;
test              415 libavfilter/vsrc_testsrc.c     TestSourceContext *test = ctx->priv;
test              417 libavfilter/vsrc_testsrc.c     test->fill_picture_fn = nullsrc_fill_picture;
test              529 libavfilter/vsrc_testsrc.c     TestSourceContext *test = ctx->priv;
test              578 libavfilter/vsrc_testsrc.c     grad = (256 * test->nb_frame * test->time_base.num / test->time_base.den) %
test              615 libavfilter/vsrc_testsrc.c         double time = av_q2d(test->time_base) * test->nb_frame *
test              616 libavfilter/vsrc_testsrc.c                       ff_exp10(test->nb_decimals);
test              620 libavfilter/vsrc_testsrc.c         for (x = 0; x < test->nb_decimals; x++)
test              623 libavfilter/vsrc_testsrc.c         second = av_rescale_rnd(test->nb_frame * test->time_base.num, p10decimals, test->time_base.den, AV_ROUND_ZERO);
test              639 libavfilter/vsrc_testsrc.c     TestSourceContext *test = ctx->priv;
test              641 libavfilter/vsrc_testsrc.c     test->fill_picture_fn = test_fill_picture;
test              997 libavfilter/vsrc_testsrc.c     TestSourceContext *test = ctx->priv;
test             1010 libavfilter/vsrc_testsrc.c                                ctx->outputs[0]->format, test->rgba_map);
test             1017 libavfilter/vsrc_testsrc.c     TestSourceContext *test = ctx->priv;
test             1019 libavfilter/vsrc_testsrc.c     test->draw_once = 1;
test             1020 libavfilter/vsrc_testsrc.c     test->fill_picture_fn = rgbtest_fill_picture;
test             1043 libavfilter/vsrc_testsrc.c     TestSourceContext *test = outlink->src->priv;
test             1045 libavfilter/vsrc_testsrc.c     ff_fill_rgba_map(test->rgba_map, outlink->format);
test             1194 libavfilter/vsrc_testsrc.c     TestSourceContext *test = ctx->priv;
test             1196 libavfilter/vsrc_testsrc.c     test->draw_once = 1;
test             1218 libavfilter/vsrc_testsrc.c     TestSourceContext *test = outlink->src->priv;
test             1221 libavfilter/vsrc_testsrc.c     test->fill_picture_fn = desc->comp[0].depth > 8 ? yuvtest_fill_picture16 : yuvtest_fill_picture8;
test             1312 libavfilter/vsrc_testsrc.c static void draw_bar(TestSourceContext *test, const uint8_t color[4],
test             1320 libavfilter/vsrc_testsrc.c     x = FFMIN(x, test->w - 1);
test             1321 libavfilter/vsrc_testsrc.c     y = FFMIN(y, test->h - 1);
test             1322 libavfilter/vsrc_testsrc.c     w = FFMAX(FFMIN(w, test->w - x), 0);
test             1323 libavfilter/vsrc_testsrc.c     h = FFMAX(FFMIN(h, test->h - y), 0);
test             1325 libavfilter/vsrc_testsrc.c     av_assert0(x + w <= test->w);
test             1326 libavfilter/vsrc_testsrc.c     av_assert0(y + h <= test->h);
test             1385 libavfilter/vsrc_testsrc.c     TestSourceContext *test = ctx->priv;
test             1392 libavfilter/vsrc_testsrc.c     r_w = FFALIGN((test->w + 7) / 8, 1 << pixdesc->log2_chroma_w);
test             1394 libavfilter/vsrc_testsrc.c     draw_bar(test, white, x, 0, r_w, test->h, picref);
test             1397 libavfilter/vsrc_testsrc.c         draw_bar(test, rainbow[i], x, 0, r_w, test->h, picref);
test             1400 libavfilter/vsrc_testsrc.c     draw_bar(test, black0, x, 0, r_w, test->h, picref);
test             1405 libavfilter/vsrc_testsrc.c     TestSourceContext *test = ctx->priv;
test             1407 libavfilter/vsrc_testsrc.c     test->fill_picture_fn = pal75bars_fill_picture;
test             1408 libavfilter/vsrc_testsrc.c     test->draw_once = 1;
test             1433 libavfilter/vsrc_testsrc.c     TestSourceContext *test = ctx->priv;
test             1440 libavfilter/vsrc_testsrc.c     r_w = FFALIGN((test->w + 7) / 8, 1 << pixdesc->log2_chroma_w);
test             1443 libavfilter/vsrc_testsrc.c         draw_bar(test, rainbow100[i], x, 0, r_w, test->h, picref);
test             1446 libavfilter/vsrc_testsrc.c     draw_bar(test, black0, x, 0, r_w, test->h, picref);
test             1451 libavfilter/vsrc_testsrc.c     TestSourceContext *test = ctx->priv;
test             1453 libavfilter/vsrc_testsrc.c     test->fill_picture_fn = pal100bars_fill_picture;
test             1454 libavfilter/vsrc_testsrc.c     test->draw_once = 1;
test             1479 libavfilter/vsrc_testsrc.c     TestSourceContext *test = ctx->priv;
test             1485 libavfilter/vsrc_testsrc.c     r_w = FFALIGN((test->w + 6) / 7, 1 << pixdesc->log2_chroma_w);
test             1486 libavfilter/vsrc_testsrc.c     r_h = FFALIGN(test->h * 2 / 3, 1 << pixdesc->log2_chroma_h);
test             1487 libavfilter/vsrc_testsrc.c     w_h = FFALIGN(test->h * 3 / 4 - r_h,  1 << pixdesc->log2_chroma_h);
test             1489 libavfilter/vsrc_testsrc.c     p_h = test->h - w_h - r_h;
test             1492 libavfilter/vsrc_testsrc.c         draw_bar(test, rainbow[i], x, 0,   r_w, r_h, picref);
test             1493 libavfilter/vsrc_testsrc.c         draw_bar(test, wobnair[i], x, r_h, r_w, w_h, picref);
test             1497 libavfilter/vsrc_testsrc.c     draw_bar(test, i_pixel, x, r_h + w_h, p_w, p_h, picref);
test             1499 libavfilter/vsrc_testsrc.c     draw_bar(test, white, x, r_h + w_h, p_w, p_h, picref);
test             1501 libavfilter/vsrc_testsrc.c     draw_bar(test, q_pixel, x, r_h + w_h, p_w, p_h, picref);
test             1504 libavfilter/vsrc_testsrc.c     draw_bar(test, black0, x, r_h + w_h, tmp, p_h, picref);
test             1507 libavfilter/vsrc_testsrc.c     draw_bar(test, neg4ire, x, r_h + w_h, tmp, p_h, picref);
test             1509 libavfilter/vsrc_testsrc.c     draw_bar(test, black0, x, r_h + w_h, tmp, p_h, picref);
test             1511 libavfilter/vsrc_testsrc.c     draw_bar(test, pos4ire, x, r_h + w_h, tmp, p_h, picref);
test             1513 libavfilter/vsrc_testsrc.c     draw_bar(test, black0, x, r_h + w_h, test->w - x, p_h, picref);
test             1518 libavfilter/vsrc_testsrc.c     TestSourceContext *test = ctx->priv;
test             1520 libavfilter/vsrc_testsrc.c     test->fill_picture_fn = smptebars_fill_picture;
test             1521 libavfilter/vsrc_testsrc.c     test->draw_once = 1;
test             1546 libavfilter/vsrc_testsrc.c     TestSourceContext *test = ctx->priv;
test             1552 libavfilter/vsrc_testsrc.c     d_w = FFALIGN(test->w / 8, 1 << pixdesc->log2_chroma_w);
test             1553 libavfilter/vsrc_testsrc.c     r_h = FFALIGN(test->h * 7 / 12, 1 << pixdesc->log2_chroma_h);
test             1554 libavfilter/vsrc_testsrc.c     draw_bar(test, gray40, x, 0, d_w, r_h, picref);
test             1557 libavfilter/vsrc_testsrc.c     r_w = FFALIGN((((test->w + 3) / 4) * 3) / 7, 1 << pixdesc->log2_chroma_w);
test             1559 libavfilter/vsrc_testsrc.c         draw_bar(test, rainbowhd[i], x, 0, r_w, r_h, picref);
test             1562 libavfilter/vsrc_testsrc.c     draw_bar(test, gray40, x, 0, test->w - x, r_h, picref);
test             1564 libavfilter/vsrc_testsrc.c     r_h = FFALIGN(test->h / 12, 1 << pixdesc->log2_chroma_h);
test             1565 libavfilter/vsrc_testsrc.c     draw_bar(test, cyan, 0, y, d_w, r_h, picref);
test             1567 libavfilter/vsrc_testsrc.c     draw_bar(test, i_pixel, x, y, r_w, r_h, picref);
test             1570 libavfilter/vsrc_testsrc.c     draw_bar(test, rainbowhd[0], x, y, tmp, r_h, picref);
test             1573 libavfilter/vsrc_testsrc.c     draw_bar(test, blue, x, y, test->w - x, r_h, picref);
test             1575 libavfilter/vsrc_testsrc.c     draw_bar(test, yellow, 0, y, d_w, r_h, picref);
test             1577 libavfilter/vsrc_testsrc.c     draw_bar(test, q_pixel, x, y, r_w, r_h, picref);
test             1588 libavfilter/vsrc_testsrc.c         draw_bar(test, yramp, x, y, 1 << pixdesc->log2_chroma_w, r_h, picref);
test             1591 libavfilter/vsrc_testsrc.c     draw_bar(test, red, x, y, test->w - x, r_h, picref);
test             1593 libavfilter/vsrc_testsrc.c     draw_bar(test, gray15, 0, y, d_w, test->h - y, picref);
test             1596 libavfilter/vsrc_testsrc.c     draw_bar(test, black0, x, y, tmp, test->h - y, picref);
test             1599 libavfilter/vsrc_testsrc.c     draw_bar(test, white, x, y, tmp, test->h - y, picref);
test             1602 libavfilter/vsrc_testsrc.c     draw_bar(test, black0, x, y, tmp, test->h - y, picref);
test             1605 libavfilter/vsrc_testsrc.c     draw_bar(test,   neg2, x, y, tmp, test->h - y, picref);
test             1607 libavfilter/vsrc_testsrc.c     draw_bar(test, black0, x, y, tmp, test->h - y, picref);
test             1609 libavfilter/vsrc_testsrc.c     draw_bar(test, black2, x, y, tmp, test->h - y, picref);
test             1611 libavfilter/vsrc_testsrc.c     draw_bar(test, black0, x, y, tmp, test->h - y, picref);
test             1613 libavfilter/vsrc_testsrc.c     draw_bar(test, black4, x, y, tmp, test->h - y, picref);
test             1616 libavfilter/vsrc_testsrc.c     draw_bar(test, black0, x, y, r_w, test->h - y, picref);
test             1618 libavfilter/vsrc_testsrc.c     draw_bar(test, gray15, x, y, test->w - x, test->h - y, picref);
test             1623 libavfilter/vsrc_testsrc.c     TestSourceContext *test = ctx->priv;
test             1625 libavfilter/vsrc_testsrc.c     test->fill_picture_fn = smptehdbars_fill_picture;
test             1626 libavfilter/vsrc_testsrc.c     test->draw_once = 1;
test             1681 libavfilter/vsrc_testsrc.c     TestSourceContext *test = ctx->priv;
test             1683 libavfilter/vsrc_testsrc.c     test->w = test->h = 4096;
test             1684 libavfilter/vsrc_testsrc.c     test->draw_once = 1;
test             1685 libavfilter/vsrc_testsrc.c     test->fill_picture_fn = allyuv_fill_picture;
test             1755 libavfilter/vsrc_testsrc.c     TestSourceContext *test = ctx->priv;
test             1757 libavfilter/vsrc_testsrc.c     test->w = test->h = 4096;
test             1758 libavfilter/vsrc_testsrc.c     test->draw_once = 1;
test             1759 libavfilter/vsrc_testsrc.c     test->fill_picture_fn = allrgb_fill_picture;
test             1765 libavfilter/vsrc_testsrc.c     TestSourceContext *test = outlink->src->priv;
test             1767 libavfilter/vsrc_testsrc.c     ff_fill_rgba_map(test->rgba_map, outlink->format);
test              202 libavformat/tests/fifo_muxer.c static int run_test(const TestCase *test)
test              215 libavformat/tests/fifo_muxer.c     if (test->options) {
test              216 libavformat/tests/fifo_muxer.c         ret = av_dict_parse_string(&opts, test->options, "=", ":", 0);
test              225 libavformat/tests/fifo_muxer.c              (int)test->print_summary_on_deinit, test->write_header_ret,
test              226 libavformat/tests/fifo_muxer.c              test->write_trailer_ret);
test              235 libavformat/tests/fifo_muxer.c     ret = test->test_func(oc, &opts, &test->pkt_data);
test              238 libavformat/tests/fifo_muxer.c     printf("%s: %s\n", test->test_name, ret < 0 ? "fail" : "ok");
test               33 libavformat/tests/noproxy.c     test(NULL, "domain.com");
test               34 libavformat/tests/noproxy.c     test("example.com domain.com", "domain.com");
test               35 libavformat/tests/noproxy.c     test("example.com other.com", "domain.com");
test               36 libavformat/tests/noproxy.c     test("example.com,domain.com", "domain.com");
test               37 libavformat/tests/noproxy.c     test("example.com,domain.com", "otherdomain.com");
test               38 libavformat/tests/noproxy.c     test("example.com, *.domain.com", "sub.domain.com");
test               39 libavformat/tests/noproxy.c     test("example.com, *.domain.com", "domain.com");
test               40 libavformat/tests/noproxy.c     test("example.com, .domain.com", "domain.com");
test               41 libavformat/tests/noproxy.c     test("*", "domain.com");
test               55 libavformat/tests/url.c     test(NULL, "baz");
test               56 libavformat/tests/url.c     test("/foo/bar", "baz");
test               57 libavformat/tests/url.c     test("/foo/bar", "../baz");
test               58 libavformat/tests/url.c     test("/foo/bar", "/baz");
test               59 libavformat/tests/url.c     test("/foo/bar", "../../../baz");
test               60 libavformat/tests/url.c     test("http://server/foo/", "baz");
test               61 libavformat/tests/url.c     test("http://server/foo/bar", "baz");
test               62 libavformat/tests/url.c     test("http://server/foo/", "../baz");
test               63 libavformat/tests/url.c     test("http://server/foo/bar/123", "../../baz");
test               64 libavformat/tests/url.c     test("http://server/foo/bar/123", "/baz");
test               65 libavformat/tests/url.c     test("http://server/foo/bar/123", "https://other/url");
test               66 libavformat/tests/url.c     test("http://server/foo/bar?param=value/with/slashes", "/baz");
test               67 libavformat/tests/url.c     test("http://server/foo/bar?param&otherparam", "?someparam");
test               68 libavformat/tests/url.c     test("http://server/foo/bar", "//other/url");
test               69 libavformat/tests/url.c     test("http://server/foo/bar", "../../../../../other/url");
test               70 libavformat/tests/url.c     test("http://server/foo/bar", "/../../../../../other/url");
test               71 libavformat/tests/url.c     test("http://server/foo/bar", "/test/../../../../../other/url");
test               72 libavformat/tests/url.c     test("http://server/foo/bar", "/test/../../test/../../../other/url");
test              130 libavutil/tests/blowfish.c                           const char *test)
test              135 libavutil/tests/blowfish.c         printf("%s failed\ngot      ", test);
test               64 libavutil/tests/hmac.c         test(hmac, key1, hmac->hashlen, data1, sizeof(data1));
test               65 libavutil/tests/hmac.c         test(hmac, key2, sizeof(key2),  data2, sizeof(data2));
test               66 libavutil/tests/hmac.c         test(hmac, key3, hmac->hashlen, data3, sizeof(data3));
test               67 libavutil/tests/hmac.c         test(hmac, key3, 80,            data4, sizeof(data4));
test               68 libavutil/tests/hmac.c         test(hmac, key3, 80,            data5, sizeof(data5));
test               78 libavutil/tests/hmac.c         test(hmac, key1, sizeof(key1), data1, sizeof(data1));
test               79 libavutil/tests/hmac.c         test(hmac, key2, sizeof(key2), data2, sizeof(data2));
test               80 libavutil/tests/hmac.c         test(hmac, key3, 20,           data3, sizeof(data3));
test               81 libavutil/tests/hmac.c         test(hmac, key3, sizeof(key3), data4, sizeof(data4));
test               82 libavutil/tests/hmac.c         test(hmac, key3, sizeof(key3), data6, sizeof(data6));
test               26 libavutil/tests/pixelutils.c static int run_single_test(const char *test,
test               46 libavutil/tests/pixelutils.c            test, 1<<n, 1<<n, out, ref);
test               50 libavutil/tests/pixelutils.c static int run_test(const char *test,
test               65 libavutil/tests/pixelutils.c             int r = run_single_test(test, b1, W1, b2, W2, a, i);
test               64 libavutil/tests/tea.c                      const char *test)
test               69 libavutil/tests/tea.c         printf("%s failed\ngot      ", test);
test               65 libavutil/tests/xtea.c                       const char *test,
test               71 libavutil/tests/xtea.c         printf("%s failed\ngot      ", test);
test              242 libswresample/tests/swresample.c     int test;
test              269 libswresample/tests/swresample.c     for(test=0; test<num_tests; test++){
test              272 libswresample/tests/swresample.c         r = (seed * (uint64_t)(max_tests - test)) >>32;
test              273 libswresample/tests/swresample.c         FFSWAP(int, remaining_tests[r], remaining_tests[max_tests - test - 1]);
test              277 libswresample/tests/swresample.c     for(test=0; test<num_tests; test++){
test              280 libswresample/tests/swresample.c         unsigned vector= remaining_tests[max_tests - test - 1];
test              247 tests/checkasm/h264pred.c     int test, codec, chroma_format, bit_depth;
test              249 tests/checkasm/h264pred.c     for (test = 0; test < FF_ARRAY_ELEMS(tests); test++) {
test              255 tests/checkasm/h264pred.c                     tests[test].func(&h, buf0, buf1, codec, chroma_format, bit_depth);
test              258 tests/checkasm/h264pred.c         report("%s", tests[test].name);
test              101 tests/dnn/dnn-layer-depth2space-test.c     return test();
test              193 tests/dnn/dnn-layer-mathbinary-test.c     if (test(DMBO_SUB))
test              196 tests/dnn/dnn-layer-mathbinary-test.c     if (test(DMBO_ADD))
test              199 tests/dnn/dnn-layer-mathbinary-test.c     if (test(DMBO_MUL))
test              202 tests/dnn/dnn-layer-mathbinary-test.c     if (test(DMBO_REALDIV))
test              205 tests/dnn/dnn-layer-mathbinary-test.c     if (test(DMBO_MINIMUM))
test               78 tests/dnn/dnn-layer-mathunary-test.c     if (test(DMUO_ABS))
test               67 tests/dnn/dnn-layer-maximum-test.c     if (test())