Home
last modified time | relevance | path

Searched refs:cached_location_t (Results 1 – 8 of 8) sorted by relevance

/third_party/boost/boost/gil/concepts/
Dpixel_locator.hpp124 using cached_location_t = typename Loc::cached_location_t; in constraints() typedef
125 ignore_unused_variable_warning(cached_location_t{}); in constraints()
164 cached_location_t cl = loc.cache_location(d); ignore_unused_variable_warning(cl); in constraints()
232 using cached_location_t = typename Loc::cached_location_t; in constraints() typedef
271 cached_location_t cl = loc.cache_location(xd, yd); in constraints()
323 typename Loc::cached_location_t cl = loc.cache_location(d); in constraints()
/third_party/boost/boost/gil/
Dlocator.hpp157 using cached_location_t = difference_type; typedef in boost::gil::pixel_2d_locator_base
158 cached_location_t cache_location(const difference_type& d) const { return d; } in cache_location()
159cached_location_t cache_location(x_coord_t dx, y_coord_t dy)const { return difference_type(dx,dy);… in cache_location()
284 …using cached_location_t = std::ptrdiff_t; // type used to store relative location (to allow for mo… typedef in boost::gil::memory_based_2d_locator
285 cached_location_t cache_location(const difference_type& d) const { return offset(d.x,d.y); } in cache_location()
286 cached_location_t cache_location(x_coord_t dx, y_coord_t dy)const { return offset(dx,dy); } in cache_location()
287 …reference operator[](const cached_location_t& loc) const { return memunit_advanced_ref(x(… in operator []()
/third_party/boost/libs/gil/doc/design/
Dpixel_locator.rst26 typename cached_location_t; // type to store relative location (for efficient repeated access)
55 cached_location_t Loc::cache_location(const difference_type&) const;
56 reference operator[](const Loc&,const cached_location_t&);
105 cached_location_t Loc::cache_location(x_coord_t, y_coord_t) const;
223 The ``memory_based_2d_locator`` also offers `cached_location_t` as mechanism
/third_party/boost/libs/gil/doc/html/_sources/design/
Dpixel_locator.rst.txt26 typename cached_location_t; // type to store relative location (for efficient repeated access)
55 cached_location_t Loc::cache_location(const difference_type&) const;
56 reference operator[](const Loc&,const cached_location_t&);
105 cached_location_t Loc::cache_location(x_coord_t, y_coord_t) const;
223 The ``memory_based_2d_locator`` also offers `cached_location_t` as mechanism
/third_party/boost/libs/gil/doc/html/
Dsearchindex.js1 …4,23,28],byte_to_memunit:14,c_str:24,cach:[15,28],cache_loc:[15,28],cached_location_t:[15,28],calc… property
/third_party/boost/libs/gil/doc/html/_sources/tutorial/
Dgradient.rst.txt247 gray8c_view_t::xy_locator::cached_location_t above = src_loc.cache_location(0,-1);
248 gray8c_view_t::xy_locator::cached_location_t below = src_loc.cache_location(0, 1);
/third_party/boost/libs/gil/doc/tutorial/
Dgradient.rst247 gray8c_view_t::xy_locator::cached_location_t above = src_loc.cache_location(0,-1);
248 gray8c_view_t::xy_locator::cached_location_t below = src_loc.cache_location(0, 1);
/third_party/boost/libs/gil/
DRELEASES.md76 - Documented purpose of `cached_location_t` ([PR #287](https://github.com/boostorg/gil/pull/287)).