Lines Matching full:size2
67 .name = "size2",
628 "size2=9007199254740992," in test_opts_parse_size()
634 g_assert_cmphex(qemu_opt_get_size(opts, "size2", 1), in test_opts_parse_size()
642 "size2=9223372036854775808," /* 8000000000000000 */ in test_opts_parse_size()
648 g_assert_cmphex(qemu_opt_get_size(opts, "size2", 1), in test_opts_parse_size()
656 "size2=18446744073709550591", /* fffffffffffffbff */ in test_opts_parse_size()
661 g_assert_cmphex(qemu_opt_get_size(opts, "size2", 1), in test_opts_parse_size()
683 opts = qemu_opts_parse(&opts_list_02, "size1=8b,size2=1.5k,size3=2M", in test_opts_parse_size()
687 g_assert_cmphex(qemu_opt_get_size(opts, "size2", 0), ==, 1536); in test_opts_parse_size()
689 opts = qemu_opts_parse(&opts_list_02, "size1=0.1G,size2=16777215T", in test_opts_parse_size()
693 g_assert_cmphex(qemu_opt_get_size(opts, "size2", 0), ==, 16777215ULL * TiB); in test_opts_parse_size()
828 g_assert_cmpstr(desc[i].name, ==, "size2"); in append_verify_list_02()