Home
last modified time | relevance | path

Searched refs:Layer (Results 1 – 25 of 297) sorted by relevance

12345678910>>...12

/OK3568_Linux_fs/external/rknpu2/examples/3rdparty/opencv/opencv-linux-aarch64/include/opencv2/dnn/
H A Dall_layers.hpp74 class CV_EXPORTS BlankLayer : public Layer
77 static Ptr<Layer> create(const LayerParams &params);
83 class CV_EXPORTS ConstLayer : public Layer
86 static Ptr<Layer> create(const LayerParams &params);
90 class CV_EXPORTS LSTMLayer : public Layer
181 class CV_EXPORTS RNNLayer : public Layer
210 class CV_EXPORTS BaseConvolutionLayer : public Layer
230 class CV_EXPORTS LRNLayer : public Layer
242 class CV_EXPORTS PoolingLayer : public Layer
266 class CV_EXPORTS SoftmaxLayer : public Layer
[all …]
H A Dlayer.details.hpp44 Ptr<Layer> __LayerStaticRegisterer_func_##type(LayerParams &params) \
45 { return Ptr<Layer>(new class(params)); } \
51 Ptr<Layer> _layerDynamicRegisterer(LayerParams &params) in _layerDynamicRegisterer()
53 return Ptr<Layer>(LayerClass::create(params)); in _layerDynamicRegisterer()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/layers/
H A Dlayer.cpp.ejs22 <%- camelize(type) %>Layer::<%- camelize(type) %>Layer(const std::string& layerID)
23 : Layer(makeMutable<Impl>(LayerType::<%- camelize(type) %>, layerID, std::string())) {
26 <%- camelize(type) %>Layer::<%- camelize(type) %>Layer(const std::string& layerID, const std::strin…
27 : Layer(makeMutable<Impl>(LayerType::<%- camelize(type) %>, layerID, sourceID)) {
31 <%- camelize(type) %>Layer::<%- camelize(type) %>Layer(Immutable<Impl> impl_)
32 : Layer(std::move(impl_)) {
35 <%- camelize(type) %>Layer::~<%- camelize(type) %>Layer() = default;
37 const <%- camelize(type) %>Layer::Impl& <%- camelize(type) %>Layer::impl() const {
41 Mutable<<%- camelize(type) %>Layer::Impl> <%- camelize(type) %>Layer::mutableImpl() const {
45 std::unique_ptr<Layer> <%- camelize(type) %>Layer::cloneRef(const std::string& id_) const {
[all …]
H A Dfill_extrusion_layer_impl.hpp10 class FillExtrusionLayer::Impl : public Layer::Impl {
12 using Layer::Impl::Impl;
14 bool hasLayoutDifference(const Layer::Impl&) const override;
H A Dcircle_layer_impl.hpp10 class CircleLayer::Impl : public Layer::Impl {
12 using Layer::Impl::Impl;
14 bool hasLayoutDifference(const Layer::Impl&) const override;
H A Dheatmap_layer_impl.hpp10 class HeatmapLayer::Impl : public Layer::Impl {
12 using Layer::Impl::Impl;
14 bool hasLayoutDifference(const Layer::Impl&) const override;
H A Dhillshade_layer_impl.hpp10 class HillshadeLayer::Impl : public Layer::Impl {
12 using Layer::Impl::Impl;
14 bool hasLayoutDifference(const Layer::Impl&) const override;
H A Dfill_layer_impl.hpp10 class FillLayer::Impl : public Layer::Impl {
12 using Layer::Impl::Impl;
14 bool hasLayoutDifference(const Layer::Impl&) const override;
H A Dbackground_layer_impl.hpp10 class BackgroundLayer::Impl : public Layer::Impl {
12 using Layer::Impl::Impl;
14 bool hasLayoutDifference(const Layer::Impl&) const override;
H A Draster_layer_impl.hpp10 class RasterLayer::Impl : public Layer::Impl {
12 using Layer::Impl::Impl;
14 bool hasLayoutDifference(const Layer::Impl&) const override;
H A Dsymbol_layer_impl.hpp10 class SymbolLayer::Impl : public Layer::Impl {
12 using Layer::Impl::Impl;
14 bool hasLayoutDifference(const Layer::Impl&) const override;
H A Dline_layer_impl.hpp10 class LineLayer::Impl : public Layer::Impl {
12 using Layer::Impl::Impl;
14 bool hasLayoutDifference(const Layer::Impl&) const override;
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/
H A Dlayer.cpp10 Layer::Layer(Immutable<Impl> impl) in Layer() function in mbgl::style::Layer
15 Layer::~Layer() = default;
17 LayerType Layer::getType() const { in getType()
21 std::string Layer::getID() const { in getID()
25 VisibilityType Layer::getVisibility() const { in getVisibility()
29 float Layer::getMinZoom() const { in getMinZoom()
33 float Layer::getMaxZoom() const { in getMaxZoom()
37 void Layer::setObserver(LayerObserver* observer_) { in setObserver()
H A Dstyle_impl.hpp65 std::vector< Layer*> getLayers();
66 std::vector<const Layer*> getLayers() const;
67 Layer* getLayer(const std::string& id) const;
69 Layer* addLayer(std::unique_ptr<Layer>,
71 std::unique_ptr<Layer> removeLayer(const std::string& layerID);
90 Immutable<std::vector<Immutable<Layer::Impl>>> getLayerImpls() const;
113 Collection<Layer> layers;
132 void onLayerChanged(Layer&) override;
H A Dstyle_impl.cpp183 std::vector<Layer*> Style::Impl::getLayers() { in getLayers()
187 std::vector<const Layer*> Style::Impl::getLayers() const { in getLayers()
189 return std::vector<const Layer*>(wrappers.begin(), wrappers.end()); in getLayers()
192 Layer* Style::Impl::getLayer(const std::string& id) const { in getLayer()
196 Layer* Style::Impl::addLayer(std::unique_ptr<Layer> layer, optional<std::string> before) { in addLayer()
204 Layer* result = layers.add(std::move(layer), before); in addLayer()
210 std::unique_ptr<Layer> Style::Impl::removeLayer(const std::string& id) { in removeLayer()
211 std::unique_ptr<Layer> layer = layers.remove(id); in removeLayer()
329 void Style::Impl::onLayerChanged(Layer& layer) { in onLayerChanged()
357 Immutable<std::vector<Immutable<Layer::Impl>>> Style::Impl::getLayerImpls() const { in getLayerImpls()
H A Dstyle.cpp105 std::vector<Layer*> Style::getLayers() { in getLayers()
110 std::vector<const Layer*> Style::getLayers() const { in getLayers()
114 Layer* Style::getLayer(const std::string& layerID) { in getLayer()
119 const Layer* Style::getLayer(const std::string& layerID) const { in getLayer()
123 void Style::addLayer(std::unique_ptr<Layer> layer, const optional<std::string>& before) { in addLayer()
128 std::unique_ptr<Layer> Style::removeLayer(const std::string& id) { in removeLayer()
/OK3568_Linux_fs/kernel/Documentation/gpu/
H A Dkomeda-kms.rst22 Layer section in Overview of D71 like display IPs
24 Layer is the first pipeline stage, which prepares the pixel data for the next
46 Writeback Layer (wb_layer)
48 Writeback layer does the opposite things of Layer, which connects to compiz
64 compared with Layer, like if Layer supports 4K input size, the scaler only can
66 introduces Layer Split, which splits the whole image to two half parts and feeds
73 Similar to Layer Split, but Splitter is used for writeback, which splits the
120 "Layer-0" -> "Scaler-0"
121 "Layer-1" -> "Scaler-0"
122 "Layer-2" -> "Scaler-1"
[all …]
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/
H A Dstyle.hpp21 class Layer;
64 std::vector< Layer*> getLayers();
65 std::vector<const Layer*> getLayers() const;
67 Layer* getLayer(const std::string&);
68 const Layer* getLayer(const std::string&) const;
70 void addLayer(std::unique_ptr<Layer>, const optional<std::string>& beforeLayerID = {});
71 std::unique_ptr<Layer> removeLayer(const std::string& layerID);
/OK3568_Linux_fs/kernel/Documentation/ABI/testing/
H A Dsysfs-bus-usb-lvstest1 Link Layer Validation Device is a standard device for testing of Super
2 Speed Link Layer tests. These nodes are available in sysfs only when lvs
10 for Link Layer Validation device. It is needed for TD.7.06.
16 Set "U1 timeout" for the downstream port where Link Layer
24 Set "U2 timeout" for the downstream port where Link Layer
32 Write to this node to issue "Reset" for Link Layer Validation
39 Write to this node to issue "U3 entry" for Link Layer
46 Write to this node to issue "U3 exit" for Link Layer
53 with Link Layer Validation device. It is needed for TD.7.34.
58 Write to this node to issue "Warm Reset" for Link Layer Validation
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/style/conversion/
H A Dlayer.cpp19 optional<Error> setLayoutProperty(Layer& layer, const std::string& name, const Convertible& value) { in setLayoutProperty()
28 optional<Error> setPaintProperty(Layer& layer, const std::string& name, const Convertible& value) { in setPaintProperty()
37 optional<Error> setPaintProperties(Layer& layer, const Convertible& value) { in setPaintProperties()
51 optional<std::unique_ptr<Layer>> convertVectorLayer(const std::string& id, const Convertible& value… in convertVectorLayer()
88 static optional<std::unique_ptr<Layer>> convertRasterLayer(const std::string& id, const Convertible… in convertRasterLayer()
104 static optional<std::unique_ptr<Layer>> convertHillshadeLayer(const std::string& id, const Converti… in convertHillshadeLayer()
121 static optional<std::unique_ptr<Layer>> convertBackgroundLayer(const std::string& id, const Convert… in convertBackgroundLayer()
125 optional<std::unique_ptr<Layer>> Converter<std::unique_ptr<Layer>>::operator()(const Convertible& v… in operator ()()
155 optional<std::unique_ptr<Layer>> converted; in operator ()()
184 std::unique_ptr<Layer> layer = std::move(*converted); in operator ()()
H A Dmake_property_setters.hpp.ejs24 …etProperty<<%- camelize(layer.type) %>Layer, <%- propertyValueType(property) %>, &<%- camelize(lay…
36 …etProperty<<%- camelize(layer.type) %>Layer, <%- propertyValueType(property) %>, &<%- camelize(lay…
37 …ransition"] = &setTransition<<%- camelize(layer.type) %>Layer, &<%- camelize(layer.type) %>Layer::…
H A Dproperty_setter.hpp18 using PropertySetter = optional<Error> (*) (Layer&, const Convertible&);
21 optional<Error> setProperty(Layer& layer, const Convertible& value) { in setProperty()
38 optional<Error> setTransition(Layer& layer, const Convertible& value) { in setTransition()
54 inline optional<Error> setVisibility(Layer& layer, const Convertible& value) { in setVisibility()
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/layers/
H A Dlayer.hpp.ejs29 class <%- camelize(type) %>Layer : public Layer {
32 <%- camelize(type) %>Layer(const std::string& layerID);
34 <%- camelize(type) %>Layer(const std::string& layerID, const std::string& sourceID);
36 ~<%- camelize(type) %>Layer() final;
83 <%- camelize(type) %>Layer(Immutable<Impl>);
84 std::unique_ptr<Layer> cloneRef(const std::string& id) const final;
88 inline bool Layer::is<<%- camelize(type) %>Layer>() const {
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/include/mbgl/style/conversion/
H A Dlayer.hpp13 struct Converter<std::unique_ptr<Layer>> {
15 optional<std::unique_ptr<Layer>> operator()(const Convertible& value, Error& error) const;
18 optional<Error> setLayoutProperty(Layer& layer, const std::string& name, const Convertible& value);
19 optional<Error> setPaintProperty(Layer& layer, const std::string& name, const Convertible& value);
20 optional<Error> setPaintProperties(Layer& layer, const Convertible& value);
/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/renderer/
H A Drender_layer.hpp25 RenderLayer(style::LayerType, Immutable<style::Layer::Impl>);
30 static std::unique_ptr<RenderLayer> create(Immutable<style::Layer::Impl>);
82 Immutable<style::Layer::Impl> baseImpl;
83 void setImpl(Immutable<style::Layer::Impl>);

12345678910>>...12