Searched refs:cached_location_t (Results 1 – 8 of 8) sorted by relevance
/third_party/boost/boost/gil/concepts/ |
D | pixel_locator.hpp | 124 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/ |
D | locator.hpp | 157 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() 159 …cached_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/ |
D | pixel_locator.rst | 26 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/ |
D | pixel_locator.rst.txt | 26 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/ |
D | searchindex.js | 1 …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/ |
D | gradient.rst.txt | 247 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/ |
D | gradient.rst | 247 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/ |
D | RELEASES.md | 76 - Documented purpose of `cached_location_t` ([PR #287](https://github.com/boostorg/gil/pull/287)).
|