/third_party/boost/libs/gil/test/extension/io/ |
D | tiff_file_format_test.cpp | 38 using image_t = bit_aligned_image1_type<2, gray_layout_t>::type; in BOOST_AUTO_TEST_CASE() typedef 39 image_t img; in BOOST_AUTO_TEST_CASE() 61 using image_t = bit_aligned_image1_type<4, gray_layout_t>::type; in BOOST_AUTO_TEST_CASE() typedef 62 image_t img; in BOOST_AUTO_TEST_CASE() 84 using image_t = bit_aligned_image1_type<6, gray_layout_t>::type; in BOOST_AUTO_TEST_CASE() typedef 85 image_t img; in BOOST_AUTO_TEST_CASE() 107 using image_t = gray8_image_t; in BOOST_AUTO_TEST_CASE() typedef 108 image_t img; in BOOST_AUTO_TEST_CASE() 130 using image_t = bit_aligned_image1_type<10, gray_layout_t>::type; in BOOST_AUTO_TEST_CASE() typedef 131 image_t img; in BOOST_AUTO_TEST_CASE() [all …]
|
D | jpeg_read_test.cpp | 83 using image_t = rgb8_image_t; in BOOST_AUTO_TEST_CASE() typedef 84 image_t img; in BOOST_AUTO_TEST_CASE() 101 using image_t = rgb8_image_t; in BOOST_AUTO_TEST_CASE() typedef 102 image_t img; in BOOST_AUTO_TEST_CASE()
|
D | jpeg_write_test.cpp | 67 using image_t = rgb8_image_t; in BOOST_AUTO_TEST_CASE() typedef 68 image_t img; in BOOST_AUTO_TEST_CASE()
|
/third_party/boost/libs/gil/test/extension/io/tiff/ |
D | tiff_file_format_test.cpp | 32 using image_t = gil::bit_aligned_image1_type<2, gil::gray_layout_t>::type; in test_two_bit_minisblack_gray_image() typedef 33 image_t img; in test_two_bit_minisblack_gray_image() 46 using image_t = gil::bit_aligned_image1_type<4, gil::gray_layout_t>::type; in test_four_bit_minisblack_gray_image() typedef 47 image_t img; in test_four_bit_minisblack_gray_image() 60 using image_t = gil::bit_aligned_image1_type<6, gil::gray_layout_t>::type; in test_six_bit_minisblack_gray_image() typedef 61 image_t img; in test_six_bit_minisblack_gray_image() 74 using image_t = gray8_image_t; in test_eight_bit_minisblack_gray_image() typedef 75 image_t img; in test_eight_bit_minisblack_gray_image() 88 using image_t = gil::bit_aligned_image1_type<10, gil::gray_layout_t>::type; in test_ten_bit_minisblack_gray_image() typedef 89 image_t img; in test_ten_bit_minisblack_gray_image() [all …]
|
/third_party/boost/libs/gil/test/core/image/ |
D | image.cpp | 24 using image_t = Image; in operator ()() typedef 26 using pixel_t = typename image_t::view_t::value_type; in operator ()() 28 image_t image(dimensions, rnd_pixel); in operator ()() 46 using image_t = Image; in operator ()() typedef 48 using pixel_t = typename image_t::view_t::value_type; in operator ()() 53 image_t image2(image1); in operator ()() 80 using image_t = Image; in operator ()() typedef 83 image_t image(fixture::create_image<image_t>(dimensions.x, dimensions.y, 0)); in operator ()() 85 image_t image2(std::move(image)); in operator ()() 101 using image_t = Image; in operator ()() typedef [all …]
|
/third_party/boost/libs/gil/test/extension/numeric/ |
D | convolve.cpp | 28 using image_t = Image; in operator ()() typedef 29 auto const img = fixture::create_image<image_t>(1, 1, 7); in operator ()() 30 image_t img_out(img); in operator ()() 32 using pixel_t = typename image_t::value_type; in operator ()() 51 using image_t = Image; in operator ()() typedef 53 image_t img_out(img); in operator ()() 55 using pixel_t = typename image_t::value_type; in operator ()() 73 using image_t = Image; in operator ()() typedef 74 using pixel_t = typename image_t::value_type; in operator ()() 76 auto const img = fixture::generate_image<image_t>(3, 3, fixture::random_value<channel_t>{}); in operator ()() [all …]
|
D | convolve_cols.cpp | 27 using image_t = Image; in operator ()() typedef 28 auto const img = fixture::create_image<image_t>(1, 1, 7); in operator ()() 29 auto img_out = fixture::create_image<image_t>(1, 1, 0); in operator ()() 31 using pixel_t = typename image_t::value_type; in operator ()() 50 using image_t = Image; in operator ()() typedef 51 auto const img = fixture::create_image<image_t>(1, 1, 7); in operator ()() 52 auto img_out = fixture::create_image<image_t>(1, 1, 0); in operator ()() 54 using pixel_t = typename image_t::value_type; in operator ()()
|
D | convolve_rows.cpp | 27 using image_t = Image; in operator ()() typedef 28 auto const img = fixture::create_image<image_t>(1, 1, 7); in operator ()() 29 auto img_out = fixture::create_image<image_t>(1, 1, 0); in operator ()() 31 using pixel_t = typename image_t::value_type; in operator ()() 50 using image_t = Image; in operator ()() typedef 51 auto const img = fixture::create_image<image_t>(1, 1, 7); in operator ()() 52 auto img_out = fixture::create_image<image_t>(1, 1, 0); in operator ()() 54 using pixel_t = typename image_t::value_type; in operator ()()
|
/third_party/boost/libs/gil/test/extension/dynamic_image/ |
D | subimage_view.cpp | 25 using image_t = Image; in operator ()() typedef 26 fixture::dynamic_image i0(fixture::create_image<image_t>(4, 4, 128)); in operator ()() 58 using image_t = Image; in operator ()() typedef 59 fixture::dynamic_image i0(fixture::create_image<image_t>(4, 4, 0)); in operator ()() 63 auto const i1 = fixture::create_image<image_t>(2, 2, 255); in operator ()() 64 … gil::apply_operation(v0, fixture::fill_any_view<image_t>({2, 3, 6, 7}, gil::const_view(i1)[0])); in operator ()() 66 auto const i2 = fixture::create_image<image_t>(2, 2, 128); in operator ()() 67 … gil::apply_operation(v0, fixture::fill_any_view<image_t>({0, 1, 4, 5}, gil::const_view(i2)[0])); in operator ()() 69 auto const i3 = fixture::create_image<image_t>(2, 2, 64); in operator ()() 70 … gil::apply_operation(v0, fixture::fill_any_view<image_t>({8, 9, 12, 13}, gil::const_view(i3)[0])); in operator ()() [all …]
|
D | any_image.cpp | 24 using image_t = Image; in operator ()() typedef 25 fixture::dynamic_image i0(fixture::create_image<image_t>(4, 4, 128)); in operator ()() 29 fixture::dynamic_image i1 = fixture::create_image<image_t>(4, 4, 128); in operator ()()
|
/third_party/boost/libs/gil/test/extension/toolbox/ |
D | get_pixel_type.cpp | 17 using image_t = gil::bit_aligned_image3_type<4, 15, 4, gil::rgb_layout_t>::type; in test_bit_aligned_image() typedef 20 gil::get_pixel_type<image_t::view_t>::type, in test_bit_aligned_image() 21 image_t::view_t::reference in test_bit_aligned_image() 27 using image_t = gil::rgb8_image_t; in test_rgb8_image() typedef 30 gil::get_pixel_type<image_t::view_t>::type, in test_rgb8_image() 31 image_t::view_t::value_type in test_rgb8_image()
|
D | subchroma_image.cpp | 47 using image_t = gil::subchroma_image<pixel_t>; in test_subchroma_image() typedef 48 image_t img(320, 240); in test_subchroma_image() 81 using image_t = gil::subchroma_image<pixel_t, factors_t>; in test_subchroma_image() typedef 87 + (y_width / image_t::ss_X) * (y_height / image_t::ss_Y) in test_subchroma_image() 88 + (y_width / image_t::ss_X) * (y_height / image_t::ss_Y); in test_subchroma_image() 92 … image_t::view_t v = gil::subchroma_view<pixel_t, factors_t>(y_width, y_height, &data.front()); in test_subchroma_image()
|
D | indexed_image.cpp | 36 using image_t = gil::indexed_image<gil::gray8_pixel_t, gil::rgb8_pixel_t>; in test_index_image() typedef 37 image_t img(640, 480, 256); in test_index_image() 67 using image_t = gil::indexed_image<gil::gray8_pixel_t, gil::rgb8_pixel_t>; in test_index_image() typedef 68 image_t img(640, 480, 256); in test_index_image() 90 using image_t = gil::indexed_image<std::uint8_t, gil::rgb8_pixel_t>; in test_index_image() typedef 91 image_t img(640, 480, 256); in test_index_image() 93 for (image_t::y_coord_t y = 0; y < gil::view(img).height(); ++y) in test_index_image() 95 image_t::view_t::x_iterator it = gil::view(img).row_begin(y); in test_index_image() 96 for (image_t::x_coord_t x = 0; x < gil::view(img).width(); ++x) in test_index_image()
|
D | indexed_image_test.cpp | 37 using image_t = bg::indexed_image<bg::gray8_pixel_t, bg::rgb8_pixel_t>; in BOOST_AUTO_TEST_CASE() typedef 38 image_t img(640, 480, 256); in BOOST_AUTO_TEST_CASE() 69 using image_t = bg::indexed_image<bg::gray8_pixel_t, bg::rgb8_pixel_t>; in BOOST_AUTO_TEST_CASE() typedef 70 image_t img(640, 480, 256); in BOOST_AUTO_TEST_CASE() 92 using image_t = bg::indexed_image<std::uint8_t, bg::rgb8_pixel_t>; in BOOST_AUTO_TEST_CASE() typedef 93 image_t img(640, 480, 256); in BOOST_AUTO_TEST_CASE() 95 for (image_t::y_coord_t y = 0; y < bg::view(img).height(); ++y) in BOOST_AUTO_TEST_CASE() 97 image_t::view_t::x_iterator it = bg::view(img).row_begin(y); in BOOST_AUTO_TEST_CASE() 98 for (image_t::x_coord_t x = 0; x < bg::view(img).width(); ++x) in BOOST_AUTO_TEST_CASE()
|
D | get_num_bits.cpp | 16 using image_t = gil::bit_aligned_image4_type<4, 4, 4, 4, gil::rgb_layout_t>::type; in test_get_num_bits() typedef 18 using channel_t = gil::channel_type<image_t::view_t::reference>::type; in test_get_num_bits() 21 using const_channel_t = gil::channel_type<image_t::const_view_t::reference>::type; in test_get_num_bits()
|
D | is_bit_aligned.cpp | 16 using image_t = gil::bit_aligned_image1_type< 4, gil::gray_layout_t>::type; in test_is_bit_aligned() typedef 17 static_assert(gil::is_bit_aligned<image_t::view_t::value_type>::value, ""); in test_is_bit_aligned()
|
D | pixel_bit_size.cpp | 16 using image_t = gil::bit_aligned_image5_type in test_pixel_bit_size() typedef 20 static_assert(gil::pixel_bit_size<image_t::view_t::reference>::value == 64, ""); in test_pixel_bit_size()
|
D | is_homogeneous.cpp | 19 using image_t = gil::bit_aligned_image1_type< 4, gil::gray_layout_t>::type; in test_is_homogeneous() typedef 20 static_assert(gil::is_homogeneous<image_t::view_t::reference>::value, ""); in test_is_homogeneous()
|
D | channel_type.cpp | 35 using image_t = gil::bit_aligned_image4_type<4, 4, 4, 4, gil::rgb_layout_t>::type; in test_channel_type() typedef 36 using channel_t = gil::channel_type<image_t::view_t::reference>::type; in test_channel_type()
|
/third_party/boost/libs/gil/test/core/image_view/ |
D | subimage_view.cpp | 23 using image_t = Image; in operator ()() typedef 24 auto i0 = fixture::create_image<image_t>(4, 4, 128); in operator ()() 53 using image_t = Image; in operator ()() typedef 54 auto i0 = fixture::create_image<image_t>(4, 4, 0); in operator ()() 58 auto const i1 = fixture::create_image<image_t>(2, 2, 255); in operator ()() 61 auto const i2 = fixture::create_image<image_t>(2, 2, 128); in operator ()() 64 auto const i3 = fixture::create_image<image_t>(2, 2, 64); in operator ()() 67 auto const i4 = fixture::create_image<image_t>(2, 2, 32); in operator ()()
|
/third_party/pixman/test/ |
D | composite.c | 31 typedef struct image_t image_t; typedef 131 struct image_t struct 200 describe_image (image_t *info, char *buf) in describe_image() 227 composite_test (image_t *dst, in composite_test() 229 image_t *src, in composite_test() 230 image_t *mask, in composite_test() 373 image_init (image_t *info, in image_init() 413 image_fini (image_t *info) in image_fini() 439 image_t src, mask, dst; in run_test()
|
/third_party/boost/libs/gil/test/extension/io/jpeg/ |
D | jpeg_read_test.cpp | 64 using image_t = gil::rgb8_image_t; in test_read_reference_images() typedef 65 image_t img; in test_read_reference_images() 75 using image_t = gil::rgb8_image_t; in test_dct_method_read() typedef 76 image_t img; in test_dct_method_read()
|
/third_party/flutter/skia/third_party/externals/harfbuzz/util/ |
D | ansi-print.cc | 93 struct image_t struct 97 image_t (unsigned int width_, in image_t() function 106 image_t (unsigned int width_, in image_t() argument 113 ~image_t () in ~image_t() argument 123 copy_sub_image (const image_t &s, in copy_sub_image() argument 167 void set (const image_t &image) in set() argument 387 image_t image (width, height, data, stride); in ansi_print_image_rgb24() 391 image_t cell (CELL_W, CELL_H); in ansi_print_image_rgb24()
|
/third_party/skia/third_party/externals/harfbuzz/util/ |
D | ansi-print.hh | 90 struct image_t struct 94 image_t (unsigned int width_, in image_t() function 103 image_t (unsigned int width_, in image_t() argument 110 ~image_t () in ~image_t() argument 120 copy_sub_image (const image_t &s, in copy_sub_image() argument 164 void set (const image_t &image) in set() argument 384 image_t image (width, height, data, stride); in ansi_print_image_rgb24() 388 image_t cell (CELL_W, CELL_H); in ansi_print_image_rgb24()
|
/third_party/harfbuzz/util/ |
D | ansi-print.cc | 93 struct image_t struct 97 image_t (unsigned int width_, in image_t() function 106 image_t (unsigned int width_, in image_t() function 113 ~image_t () in ~image_t() argument 123 copy_sub_image (const image_t &s, in copy_sub_image() argument 167 void set (const image_t &image) in set() argument 387 image_t image (width, height, data, stride); in ansi_print_image_rgb24() 391 image_t cell (CELL_W, CELL_H); in ansi_print_image_rgb24()
|