Home
last modified time | relevance | path

Searched refs:ComponentType (Results 1 – 25 of 1668) sorted by relevance

12345678910>>...67

/dports/devel/hpx/hpx-1.2.1/hpx/runtime/components/
H A Dcomponent_factory.hpp59 #define HPX_REGISTER_ENABLED_COMPONENT_FACTORY(ComponentType, componentname) \ argument
61 ComponentType, componentname, ::hpx::components::factory_enabled) \
62 HPX_DEFINE_GET_COMPONENT_TYPE(ComponentType::wrapped_type) \
65 #define HPX_REGISTER_DISABLED_COMPONENT_FACTORY(ComponentType, componentname) \ argument
67 ComponentType, componentname, ::hpx::components::factory_disabled) \
68 HPX_DEFINE_GET_COMPONENT_TYPE(ComponentType::wrapped_type) \
77 #define HPX_REGISTER_MINIMAL_COMPONENT_FACTORY_1(ComponentType) \ argument
79 ComponentType, ComponentType, ::hpx::components::factory_check) \
80 HPX_DEFINE_GET_COMPONENT_TYPE(ComponentType::wrapped_type) \
82 #define HPX_REGISTER_MINIMAL_COMPONENT_FACTORY_2(ComponentType, componentname)\ argument
[all …]
H A Dderived_component_factory.hpp33 #define HPX_REGISTER_DERIVED_COMPONENT_FACTORY_3(ComponentType, componentname,\ argument
36 ComponentType, componentname, basecomponentname, \
38 HPX_DEFINE_GET_COMPONENT_TYPE(ComponentType::wrapped_type) \
40 #define HPX_REGISTER_DERIVED_COMPONENT_FACTORY_4(ComponentType, \ argument
42 HPX_REGISTER_COMPONENT_HEAP(ComponentType) \
44 HPX_DEFINE_COMPONENT_NAME(ComponentType::type_holder, componentname, \
46 HPX_REGISTER_MINIMAL_COMPONENT_REGISTRY_3(ComponentType, \
61 #define HPX_REGISTER_DERIVED_COMPONENT_FACTORY_DYNAMIC_3(ComponentType, \ argument
64 ComponentType, componentname, basecomponentname, \
66 HPX_DEFINE_GET_COMPONENT_TYPE(ComponentType::wrapped_type) \
[all …]
/dports/graphics/blender/blender-2.91.0/release/scripts/addons/io_scene_gltf2/io/com/
H A Dgltf2_io_constants.py18 class ComponentType(IntEnum): class
29 ComponentType.Byte: 'b',
31 ComponentType.Short: 'h',
33 ComponentType.UnsignedInt: 'I',
34 ComponentType.Float: 'f'
41 ComponentType.Byte: np.int8,
43 ComponentType.Short: np.int16,
63 ComponentType.Byte: 1,
65 ComponentType.Short: 2,
67 ComponentType.UnsignedInt: 4,
[all …]
/dports/games/openclaw/OpenClaw-0.0-51-gbac7730/OpenClaw/Engine/Actor/
H A DActor.h35 template <class ComponentType>
36 weak_ptr<ComponentType> GetComponent(uint32 id) in GetComponent()
47 return weak_ptr<ComponentType>(); in GetComponent()
51 template <class ComponentType>
59 …shared_ptr<ComponentType> sub(static_pointer_cast<ComponentType>(base)); // cast to subclass vers… in GetComponent()
65 return weak_ptr<ComponentType>(); in GetComponent()
69 template <class ComponentType>
70 weak_ptr<ComponentType> GetComponent() in GetComponent()
77 …shared_ptr<ComponentType> sub(static_pointer_cast<ComponentType>(base)); // cast to subclass vers… in GetComponent()
83 return weak_ptr<ComponentType>(); in GetComponent()
[all …]
/dports/science/InsightToolkit/ITK-5.0.1/Modules/Core/Common/include/
H A DitkRGBAPixel.h76 using ComponentType = TComponent; variable
90 RGBAPixel(const ComponentType r[4]):BaseArray(r) {} in RGBAPixel()
91 RGBAPixel(const ComponentType & r) { this->Fill(r); } in RGBAPixel()
94 RGBAPixel & operator=(const ComponentType r[4]);
99 Self operator *(const ComponentType & f) const;
100 Self operator /(const ComponentType & f) const;
105 const Self & operator*=(const ComponentType & f);
106 const Self & operator/=(const ComponentType & f);
120 ComponentType GetScalarValue() const in GetScalarValue()
122 return static_cast< ComponentType >( std::sqrt( in GetScalarValue()
[all …]
H A DitkDefaultConvertPixelTraits.h45 using ComponentType = typename PixelType::ComponentType;
63 static ComponentType GetScalarValue(const PixelType & pixel) in GetScalarValue()
147 using ComponentType = TComponentType; \
189 using ComponentType = VComponent; variable
199 const ComponentType &v) in SetNthComponent()
222 using ComponentType = VComponent; variable
232 const ComponentType &v) in SetNthComponent()
244 static ComponentType GetScalarValue(const TargetType &) in GetScalarValue()
265 using ComponentType = VComponent; variable
271 const ComponentType &v) in SetNthComponent()
[all …]
H A DitkRGBPixel.h75 using ComponentType = TComponent; variable
87 RGBPixel (const ComponentType & r) { this->Fill(r); } in RGBPixel()
92 RGBPixel(const ComponentType r[3]):BaseArray(r) {} in RGBPixel()
102 Self & operator=(const ComponentType r[3]);
107 Self operator *(const ComponentType & f) const;
108 Self operator /(const ComponentType & f) const;
113 const Self & operator*=(const ComponentType & f);
114 const Self & operator/=(const ComponentType & f);
128 ComponentType GetScalarValue() const in GetScalarValue()
130 return static_cast< ComponentType >( std::sqrt( in GetScalarValue()
[all …]
/dports/graphics/hugin/hugin-2020.0.0/src/deghosting/
H A Dsupport.h50 template <class ComponentType>
55 vigra::RGBValue<ComponentType> operator()(vigra::RGBValue<ComponentType> const& v) const { in operator()
56 vigra::RGBValue<ComponentType> retVal; in operator()
64 ComponentType offset;
89 template <class ComponentType>
90 class HatFunctor<vigra::RGBValue<ComponentType> > {
94 ComponentType operator()(vigra::RGBValue<ComponentType> v) const { in operator()
122 template <class ComponentType>
125 …NormalizeFunctor(vigra::RGBValue<ComponentType> oldMaxValue, vigra::RGBValue<ComponentType> newMax… in NormalizeFunctor()
129 vigra::RGBValue<ComponentType> operator()(vigra::RGBValue<ComponentType> const &v) { in operator()
[all …]
/dports/www/firefox-esr/firefox-91.8.0/dom/canvas/
H A DWebGLFormats.cpp15 const char* ToString(const ComponentType type) { in ToString()
17 case ComponentType::Int: in ToString()
19 case ComponentType::UInt: in ToString()
21 case ComponentType::NormInt: in ToString()
23 case ComponentType::NormUInt: in ToString()
25 case ComponentType::Float: in ToString()
33 case ComponentType::Int: in ToBaseType()
35 case ComponentType::UInt: in ToBaseType()
37 case ComponentType::NormInt: in ToBaseType()
38 case ComponentType::NormUInt: in ToBaseType()
[all …]
/dports/www/firefox/firefox-99.0/dom/canvas/
H A DWebGLFormats.cpp15 const char* ToString(const ComponentType type) { in ToString()
17 case ComponentType::Int: in ToString()
19 case ComponentType::UInt: in ToString()
21 case ComponentType::NormInt: in ToString()
23 case ComponentType::NormUInt: in ToString()
25 case ComponentType::Float: in ToString()
33 case ComponentType::Int: in ToBaseType()
35 case ComponentType::UInt: in ToBaseType()
37 case ComponentType::NormInt: in ToBaseType()
38 case ComponentType::NormUInt: in ToBaseType()
[all …]
/dports/mail/thunderbird/thunderbird-91.8.0/dom/canvas/
H A DWebGLFormats.cpp15 const char* ToString(const ComponentType type) { in ToString()
17 case ComponentType::Int: in ToString()
19 case ComponentType::UInt: in ToString()
21 case ComponentType::NormInt: in ToString()
23 case ComponentType::NormUInt: in ToString()
25 case ComponentType::Float: in ToString()
33 case ComponentType::Int: in ToBaseType()
35 case ComponentType::UInt: in ToBaseType()
37 case ComponentType::NormInt: in ToBaseType()
38 case ComponentType::NormUInt: in ToBaseType()
[all …]
/dports/lang/spidermonkey78/firefox-78.9.0/dom/canvas/
H A DWebGLFormats.cpp16 const char* ToString(const ComponentType type) { in ToString()
18 case ComponentType::Int: in ToString()
20 case ComponentType::UInt: in ToString()
22 case ComponentType::NormInt: in ToString()
24 case ComponentType::NormUInt: in ToString()
26 case ComponentType::Float: in ToString()
34 case ComponentType::Int: in ToBaseType()
36 case ComponentType::UInt: in ToBaseType()
38 case ComponentType::NormInt: in ToBaseType()
39 case ComponentType::NormUInt: in ToBaseType()
[all …]
/dports/math/vtk9/VTK-9.1.0/ThirdParty/vtkm/vtkvtkm/vtk-m/vtkm/
H A DVecTraits.h73 using ComponentType = typename VecType::ComponentType;
110 VTKM_EXEC_CONT static const ComponentType& GetComponent(
113 VTKM_EXEC_CONT static ComponentType& GetComponent(
121 ComponentType value);
157 template <typename A, typename S = typename vtkm::VecTraits<A>::ComponentType>
215 using ComponentType = typename VecType::ComponentType;
265 ComponentType value)
325 using ComponentType = typename VecType::ComponentType;
419 using ComponentType = typename VecType::ComponentType;
506 using ComponentType = ScalarType;
[all …]
/dports/math/vtk8/VTK-8.2.0/ThirdParty/vtkm/vtk-m/vtkm/
H A DVecTraits.h81 using ComponentType = typename VecType::ComponentType;
111 VTKM_EXEC_CONT static const ComponentType& GetComponent(
114 VTKM_EXEC_CONT static ComponentType& GetComponent(
122 ComponentType value);
148 using ComponentType = typename VecType::ComponentType;
182 static ComponentType& GetComponent(VecType& vector, vtkm::IdComponent component)
191 ComponentType value)
212 using ComponentType = typename VecType::ComponentType;
277 using ComponentType = typename VecType::ComponentType;
337 using ComponentType = ScalarType;
[all …]
H A DVecAxisAlignedPointCoordinates.h91 using ComponentType = vtkm::Vec<vtkm::FloatDefault, 3>;
97 VecAxisAlignedPointCoordinates(ComponentType origin = ComponentType(0, 0, 0),
98 ComponentType spacing = ComponentType(1, 1, 1))
108 VTKM_EXEC_CONT void CopyInto(vtkm::Vec<ComponentType, DestSize>& dest) const
118 ComponentType operator[](vtkm::IdComponent index) const
121 return ComponentType(this->Origin[0] + table.Get(index, 0) * this->Spacing[0],
127 const ComponentType& GetOrigin() const { return this->Origin; }
130 const ComponentType& GetSpacing() const { return this->Spacing; }
134 ComponentType Origin;
137 ComponentType Spacing;
[all …]
/dports/science/InsightToolkit/ITK-5.0.1/Modules/IO/MeshBase/include/
H A DitkMeshConvertPixelTraits.h49 using ComponentType = typename PixelType::ComponentType;
59 static ComponentType GetNthComponent(int c, const PixelType& pixel) in GetNthComponent()
63 static void SetNthComponent(int c, PixelType& pixel, const ComponentType& v) in SetNthComponent()
67 static ComponentType GetScalarValue(const PixelType& pixel) in GetScalarValue()
77 using ComponentType = type; \
86 static ComponentType GetNthComponent(int itkNotUsed(c), const type& pixel)\
90 static void SetNthComponent(int , type& pixel, const ComponentType& v) \
166 using ComponentType = componenttype; \
237 using ComponentType = componenttype; \
311 using ComponentType = componenttype; \
[all …]
/dports/lang/spidermonkey60/firefox-60.9.0/dom/canvas/
H A DWebGLFormats.cpp162 ComponentType componentType) { in AddFormatInfo()
305 …Info(FOO(DEPTH_COMPONENT16 ), 2, 0,0,0,0, 16,0, UnsizedFormat::D , false, ComponentType::NormUInt); in InitFormatInfo()
306 …Info(FOO(DEPTH_COMPONENT24 ), 3, 0,0,0,0, 24,0, UnsizedFormat::D , false, ComponentType::NormUInt); in InitFormatInfo()
307 …matInfo(FOO(DEPTH_COMPONENT32F), 4, 0,0,0,0, 32,0, UnsizedFormat::D , false, ComponentType::Float); in InitFormatInfo()
312 … AddFormatInfo(FOO(STENCIL_INDEX8), 1, 0,0,0,0, 0,8, UnsizedFormat::S, false, ComponentType::UInt); in InitFormatInfo()
382 …AddFormatInfo(FOO(ETC1_RGB8_OES), 0, 1,1,1,0, 0,0, UnsizedFormat::RGB, false, ComponentType::NormU… in InitFormatInfo()
390 …AddFormatInfo(FOO(Luminance8Alpha8), 2, 8,0,0,8, 0,0, UnsizedFormat::LA, false, ComponentType::Nor… in InitFormatInfo()
391 …AddFormatInfo(FOO(Luminance8 ), 1, 8,0,0,0, 0,0, UnsizedFormat::L , false, ComponentType::Nor… in InitFormatInfo()
392 …AddFormatInfo(FOO(Alpha8 ), 1, 0,0,0,8, 0,0, UnsizedFormat::A , false, ComponentType::Nor… in InitFormatInfo()
395 …Info(FOO(Luminance32FAlpha32F), 8, 32,0,0,32, 0,0, UnsizedFormat::LA, false, ComponentType::Float); in InitFormatInfo()
[all …]
/dports/math/vtk9/VTK-9.1.0/ThirdParty/vtkm/vtkvtkm/vtk-m/vtkm/cont/
H A DArrayHandleSOA.h45 using ComponentType = typename ComponentPortalType::ValueType;
49 VTKM_STATIC_ASSERT((std::is_same<typename VTraits::ComponentType, ComponentType>::value));
162 static_cast<vtkm::Id>(sizeof(ComponentType)); in GetNumberOfValues()
194 reinterpret_cast<ComponentType*>( in CreateWritePortal()
224 using ComponentType = typename vtkm::VecTraits<T>::ComponentType; variable
298 std::vector<ComponentType>&& vector0, in ArrayHandleSOA()
358 const ComponentType* array0, in ArrayHandleSOA()
375 const ComponentType* array0, in ArrayHandleSOA()
454 vtkm::Vec<ComponentType,
501 const ComponentType* array0, in make_ArrayHandleSOA()
[all …]
/dports/emulators/yuzu/yuzu-0b47f7a46/src/video_core/texture_cache/
H A Dformat_lookup_table.h20 Tegra::Texture::ComponentType red_component, Tegra::Texture::ComponentType green_component,
21 Tegra::Texture::ComponentType blue_component,
22 Tegra::Texture::ComponentType alpha_component) const noexcept;
36 Tegra::Texture::ComponentType red_component,
37 Tegra::Texture::ComponentType green_component,
38 Tegra::Texture::ComponentType blue_component,
39 Tegra::Texture::ComponentType alpha_component) noexcept;
42 Tegra::Texture::ComponentType red_component,
43 Tegra::Texture::ComponentType green_component,
44 Tegra::Texture::ComponentType blue_component,
[all …]
/dports/math/vtk9/VTK-9.1.0/ThirdParty/vtkm/vtkvtkm/vtk-m/vtkm/exec/
H A DCellMeasure.h78 typename PointCoordVecType::ComponentType v1 = pts[1] - pts[0]; in CellMeasure()
79 typename PointCoordVecType::ComponentType v2 = pts[2] - pts[0]; in CellMeasure()
97 typename PointCoordVecType::ComponentType edges[4] = { in CellMeasure()
104 typename PointCoordVecType::ComponentType cornerNormals[4] = { in CellMeasure()
112 typename PointCoordVecType::ComponentType principalAxes[2] = { in CellMeasure()
118 typename PointCoordVecType::ComponentType unitCenterNormal = in CellMeasure()
154 typename PointCoordVecType::ComponentType v1 = pts[1] - pts[0]; in CellMeasure()
155 typename PointCoordVecType::ComponentType v2 = pts[2] - pts[0]; in CellMeasure()
156 typename PointCoordVecType::ComponentType v3 = pts[3] - pts[0]; in CellMeasure()
218 typename PointCoordVecType::ComponentType v0 = pts[1] - pts[0]; in CellMeasure()
[all …]
/dports/math/vtk8/VTK-8.2.0/ThirdParty/vtkm/vtk-m/vtkm/exec/
H A DCellMeasure.h87 typename PointCoordVecType::ComponentType v1 = pts[1] - pts[0]; in CellMeasure()
88 typename PointCoordVecType::ComponentType v2 = pts[2] - pts[0]; in CellMeasure()
106 typename PointCoordVecType::ComponentType edges[4] = { in CellMeasure()
110 typename PointCoordVecType::ComponentType cornerNormals[4] = { in CellMeasure()
118 typename PointCoordVecType::ComponentType principalAxes[2] = { in CellMeasure()
123 typename PointCoordVecType::ComponentType unitCenterNormal = in CellMeasure()
159 typename PointCoordVecType::ComponentType v1 = pts[1] - pts[0]; in CellMeasure()
160 typename PointCoordVecType::ComponentType v2 = pts[2] - pts[0]; in CellMeasure()
161 typename PointCoordVecType::ComponentType v3 = pts[3] - pts[0]; in CellMeasure()
223 typename PointCoordVecType::ComponentType v0 = pts[1] - pts[0]; in CellMeasure()
[all …]
/dports/www/firefox-legacy/firefox-52.8.0esr/dom/canvas/
H A DWebGLFormats.cpp132 ComponentType componentType) in AddFormatInfo()
262 …Info(FOO(DEPTH_COMPONENT16 ), 2, 0,0,0,0, 16,0, UnsizedFormat::D , false, ComponentType::NormUInt); in InitFormatInfo()
263 …Info(FOO(DEPTH_COMPONENT24 ), 3, 0,0,0,0, 24,0, UnsizedFormat::D , false, ComponentType::NormUInt); in InitFormatInfo()
264 …matInfo(FOO(DEPTH_COMPONENT32F), 4, 0,0,0,0, 32,0, UnsizedFormat::D , false, ComponentType::Float); in InitFormatInfo()
269 … AddFormatInfo(FOO(STENCIL_INDEX8), 1, 0,0,0,0, 0,8, UnsizedFormat::S, false, ComponentType::UInt); in InitFormatInfo()
302 …AddFormatInfo(FOO(ETC1_RGB8_OES), 0, 1,1,1,0, 0,0, UnsizedFormat::RGB, false, ComponentType::NormU… in InitFormatInfo()
310 …AddFormatInfo(FOO(Luminance8Alpha8), 2, 8,0,0,8, 0,0, UnsizedFormat::LA, false, ComponentType::Nor… in InitFormatInfo()
311 …AddFormatInfo(FOO(Luminance8 ), 1, 8,0,0,0, 0,0, UnsizedFormat::L , false, ComponentType::Nor… in InitFormatInfo()
312 …AddFormatInfo(FOO(Alpha8 ), 1, 0,0,0,8, 0,0, UnsizedFormat::A , false, ComponentType::Nor… in InitFormatInfo()
315 …Info(FOO(Luminance32FAlpha32F), 8, 32,0,0,32, 0,0, UnsizedFormat::LA, false, ComponentType::Float); in InitFormatInfo()
[all …]
/dports/textproc/cast2gif/cast2gif-0.1.0/cargo-crates/rgb-0.8.16/src/
H A Dalt.rs12 pub b: ComponentType,
14 pub g: ComponentType,
16 pub r: ComponentType,
23 pub struct BGRA<ComponentType, AlphaComponentType = ComponentType> {
25 pub b: ComponentType,
27 pub g: ComponentType,
29 pub r: ComponentType,
39 pub struct ABGR<ComponentType, AlphaComponentType = ComponentType> {
55 pub struct ARGB<ComponentType, AlphaComponentType = ComponentType> {
102 pub ComponentType,
[all …]
/dports/math/vtk9/VTK-9.1.0/ThirdParty/vtkm/vtkvtkm/vtk-m/vtkm/testing/
H A DUnitTestVectorAnalysis.cxx42 typename Traits::ComponentType mag = internal::MyMag(vt); in MyNormal()
61 using ComponentType = typename vtkm::VecTraits<VectorType>::ComponentType; in TestVector() typedef
65 ComponentType magnitude = vtkm::Magnitude(vector); in TestVector()
66 ComponentType magnitudeCompare = internal::MyMag(vector); in TestVector()
75 ComponentType rmagnitude = vtkm::RMagnitude(vector); in TestVector()
152 using ComponentType = typename Traits::ComponentType; in operator ()() typedef
154 T zeroVector = T(ComponentType(0)); in operator ()()
164 T weight(ComponentType(0.5)); in operator ()()
165 ComponentType weightS(0.5); in operator ()()
205 using ComponentType = typename Traits::ComponentType; in operator ()() typedef
[all …]
/dports/math/vtk8/VTK-8.2.0/Accelerators/Vtkm/vtkmlib/
H A DPortalTraits.h32 using ComponentType = typename std::remove_const<T>::type; member
33 using Type = ComponentType;
41 ComponentType GetComponent(const Type& t, vtkm::IdComponent) in GetComponent()
50 using ComponentType = typename std::remove_const<T>::type;
62 ComponentType GetComponent(const Type& t, vtkm::IdComponent i)
72 using ComponentType = typename std::remove_const<T>::type;
84 ComponentType GetComponent(const Type& t, vtkm::IdComponent i)
94 using ComponentType = typename std::remove_const<T>::type;
108 ComponentType GetComponent(const Type& t, vtkm::IdComponent i)
120 using ComponentType = typename std::remove_const<T>::type;
[all …]

12345678910>>...67