Home
last modified time | relevance | path

Searched full:box (Results 1 – 25 of 1362) sorted by relevance

12345678910>>...55

/OK3568_Linux_fs/external/xserver/miext/rootless/
H A DrootlessGC.c430 BoxRec box; in RootlessFillSpans() local
432 box.x1 = ppt->x; in RootlessFillSpans()
433 box.x2 = box.x1 + *pwidth; in RootlessFillSpans()
434 box.y2 = box.y1 = ppt->y; in RootlessFillSpans()
439 if (box.x1 > ppt->x) in RootlessFillSpans()
440 box.x1 = ppt->x; in RootlessFillSpans()
441 if (box.x2 < (ppt->x + *pwidth)) in RootlessFillSpans()
442 box.x2 = ppt->x + *pwidth; in RootlessFillSpans()
443 if (box.y1 > ppt->y) in RootlessFillSpans()
444 box.y1 = ppt->y; in RootlessFillSpans()
[all …]
/OK3568_Linux_fs/external/xserver/miext/damage/
H A Ddamage.c228 BoxRec box; in _damageRegionAppend() local
230 box.x1 = draw_x; in _damageRegionAppend()
231 box.y1 = draw_y; in _damageRegionAppend()
232 box.x2 = draw_x + pDamage->pDrawable->width; in _damageRegionAppend()
233 box.y2 = draw_y + pDamage->pDrawable->height; in _damageRegionAppend()
234 RegionInit(&pixClip, &box, 1); in _damageRegionAppend()
438 #define TRIM_BOX(box, pGC) if (pGC->pCompositeClip) { \ argument
440 if(box.x1 < extents->x1) box.x1 = extents->x1; \
441 if(box.x2 > extents->x2) box.x2 = extents->x2; \
442 if(box.y1 < extents->y1) box.y1 = extents->y1; \
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/expand/
H A Dinterface.hpp48 template <typename Box, typename Strategy>
49 static inline void apply(Box& box, in apply()
53 dispatch::expand<Box, Geometry>::apply(box, geometry, strategy); in apply()
56 template <typename Box>
57 static inline void apply(Box& box, in apply()
70 dispatch::expand<Box, Geometry>::apply(box, geometry, strategy_type()); in apply()
83 template <typename Box, typename Strategy>
84 static inline void apply(Box& box, in apply()
88 concepts::check<Box>(); in apply()
90 concepts::check_concepts_and_equal_dimensions<Box, Geometry const>(); in apply()
[all …]
H A Dpoint.hpp63 template <typename Box, typename Point, typename Strategy>
64 static inline void apply(Box& box, Point const& source, Strategy const& strategy) in apply()
78 Point, Box in apply()
86 if (less(coord, get<min_corner, Dimension>(box))) in apply()
88 set<min_corner, Dimension>(box, coord); in apply()
91 if (greater(coord, get<max_corner, Dimension>(box))) in apply()
93 set<max_corner, Dimension>(box, coord); in apply()
99 >::apply(box, source, strategy); in apply()
115 template <typename Box, typename Point, typename Strategy>
116 static inline void apply(Box&, Point const&, Strategy const&) {} in apply()
[all …]
/OK3568_Linux_fs/kernel/arch/x86/events/intel/
H A Duncore.h141 u64 hrtimer_duration; /* hrtimer timeout for this box */
224 static inline bool uncore_mmio_is_valid_offset(struct intel_uncore_box *box, in uncore_mmio_is_valid_offset() argument
227 if (offset < box->pmu->type->mmio_map_size) in uncore_mmio_is_valid_offset()
231 offset, box->pmu->type->name); in uncore_mmio_is_valid_offset()
237 unsigned int uncore_mmio_box_ctl(struct intel_uncore_box *box) in uncore_mmio_box_ctl() argument
239 return box->pmu->type->box_ctl + in uncore_mmio_box_ctl()
240 box->pmu->type->mmio_offset * box->pmu->pmu_idx; in uncore_mmio_box_ctl()
243 static inline unsigned uncore_pci_box_ctl(struct intel_uncore_box *box) in uncore_pci_box_ctl() argument
245 return box->pmu->type->box_ctl; in uncore_pci_box_ctl()
248 static inline unsigned uncore_pci_fixed_ctl(struct intel_uncore_box *box) in uncore_pci_fixed_ctl() argument
[all …]
H A Duncore.c116 u64 uncore_msr_read_counter(struct intel_uncore_box *box, struct perf_event *event) in uncore_msr_read_counter() argument
125 void uncore_mmio_exit_box(struct intel_uncore_box *box) in uncore_mmio_exit_box() argument
127 if (box->io_addr) in uncore_mmio_exit_box()
128 iounmap(box->io_addr); in uncore_mmio_exit_box()
131 u64 uncore_mmio_read_counter(struct intel_uncore_box *box, in uncore_mmio_read_counter() argument
134 if (!box->io_addr) in uncore_mmio_read_counter()
137 if (!uncore_mmio_is_valid_offset(box, event->hw.event_base)) in uncore_mmio_read_counter()
140 return readq(box->io_addr + event->hw.event_base); in uncore_mmio_read_counter()
147 uncore_get_constraint(struct intel_uncore_box *box, struct perf_event *event) in uncore_get_constraint() argument
156 * reg->alloc can be set due to existing state, so for fake box we in uncore_get_constraint()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/geometries/register/
H A Dbox.hpp22 #define BOOST_GEOMETRY_DETAIL_SPECIALIZE_BOX_ACCESS(Box, Point, MinCorner, MaxCorner) \ argument
24 struct indexed_access<Box, min_corner, D> \
27 static inline ct get(Box const& b) \
29 static inline void set(Box& b, ct const& value) \
33 struct indexed_access<Box, max_corner, D> \
36 static inline ct get(Box const& b) \
38 static inline void set(Box& b, ct const& value) \
43 #define BOOST_GEOMETRY_DETAIL_SPECIALIZE_BOX_ACCESS_TEMPLATED(Box, MinCorner, MaxCorner) \ argument
45 struct indexed_access<Box<P>, min_corner, D> \
48 static inline ct get(Box<P> const& b) \
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/index/detail/algorithms/
H A Dmargin.hpp3 // n-dimensional box's margin value (hypersurface), 2d perimeter, 3d surface, etc...
19 template <typename Box>
23 typename coordinate_type<Box>::type,
28 //template <typename Box,
30 // std::size_t EdgeDimension = dimension<Box>::value>
36 // static inline typename default_margin_result<Box>::type apply(Box const& b)
38 // return margin_for_each_edge<Box, CurrentDimension, EdgeDimension - 1>::apply(b) *
43 //template <typename Box, std::size_t CurrentDimension>
44 //struct margin_for_each_edge<Box, CurrentDimension, CurrentDimension>
48 // static inline typename default_margin_result<Box>::type apply(Box const& b)
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/strategies/cartesian/
H A Ddistance_pythagoras_point_box.hpp45 template <typename Point, typename Box, typename T>
46 static inline void apply(Point const& point, Box const& box, T& result) in apply()
50 boost::numeric_cast<T>(geometry::get<min_corner, I-1>(box)); in apply()
52 boost::numeric_cast<T>(geometry::get<max_corner, I-1>(box)); in apply()
65 compute_pythagoras_point_box<I-1>::apply(point, box, result); in apply()
72 template <typename Point, typename Box, typename T>
73 static inline void apply(Point const&, Box const&, T&) in apply()
88 and a box
91 \tparam Box \tparam_second_box
99 template <typename Point, typename Box>
[all …]
H A Ddisjoint_segment_box.hpp50 template <typename SegmentPoint, typename Box, typename RelativeDistance>
53 Box const& box, in apply()
58 typedef typename coordinate_type<Box>::type box_coordinate_type; in apply()
77 >( geometry::get<geometry::min_corner, I>(box) ); in apply()
82 >( geometry::get<geometry::max_corner, I>(box) ); in apply()
104 typename Box,
113 Box const& box, in apply()
119 compute_tmin_tmax_per_dim<I>::apply(p0, p1, box, ti_min, ti_max, diff); in apply()
164 Box, in apply()
167 >::apply(p0, p1, box, t_min, t_max); in apply()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/envelope/
H A Dinterface.hpp47 template <typename Box, typename Strategy>
49 Box& box, in apply()
52 dispatch::envelope<Geometry>::apply(geometry, box, strategy); in apply()
55 template <typename Box>
57 Box& box, in apply()
69 dispatch::envelope<Geometry>::apply(geometry, box, strategy_type()); in apply()
81 template <typename Box, typename Strategy>
83 Box& box, in apply()
87 concepts::check<Box>(); in apply()
89 resolve_strategy::envelope<Geometry>::apply(geometry, box, strategy); in apply()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/index/detail/
H A Dbounded_view.hpp4 // e.g. box, nsphere, etc.
35 // Segment -> Box
37 template <typename Segment, typename Box>
38 struct bounded_view<Segment, Box, segment_tag, box_tag, cs::cartesian>
41 typedef typename geometry::coordinate_type<Box>::type coordinate_type;
67 template <typename Segment, typename Box, typename CSystem>
68 struct bounded_view<Segment, Box, segment_tag, box_tag, CSystem>
71 typedef typename geometry::coordinate_type<Box>::type coordinate_type;
91 Box m_box;
94 // Box -> Box
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/relate/
H A Dpoint_geometry.hpp105 //// NOTE: Those tests should be consistent with within(Point, Box) and covered_by(Point, Box)
109 //template <typename Box, std::size_t I = 0, std::size_t D = geometry::dimension<Box>::value>
112 // static inline bool apply(Box const& box)
114 // return geometry::get<min_corner, I>(box) < geometry::get<max_corner, I>(box)
115 // && box_has_interior<Box, I + 1, D>::apply(box);
119 //template <typename Box, std::size_t D>
120 //struct box_has_interior<Box, D, D>
122 // static inline bool apply(Box const&) { return true; }
127 //template <typename Box, std::size_t I = 0, std::size_t D = geometry::dimension<Box>::value>
130 // static inline bool apply(Box const& box)
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/
H A Dpartition.hpp33 template <int Dimension, typename Box>
34 inline void divide_box(Box const& box, Box& lower_box, Box& upper_box) in divide_box() argument
36 typedef typename coordinate_type<Box>::type ctype; in divide_box()
38 // Divide input box into two parts, e.g. left/right in divide_box()
40 ctype mid = (geometry::get<min_corner, Dimension>(box) in divide_box()
41 + geometry::get<max_corner, Dimension>(box)) / two; in divide_box()
43 lower_box = box; in divide_box()
44 upper_box = box; in divide_box()
52 template <typename Box, typename IteratorVector, typename OverlapsPolicy>
53 inline void divide_into_subsets(Box const& lower_box, in divide_into_subsets()
[all …]
H A Dget_max_size.hpp28 template <typename Box, std::size_t Dimension>
31 static inline typename coordinate_type<Box>::type apply(Box const& box) in apply()
33 typename coordinate_type<Box>::type s in apply()
34 … = geometry::math::abs(geometry::get<1, Dimension>(box) - geometry::get<0, Dimension>(box)); in apply()
36 return (std::max)(s, get_max_size_box<Box, Dimension - 1>::apply(box)); in apply()
40 template <typename Box>
41 struct get_max_size_box<Box, 0>
43 static inline typename coordinate_type<Box>::type apply(Box const& box) in apply()
45 return geometry::math::abs(geometry::get<1, 0>(box) - geometry::get<0, 0>(box)); in apply()
51 template <typename Box>
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/algorithms/detail/is_valid/
H A Dbox.hpp35 template <typename Box, std::size_t I>
39 static inline bool apply(Box const& box, VisitPolicy& visitor) in apply()
41 if (math::equals(geometry::get<geometry::min_corner, I-1>(box), in apply()
42 geometry::get<geometry::max_corner, I-1>(box))) in apply()
47 else if (geometry::get<geometry::min_corner, I-1>(box) in apply()
49 geometry::get<geometry::max_corner, I-1>(box)) in apply()
53 return has_valid_corners<Box, I-1>::apply(box, visitor); in apply()
58 template <typename Box>
59 struct has_valid_corners<Box, 0>
62 static inline bool apply(Box const&, VisitPolicy& visitor) in apply()
[all …]
/OK3568_Linux_fs/external/xserver/glamor/
H A Dglamor_transfer.c50 BoxPtr box = glamor_pixmap_box_at(priv, box_index); in glamor_upload_boxes() local
60 int x1 = MAX(boxes->x1 + dx_dst, box->x1); in glamor_upload_boxes()
61 int x2 = MIN(boxes->x2 + dx_dst, box->x2); in glamor_upload_boxes()
62 int y1 = MAX(boxes->y1 + dy_dst, box->y1); in glamor_upload_boxes()
63 int y2 = MIN(boxes->y2 + dy_dst, box->y2); in glamor_upload_boxes()
76 x1 - box->x1, y1 - box->y1, in glamor_upload_boxes()
83 x1 - box->x1, y1 - box->y1, in glamor_upload_boxes()
116 BoxRec box; in glamor_upload_pixmap() local
118 box.x1 = 0; in glamor_upload_pixmap()
119 box.x2 = pixmap->drawable.width; in glamor_upload_pixmap()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/strategies/spherical/
H A Ddistance_cross_track_point_box.hpp47 \brief Strategy functor for distance point to box calculation
49 \details Class which calculates the distance of a point to a box, for
69 template <typename Point, typename Box>
71 : services::return_type<Strategy, Point, typename point_type<Box>::type>
92 template <typename Point, typename Box>
93 inline typename return_type<Point, Box>::type
94 apply(Point const& point, Box const& box) const in apply()
101 Strategy, Point, typename point_type<Box>::type in apply()
107 // the box are normalized in apply()
109 typedef typename return_type<Point, Box>::type return_type; in apply()
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/deps/boost/1.65.1/include/boost/geometry/index/detail/rtree/node/
H A Dvariant_dynamic.hpp22 template <typename Value, typename Parameters, typename Box, typename Allocators, typename Tag>
27 rtree::ptr_pair<Box, typename Allocators::node_pointer>,
30 rtree::ptr_pair<Box, typename Allocators::node_pointer>
42 template <typename Value, typename Parameters, typename Box, typename Allocators, typename Tag>
64 template <typename Value, typename Parameters, typename Box, typename Allocators>
65 struct node<Value, Parameters, Box, Allocators, node_variant_dynamic_tag>
68 variant_leaf<Value, Parameters, Box, Allocators, node_variant_dynamic_tag>,
69 variant_internal_node<Value, Parameters, Box, Allocators, node_variant_dynamic_tag>
73 template <typename Value, typename Parameters, typename Box, typename Allocators>
74 struct internal_node<Value, Parameters, Box, Allocators, node_variant_dynamic_tag>
[all …]
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/aarch64/gcc-arm-10.3-2021.07-x86_64-aarch64-none-linux-gnu/aarch64-none-linux-gnu/libc/usr/share/i18n/charmaps/
HDIBM866.gz1<code_set_name> IBM866 2<comment_char> % 3<escape_char> / 4% automatically generated ...
HDIBM866NAV.gz1<code_set_name> IBM866NAV 2<comment_char> % 3<escape_char> / 4% Obtained by ...
HDCP1125.gz1<code_set_name> CP1125 2<comment_char> % 3<escape_char> / 4% version: ...
/OK3568_Linux_fs/prebuilts/gcc/linux-x86/arm/gcc-arm-10.3-2021.07-x86_64-arm-none-linux-gnueabihf/arm-none-linux-gnueabihf/libc/usr/share/i18n/charmaps/
HDCP1125.gz1<code_set_name> CP1125 2<comment_char> % 3<escape_char> / 4% version: ...
HDCP771.gz1<code_set_name> CP771 2<comment_char> % 3<escape_char> / 4 5CHARMAP 6 ...
HDIBM866.gz1<code_set_name> IBM866 2<comment_char> % 3<escape_char> / 4% automatically generated ...

12345678910>>...55