Home
last modified time | relevance | path

Searched refs:bitfield_t (Results 1 – 9 of 9) sorted by relevance

/third_party/boost/libs/gil/test/core/channel/
Dtest_fixture.cpp89 using bitfield_t = BitField; in operator ()() typedef
90 static_assert(std::is_integral<bitfield_t>::value, "bitfield is not integral type"); in operator ()()
94 fixture::packed_channels565<bitfield_t> fix; in operator ()()
109 using bitfield_t = BitField; in operator ()() typedef
110 static_assert(std::is_integral<bitfield_t>::value, "bitfield is not integral type"); in operator ()()
114 fixture::packed_dynamic_channels565<bitfield_t> fix; in operator ()()
Dalgorithm_channel_invert.cpp78 using bitfield_t = BitField; in operator ()() typedef
79 using channels565_t = fixture::packed_channels565<bitfield_t>; in operator ()()
95 using bitfield_t = BitField; in operator ()() typedef
96 using channels565_t = fixture::packed_dynamic_channels565<bitfield_t>; in operator ()()
Dalgorithm_channel_multiply.cpp79 using bitfield_t = BitField; in operator ()() typedef
80 using channels565_t = fixture::packed_channels565<bitfield_t>; in operator ()()
96 using bitfield_t = BitField; in operator ()() typedef
97 using channels565_t = fixture::packed_dynamic_channels565<bitfield_t>; in operator ()()
Dalgorithm_channel_relation.cpp87 using bitfield_t = BitField; in operator ()() typedef
88 using channels565_t = fixture::packed_channels565<bitfield_t>; in operator ()()
104 using bitfield_t = BitField; in operator ()() typedef
105 using channels565_t = fixture::packed_dynamic_channels565<bitfield_t>; in operator ()()
Dalgorithm_channel_arithmetic.cpp132 using bitfield_t = BitField; in operator ()() typedef
133 using channels565_t = fixture::packed_channels565<bitfield_t>; in operator ()()
150 using bitfield_t = BitField; in operator ()() typedef
151 using channels565_t = fixture::packed_dynamic_channels565<bitfield_t>; in operator ()()
/third_party/boost/boost/gil/
Dchannel.hpp360 using bitfield_t = BitField; typedef in boost::gil::detail::packed_channel_reference_base
389 …const bitfield_t& get_data() const { return *static_cast<const bitfield_t*>(_… in get_data()
390 …void set_data(const bitfield_t& val) const { *static_cast< bitfield_t*>(_… in set_data()
392 bitfield_t get_data() const { in get_data()
393 bitfield_t ret; in get_data()
394 …static_copy_bytes<sizeof(bitfield_t) >()(gil_reinterpret_cast_c<const unsigned char*>(_data_ptr),g… in get_data()
397 void set_data(const bitfield_t& val) const { in set_data()
398 …static_copy_bytes<sizeof(bitfield_t) >()(gil_reinterpret_cast_c<const unsigned char*>(&val),gil_re… in set_data()
Dbit_aligned_pixel_reference.hpp126 using bitfield_t = BitField; typedef
131 using value_type = typename packed_pixel_type<bitfield_t,ChannelBitSizes,Layout>::type;
Dmetafunctions.hpp455 using bitfield_t = typename detail::min_fast_uint<bit_size + 7>::type; typedef
456 …using bit_alignedref_t = bit_aligned_pixel_reference<bitfield_t, ChannelBitSizes, Layout, true> co…
/third_party/boost/libs/gil/test/core/pixel/
Dbit_aligned_pixel_reference.cpp25 static_assert(std::is_same<bgr121_ref_t::bitfield_t, std::uint8_t>::value, in main()