/third_party/boost/libs/gil/test/extension/numeric/ |
D | pixel_numeric_operations.cpp | 28 using pixel_t = Pixel; in operator ()() typedef 29 using channel_t = typename gil::channel_type<pixel_t>::type; in operator ()() 30 gil::pixel_plus_t<pixel_t, pixel_t, pixel_t> f; in operator ()() 32 pixel_t p0; in operator ()() 37 pixel_t p1; in operator ()() 39 pixel_t r2; in operator ()() 46 pixel_t p; in operator ()() 64 using pixel_t = Pixel; in operator ()() typedef 65 using channel_t = typename gil::channel_type<pixel_t>::type; in operator ()() 66 gil::pixel_minus_t<pixel_t, pixel_t, pixel_t> f; in operator ()() [all …]
|
D | convolve.cpp | 32 using pixel_t = typename image_t::value_type; in operator ()() typedef 33 using channel_t = typename gil::channel_type<pixel_t>::type; in operator ()() 35 gil::detail::convolve_1d<pixel_t>(gil::const_view(img_out), kernel, gil::view(img_out)); in operator ()() 55 using pixel_t = typename image_t::value_type; in operator ()() typedef 56 using channel_t = typename gil::channel_type<pixel_t>::type; in operator ()() 58 gil::detail::convolve_1d<pixel_t>(gil::const_view(img_out), kernel, gil::view(img_out)); in operator ()() 74 using pixel_t = typename image_t::value_type; in operator ()() typedef 75 using channel_t = typename gil::channel_type<pixel_t>::type; in operator ()() 80 gil::detail::convolve_1d<pixel_t>(gil::const_view(img_out), kernel, gil::view(img_out)); in operator ()() 96 using pixel_t = typename image_t::value_type; in operator ()() typedef [all …]
|
D | convolve_cols.cpp | 31 using pixel_t = typename image_t::value_type; in operator ()() typedef 32 using channel_t = typename gil::channel_type<pixel_t>::type; in operator ()() 34 gil::convolve_cols<pixel_t>(const_view(img), kernel, view(img_out)); in operator ()() 54 using pixel_t = typename image_t::value_type; in operator ()() typedef 55 using channel_t = typename gil::channel_type<pixel_t>::type; in operator ()() 57 gil::convolve_cols<pixel_t>(const_view(img), kernel, view(img_out)); in operator ()()
|
D | convolve_rows.cpp | 31 using pixel_t = typename image_t::value_type; in operator ()() typedef 32 using channel_t = typename gil::channel_type<pixel_t>::type; in operator ()() 34 gil::convolve_rows<pixel_t>(const_view(img), kernel, view(img_out)); in operator ()() 54 using pixel_t = typename image_t::value_type; in operator ()() typedef 55 using channel_t = typename gil::channel_type<pixel_t>::type; in operator ()() 57 gil::convolve_rows<pixel_t>(const_view(img), kernel, view(img_out)); in operator ()()
|
/third_party/boost/libs/gil/test/extension/toolbox/ |
D | subchroma_image.cpp | 46 using pixel_t = gil::rgb8_pixel_t; in test_subchroma_image() typedef 47 using image_t = gil::subchroma_image<pixel_t>; in test_subchroma_image() 49 gil::fill_pixels(view(img), pixel_t(10, 20, 30)); in test_subchroma_image() 54 using pixel_t = gil::rgb8_pixel_t; in test_subchroma_image() typedef 56 gil::subchroma_image<pixel_t, mp11::mp_list_c<int, 4, 4, 4>> a(640, 480); in test_subchroma_image() 58 gil::subchroma_image<pixel_t, mp11::mp_list_c<int, 4, 4, 0>> b(640, 480); in test_subchroma_image() 60 gil::subchroma_image<pixel_t, mp11::mp_list_c<int, 4, 2, 2>> c(640, 480); in test_subchroma_image() 62 gil::subchroma_image<pixel_t, mp11::mp_list_c<int, 4, 2, 0>> d(640, 480); in test_subchroma_image() 64 gil::subchroma_image<pixel_t, mp11::mp_list_c<int, 4, 1, 1>> e(640, 480); in test_subchroma_image() 66 gil::subchroma_image<pixel_t, mp11::mp_list_c<int, 4, 1, 0>> f(640, 480); in test_subchroma_image() [all …]
|
/third_party/boost/libs/gil/test/core/pixel/ |
D | test_fixture.cpp | 38 using pixel_t = Pixel; in operator ()() typedef 39 fixture::pixel_value<pixel_t> fix; in operator ()() 40 pixel_t const default_value{}; in operator ()() 54 using pixel_t = Pixel; in operator ()() typedef 55 using channel_t = typename gil::channel_type<pixel_t>::type; in operator ()() 58 pixel_t sample_pixel; in operator ()() 60 fixture::pixel_value<pixel_t> fix{sample_pixel}; in operator ()() 74 using pixel_t = Pixel; in operator ()() typedef 75 fixture::pixel_reference<pixel_t&> fix; in operator ()() 76 pixel_t pix_default{}; in operator ()() [all …]
|
D | test_fixture.hpp | 71 using pixel_t = type; typedef in boost::gil::test::fixture::pixel_value 75 explicit pixel_value(pixel_t const& pixel) in pixel_value() 80 boost::function_requires<PixelValueConcept<pixel_t> >(); in pixel_value() 103 using pixel_t = typename std::remove_reference<PixelRef>::type; typedef 104 using parent_t = pixel_value<typename pixel_t::value_type, Tag>; 105 using value_t = typename pixel_t::value_type; 111 boost::function_requires<PixelConcept<pixel_t>>(); in pixel_reference() 126 using nested_pixel_type = typename PixelValueOrReference::pixel_t;
|
/third_party/mesa3d/src/asahi/lib/ |
D | tiling.c | 75 #define TILED_UNALIGNED_TYPE(pixel_t, is_store) { \ argument 85 pixel_t *linear_row = linear;\ 92 pixel_t *ptiled = &tiled[tile_base + y_offs + x_offs];\ 93 pixel_t *plinear = (linear_row++);\ 94 pixel_t *outp = (pixel_t *) (is_store ? ptiled : plinear); \ 95 pixel_t *inp = (pixel_t *) (is_store ? plinear : ptiled); \
|
/third_party/boost/libs/gil/test/core/image/ |
D | image.cpp | 26 using pixel_t = typename image_t::view_t::value_type; in operator ()() typedef 27 pixel_t const rnd_pixel = fixture::pixel_generator<pixel_t>::random(); in operator ()() 32 for (pixel_t const &p : gil::view(image)) in operator ()() 48 using pixel_t = typename image_t::view_t::value_type; in operator ()() typedef 49 pixel_t const rnd_pixel = fixture::pixel_generator<pixel_t>::random(); in operator ()() 52 gil::image<pixel_t, true> image1(dimensions, rnd_pixel); in operator ()()
|
D | test_fixture.hpp | 57 using pixel_t = typename Image::value_type; in generate_image() typedef 60 gil::for_each_pixel(view(out), [&generate](pixel_t& p) { in generate_image() 70 using pixel_t = typename Image::value_type; in create_image() typedef 71 using channel_t = typename gil::channel_type<pixel_t>::type; in create_image() 75 gil::for_each_pixel(view(out), [&channel_value](pixel_t& p) { in create_image()
|
/third_party/mesa3d/src/panfrost/shared/ |
D | pan_tiling.c | 182 #define TILED_ACCESS_TYPE(pixel_t, shift) \ argument 184 panfrost_access_tiled_image_##pixel_t \ 192 uint8_t *dest_start = dst + ((sx >> 4) * PIXELS_PER_TILE * sizeof(pixel_t)); \ 196 pixel_t *source = src + (src_y * src_stride); \ 197 pixel_t *source_end = source + w; \ 203 *((pixel_t *) (dest + index)) = *(source++); \ 205 *(source++) = *((pixel_t *) (dest + index)); \ 217 #define TILED_UNALIGNED_TYPE(pixel_t, is_store, tile_shift) { \ argument 228 uint8_t *source = src + source_start + sizeof(pixel_t) * src_x; \ 229 uint8_t *dest = dst + block_start_s + sizeof(pixel_t) * (block_x_s + index); \ [all …]
|
/third_party/boost/boost/gil/extension/io/tiff/detail/ |
D | is_allowed.hpp | 144 using pixel_t = typename View::value_type; in compare_channel_sizes() typedef 145 using channel_t = typename channel_traits<typename element_type<pixel_t>::type>::value_type; in compare_channel_sizes() 221 using pixel_t = typename get_pixel_type<View>::type; in is_allowed() typedef 222 using channel_t = typename channel_traits<typename element_type<pixel_t>::type>::value_type; in is_allowed() 224 using num_channel_t = typename num_channels<pixel_t>::value_type; in is_allowed() 226 const num_channel_t dst_samples_per_pixel = num_channels< pixel_t >::value; in is_allowed() 234 , typename is_bit_aligned< pixel_t >::type() in is_allowed() 235 , typename is_homogeneous< pixel_t >::type() in is_allowed()
|
D | write.hpp | 43 using pixel_t = typename std::remove_reference<PixelReference>::type::value_type; typedef 48 pixel_t, 124 using pixel_t = typename View::value_type; in write_view() typedef 126 using channel_t = typename channel_traits<typename element_type<pixel_t>::type>::value_type; in write_view() 129 tiff_samples_per_pixel::type samples_per_pixel = num_channels< pixel_t >::value; in write_view() 137 , typename is_bit_aligned< pixel_t >::type() in write_view() 157 , typename is_bit_aligned< pixel_t >::type() in write_view()
|
D | writer_backend.hpp | 49 using pixel_t = typename View::value_type; in write_header() typedef 52 using channel_t = typename channel_traits<typename element_type<pixel_t>::type>::value_type; in write_header() 78 tiff_samples_per_pixel::type samples_per_pixel = num_channels< pixel_t >::value; in write_header()
|
/third_party/boost/libs/gil/test/legacy/ |
D | pixel.cpp | 46 using pixel1_value_t = typename C1::pixel_t::value_type; 47 using pixel2_value_t = typename C2::pixel_t::value_type; 56 static const int num_chan = num_channels<typename C2::pixel_t>::value; in test_all() 72 boost::function_requires<PixelConcept<typename C1::pixel_t> >(); in test_heterogeneous() 73 boost::function_requires<MutablePixelConcept<typename C2::pixel_t> >(); in test_heterogeneous() 74 … boost::function_requires<PixelsCompatibleConcept<typename C1::pixel_t,typename C2::pixel_t> >(); in test_heterogeneous() 133 using pixel_t = type; typedef in value_core 138 boost::function_requires<PixelValueConcept<pixel_t> >(); in value_core() 149 using pixel_t = typename std::remove_reference<PixelRef>::type; typedef in reference_core 150 using parent_t = value_core<typename pixel_t::value_type, Tag>; [all …]
|
/third_party/boost/libs/gil/test/core/algorithm/ |
D | std_fill.cpp | 37 using pixel_t = Pixel; in operator ()() typedef 38 gil::image<pixel_t> img(1, 1); in operator ()() 39 std::fill(gil::view(img).begin(), gil::view(img).end(), pixel_t{0, 1}); in operator ()() 41 auto e = pixel_t{0, 1}; in operator ()()
|
D | std_uninitialized_fill.cpp | 62 using pixel_t = Pixel; in operator ()() typedef 63 auto min_pixel = fixture::pixel_generator<pixel_t>::min(); in operator ()() 64 auto max_pixel = fixture::pixel_generator<pixel_t>::max(); in operator ()() 65 auto rnd_pixel = fixture::pixel_generator<pixel_t>::random(); in operator ()() 69 fixture::pixel_array<pixel_t> pixels; in operator ()() 72 for (pixel_t const &p : pixels) in operator ()() 87 using pixel_t = Pixel; in operator ()() typedef 88 auto min_pixel = fixture::pixel_generator<pixel_t>::min(); in operator ()() 89 auto max_pixel = fixture::pixel_generator<pixel_t>::max(); in operator ()()
|
/third_party/boost/boost/gil/extension/io/png/detail/ |
D | is_allowed.hpp | 22 using pixel_t = typename get_pixel_type<View>::type; in is_allowed() typedef 24 using channel_t = typename channel_traits<typename element_type<pixel_t>::type>::value_type; in is_allowed() 26 const png_num_channels::type dst_num_channels = num_channels< pixel_t >::value; in is_allowed()
|
D | write.hpp | 87 using pixel_t = typename get_pixel_type<View>::type; in write_view() typedef 91 typename channel_type<pixel_t>::type, in write_view() 92 typename color_space_type<pixel_t>::type in write_view()
|
/third_party/boost/boost/gil/extension/io/raw/detail/ |
D | is_allowed.hpp | 23 using pixel_t = typename get_pixel_type<View>::type; in is_allowed() typedef 24 using num_channel_t = typename num_channels<pixel_t>::value_type; in is_allowed() 27 constexpr num_channel_t dst_samples_per_pixel = num_channels<pixel_t>::value; in is_allowed()
|
/third_party/boost/libs/gil/test/extension/dynamic_image/ |
D | test_fixture.hpp | 37 using pixel_t = typename Image::value_type; typedef 39 fill_any_view(std::initializer_list<int> dst_view_indices, pixel_t pixel_value) in fill_any_view() 54 pixel_t pixel_value_;
|
/third_party/boost/boost/gil/image_processing/ |
D | scaling.hpp | 48 using pixel_t = typename std::remove_reference<decltype(std::declval<ImageView>()(0, 0))>::type; in lanczos_at() typedef 53 decltype(std::declval<pixel_t>().at(std::integral_constant<int, 0>{})) in lanczos_at() 56 pixel_t result_pixel; in lanczos_at()
|
D | hessian.hpp | 37 … using pixel_t = typename std::remove_reference<decltype(std::declval<OutputView>()(0, 0))>::type; in compute_hessian_responses() typedef 41 decltype(std::declval<pixel_t>().at(std::integral_constant<int, 0>{})) in compute_hessian_responses()
|
/third_party/boost/boost/gil/extension/io/pnm/detail/ |
D | write.hpp | 72 using pixel_t = typename get_pixel_type<View>::type; in apply() typedef 80 unsigned int type = get_type< num_channels< View >::value >( is_bit_aligned< pixel_t >() ); in apply() 106 , typename is_bit_aligned< pixel_t >::type() in apply()
|
/third_party/boost/boost/gil/concepts/ |
D | image.hpp | 67 using pixel_t = typename Image::value_type; in constraints() typedef 76 pixel_t fill_value; in constraints()
|