Home
last modified time | relevance | path

Searched refs:VariableType (Results 1 – 25 of 915) sorted by relevance

12345678910>>...37

/dports/www/chromium-legacy/chromium-88.0.4324.182/third_party/angle/third_party/VK-GL-CTS/src/framework/randomshaders/
H A DrsgVariableType.hpp36 class VariableType class
127 VariableType* m_type;
131 VariableType (void);
133 VariableType (Type baseType, const VariableType& elementType, int numElements);
153 VariableType& operator= (const VariableType& other);
154 VariableType (const VariableType& other);
177 inline VariableType::VariableType (void) in VariableType() function in rsg::VariableType
186 inline VariableType::VariableType (Type baseType, int numElements) in VariableType() function in rsg::VariableType
196 inline VariableType::VariableType (Type baseType, const VariableType& elementType, int numElements) in VariableType() function in rsg::VariableType
206 inline VariableType::VariableType (Type baseType, const char* typeName) in VariableType() function in rsg::VariableType
[all …]
H A DrsgVariableType.cpp32 VariableType& VariableType::operator= (const VariableType& other) in operator =()
53 VariableType::VariableType (const VariableType& other) in VariableType() function in rsg::VariableType
59 bool VariableType::operator!= (const VariableType& other) const in operator !=()
76 bool VariableType::operator== (const VariableType& other) const in operator ==()
130 const VariableType& VariableType::getScalarType (Type baseType) in getScalarType()
138 VariableType(TYPE_FLOAT, 1) in getScalarType()
148 VariableType(TYPE_INT, 1) in getScalarType()
157 VariableType(TYPE_BOOL, 1) in getScalarType()
164 static const VariableType sampler2DType = VariableType(TYPE_SAMPLER_2D, 1); in getScalarType()
170 static const VariableType samplerCubeType = VariableType(TYPE_SAMPLER_CUBE, 1); in getScalarType()
[all …]
H A DrsgUtils.cpp63 case VariableType::TYPE_FLOAT: in computeRandomValue()
73 case VariableType::TYPE_BOOL: in computeRandomValue()
82 case VariableType::TYPE_INT: in computeRandomValue()
130 case VariableType::TYPE_INT: in isUndefinedValueRange()
145 case VariableType::TYPE_BOOL: in isUndefinedValueRange()
159 VariableType::TYPE_BOOL, in computeRandomType()
160 VariableType::TYPE_INT, in computeRandomType()
161 VariableType::TYPE_FLOAT in computeRandomType()
165 VariableType::Type baseType = VariableType::TYPE_LAST; in computeRandomType()
171 case VariableType::TYPE_INT: in computeRandomType()
[all …]
H A DrsgExpression.cpp360 : m_value(VariableType::getScalarType(VariableType::TYPE_FLOAT)) in FloatLiteral()
388 : m_value(VariableType::getScalarType(VariableType::TYPE_FLOAT)) in FloatLiteral()
403 if (type == VariableType(VariableType::TYPE_FLOAT, 1)) in getWeight()
430 : m_value(VariableType::getScalarType(VariableType::TYPE_INT)) in IntLiteral()
435 if (valueRange.getType() == VariableType(VariableType::TYPE_INT, 1)) in IntLiteral()
458 if (type == VariableType(VariableType::TYPE_INT, 1)) in getWeight()
484 : m_value(VariableType::getScalarType(VariableType::TYPE_BOOL)) in BoolLiteral()
503 : m_value(VariableType::getScalarType(VariableType::TYPE_BOOL)) in BoolLiteral()
519 if (type == VariableType(VariableType::TYPE_BOOL, 1)) in getWeight()
1466 VariableType::Type samplerType = VariableType::TYPE_LAST; in TexLookup()
[all …]
H A DrsgBinaryOps.cpp130 m_type = VariableType(VariableType::TYPE_FLOAT, 1); in CustomBinaryOp()
139 m_type = VariableType(VariableType::TYPE_FLOAT, 1); in CustomBinaryOp()
150 m_type = VariableType(VariableType::TYPE_BOOL, 1); in CustomBinaryOp()
151 VariableType floatType = VariableType(VariableType::TYPE_FLOAT, 1); in CustomBinaryOp()
243 VariableType floatType(VariableType::TYPE_FLOAT, 1); in createNextChild()
263 VariableType floatType(VariableType::TYPE_FLOAT, 1); in createNextChild()
283 VariableType floatType(VariableType::TYPE_FLOAT, 1); in createNextChild()
286 VariableType boolType(VariableType::TYPE_BOOL, 1); in createNextChild()
654 valueRange = ValueRange(VariableType(VariableType::TYPE_BOOL, 1)); in RelationalOp()
663 VariableType::Type inBaseTypes[] = { VariableType::TYPE_FLOAT, VariableType::TYPE_INT }; in RelationalOp()
[all …]
H A DrsgExecutionContext.cpp37 return ExecValueAccess(VariableType::getScalarType(VariableType::TYPE_BOOL), m_data); in getValue()
42 return ExecConstValueAccess(VariableType::getScalarType(VariableType::TYPE_BOOL), m_data); in getValue()
123 const VariableType& type = dst.getType(); in assignMasked()
127 case VariableType::TYPE_ARRAY: in assignMasked()
136 case VariableType::TYPE_STRUCT: in assignMasked()
145 case VariableType::TYPE_FLOAT: in assignMasked()
146 case VariableType::TYPE_INT: in assignMasked()
147 case VariableType::TYPE_BOOL: in assignMasked()
148 case VariableType::TYPE_SAMPLER_2D: in assignMasked()
149 case VariableType::TYPE_SAMPLER_CUBE: in assignMasked()
H A DrsgVariableValue.hpp79 const VariableType& getType (void) const { return m_type; } in getType()
83 const VariableType& m_type;
118 const VariableType* m_type;
186 DE_ASSERT(this->getType() == VariableType(VariableType::TYPE_FLOAT, Size)); in operator =()
218 const VariableType* m_type;
274 ValueRange (const VariableType& type);
304 VariableType m_type;
314 ValueStorage (const VariableType& type);
316 void setStorage (const VariableType& type);
334 ValueStorage<Stride>::ValueStorage (const VariableType& type) in ValueStorage()
[all …]
H A DrsgShaderGenerator.cpp139 VariableType::Type baseType = valueRange.getType().getBaseType(); in fillUndefinedComponents()
140 TCU_CHECK(baseType == VariableType::TYPE_FLOAT || in fillUndefinedComponents()
141 baseType == VariableType::TYPE_INT || in fillUndefinedComponents()
142 baseType == VariableType::TYPE_BOOL); in fillUndefinedComponents()
153 case VariableType::TYPE_FLOAT: min = 0.0f; max = 1.0f; break; in fillUndefinedComponents()
154 case VariableType::TYPE_INT: min = 0; max = 1; break; in fillUndefinedComponents()
155 case VariableType::TYPE_BOOL: min = false; max = true; break; in fillUndefinedComponents()
206 …Variable* fragColorVar = m_state.getVariableManager().allocate(VariableType(VariableType::TYPE_FLO… in generate()
221 main.setReturnType(VariableType(VariableType::TYPE_VOID)); in generate()
254 …Variable* glPosVariable = m_state.getVariableManager().allocate(VariableType(VariableType::TYPE_FL… in generate()
[all …]
/dports/security/py-angr/angr-9.0.5405/tests/
H A Dtest_variablerecovery.py10 from angr.knowledge_plugins.variables import VariableType
101 if var_sort == VariableType.MEMORY:
103 elif var_sort == VariableType.REGISTER:
120 if var_sort == VariableType.MEMORY:
122 elif var_sort == VariableType.REGISTER:
145 … {'sort': VariableType.MEMORY, 'location': 'stack', 'base': 'bp', 'offset': -0x8, 'size': 1},
154 … {'sort': VariableType.MEMORY, 'location': 'stack', 'base': 'bp', 'offset': -0x4, 'size': 4},
162 {'sort': VariableType.REGISTER, 'reg': 16, 'size': 8},
163 {'sort': VariableType.REGISTER, 'reg': 32, 'size': 8},
164 {'sort': VariableType.REGISTER, 'reg': 64, 'size': 8},
[all …]
/dports/math/vtk9/VTK-9.1.0/ThirdParty/ioss/vtkioss/
H A DIoss_VariableType.C42 VariableType::~VariableType() = default;
44 VariableType::VariableType(const std::string &type, int comp_count, bool delete_me) in VariableType() function
64 Registry &VariableType::registry() in registry()
75 int VariableType::describe(NameList *names) in describe()
137 const VariableType *VariableType::factory(const std::string &raw_name, int copies) in factory()
139 VariableType *inst = nullptr; in factory()
166 const VariableType *VariableType::factory(const std::vector<Suffix> &suffices) in factory()
171 const VariableType *ivt = nullptr; in factory()
216 bool VariableType::match(const std::vector<Suffix> &suffices) const in match()
247 bool VariableType::build_variable_type(const std::string &raw_type) in build_variable_type()
[all …]
H A DIoss_VariableType.h21 class VariableType; variable
41 std::vector<Ioss::VariableType *> m_deleteThese;
62 class VariableType
72 VariableType(const VariableType &) = delete;
73 VariableType &operator=(const VariableType &) = delete;
74 virtual ~VariableType();
90 static const VariableType *factory(const std::vector<Suffix> &suffices);
93 VariableType(const std::string &type, int comp_count, bool delete_me = false);
103 inline std::string Ioss::VariableType::name() const { return name_; } in name()
105 inline int Ioss::VariableType::component_count() const { return componentCount; } in component_count()
[all …]
H A DIoss_ConcreteVariableType.C83 Ioss::Invalid_Storage::Invalid_Storage() : Ioss::VariableType(invalid(), 0) {} in Invalid_Storage()
98 Ioss::Scalar::Scalar() : Ioss::VariableType(scalar(), 1) in Scalar()
101 Ioss::VariableType::alias("scalar", "real"); in Scalar()
103 Ioss::VariableType::alias("scalar", "integer"); in Scalar()
104 Ioss::VariableType::alias("scalar", "unsigned integer"); in Scalar()
124 Ioss::Vector_2D::Vector_2D() : Ioss::VariableType(vector_2d(), 2) in Vector_2D()
126 Ioss::VariableType::alias("vector_2d", "pair"); in Vector_2D()
141 Ioss::Vector_3D::Vector_3D() : Ioss::VariableType(vector_3d(), 3) {} in Vector_3D()
156 Ioss::Quaternion_2D::Quaternion_2D() : Ioss::VariableType(quaternion_2d(), 2) {} in Quaternion_2D()
408 Ioss::Matrix_22::Matrix_22() : Ioss::VariableType(matrix_22(), 4) {} in Matrix_22()
[all …]
H A DIoss_CompositeVariableType.C26 VariableType *CompositeVariableType::composite_variable_type(const VariableType *inst, int copies) in composite_variable_type()
28 VariableType *comp_inst = nullptr; in composite_variable_type()
44 CompositeVariableType::CompositeVariableType(const VariableType *base_type, int copies, in CompositeVariableType()
46 : VariableType(composite_name(base_type->name(), copies), in CompositeVariableType()
54 : VariableType(my_name, number_components, delete_me), baseType(nullptr), copies_(0) in CompositeVariableType()
74 my_label += VariableType::numeric_label(which_instance + 1, copies_, name()); in label()
78 const VariableType *CompositeVariableType::GetBaseType() const { return baseType; } in GetBaseType()
H A DIoss_CompositeVariableType.h16 class CompositeVariableType : public VariableType
20 static VariableType *composite_variable_type(const VariableType *inst, int copies);
24 CompositeVariableType(const VariableType *base_type, int copies, bool delete_me);
27 const VariableType *GetBaseType() const;
31 const VariableType *baseType;
/dports/lang/mono/mono-5.10.1.57/mcs/class/referencesource/System.Data.SqlXml/System/Xml/Xsl/XsltOld/
H A DVariableAction.cs14 internal enum VariableType { enum
31 protected VariableType varType;
43 internal VariableType VarType {
50 …get { return this.varType == VariableType.GlobalVariable || this.varType == VariableType.GlobalPar…
53 internal VariableAction(VariableType type) { in VariableAction()
115 if (this.varType == VariableType.GlobalParameter) { in Execute()
117 } else if (this.varType == VariableType.LocalParameter) { in Execute()
163 XPathResultType IXsltContextVariable.VariableType {
170 …get { return this.varType == VariableType.LocalVariable || this.varType == VariableType.LocalPara…
173 …get { return this.varType == VariableType.LocalParameter || this.varType == VariableType.GlobalPar…
/dports/lang/mono/mono-5.10.1.57/external/corefx/src/System.Private.Xml/src/System/Xml/Xsl/XsltOld/
H A DVariableAction.cs10 internal enum VariableType enum
29 protected VariableType varType;
44 internal VariableType VarType
54 …get { return this.varType == VariableType.GlobalVariable || this.varType == VariableType.GlobalPar…
57 internal VariableAction(VariableType type) in VariableAction()
134 if (this.varType == VariableType.GlobalParameter) in Execute()
138 else if (this.varType == VariableType.LocalParameter) in Execute()
188 XPathResultType IXsltContextVariable.VariableType
198 …get { return this.varType == VariableType.LocalVariable || this.varType == VariableType.LocalParam…
202 …get { return this.varType == VariableType.LocalParameter || this.varType == VariableType.GlobalPar…
/dports/math/vtk9/VTK-9.1.0/ThirdParty/fides/vtkfides/fides/
H A DDataSource.cxx163 template <typename VariableType>
200 template <typename VariableType>
213 VariableType* buffer = nullptr; in ReadVariableInternal()
300 retVal = AllocateArrayHandle<VariableType, VariableType>(bufSize, buffer); in ReadVariableInternal()
303 retVal = AllocateArrayHandle<VariableType, vtkm::Vec<VariableType, 2>>(bufSize2, buffer); in ReadVariableInternal()
319 template <typename VariableType>
358 template <typename VariableType>
368 template <typename VariableType>
377 template <typename VariableType>
454 template <typename VariableType>
[all …]
/dports/devel/deforaos-libsystem/libSystem-0.3.1/include/System/
H A Dvariable.h48 } VariableType; typedef
54 Variable * variable_new(VariableType type, void const * value);
55 Variable * variable_new_array(VariableType type, size_t size, ...);
56 Variable * variable_new_arrayv(VariableType type, size_t size, void ** values);
59 VariableType * types, void ** values);
64 Variable * variable_new_deserialize_type(VariableType type, size_t * size,
70 int variable_get_as(Variable * variable, VariableType type, void * result);
72 VariableType variable_get_type(Variable * variable);
79 int variable_is_type(Variable * variable, VariableType type);
82 int variable_set_from(Variable * variable, VariableType type,
/dports/graphics/qt5-3d/kde-qt3d-5.15.2p39/src/extras/shaders/graphs/
H A Dphong.graph13 "type": "QShaderLanguage::VariableType",
32 "type": "QShaderLanguage::VariableType",
48 "type": "QShaderLanguage::VariableType",
64 "type": "QShaderLanguage::VariableType",
79 "type": "QShaderLanguage::VariableType",
95 "type": "QShaderLanguage::VariableType",
119 "type": "QShaderLanguage::VariableType",
142 "type": "QShaderLanguage::VariableType",
152 "type": "QShaderLanguage::VariableType",
162 "type": "QShaderLanguage::VariableType",
[all …]
/dports/math/vtk9/VTK-9.1.0/ThirdParty/ioss/vtkioss/transform/
H A DIotr_VectorMagnitude.C36 const Ioss::VariableType *VectorMagnitude::output_storage(const Ioss::VariableType *in) const in output_storage()
38 static const Ioss::VariableType *v2d = Ioss::VariableType::factory("vector_2d"); in output_storage()
39 static const Ioss::VariableType *v3d = Ioss::VariableType::factory("vector_3d"); in output_storage()
40 static const Ioss::VariableType *sca = Ioss::VariableType::factory("scalar"); in output_storage()
/dports/devel/tree-sitter/tree-sitter-0.20.1/cli/src/generate/
H A Dgrammars.rs7 pub(crate) enum VariableType { enum
19 pub kind: VariableType,
47 pub kind: VariableType,
84 pub kind: VariableType,
91 pub kind: VariableType,
176 kind: VariableType::Named, in named()
184 kind: VariableType::Auxiliary, in auxiliary()
192 kind: VariableType::Hidden, in hidden()
206 impl VariableType { impl
208 *self == VariableType::Named || *self == VariableType::Anonymous in is_visible()
[all …]
H A Dnode_types.rs621 VariableType::Named => { in generate_node_types_json()
681 ) -> VariableType { in variable_type_for_child_type() argument
686 VariableType::Named in variable_type_for_child_type()
688 VariableType::Hidden in variable_type_for_child_type()
694 _ => VariableType::Hidden, in variable_type_for_child_type()
739 kind: VariableType::Named, in test_node_types_simple()
747 kind: VariableType::Named, in test_node_types_simple()
754 kind: VariableType::Named, in test_node_types_simple()
835 kind: VariableType::Named, in test_node_types_simple_extras()
1330 kind: VariableType::Named, in test_node_types_with_fields_on_hidden_tokens()
[all …]
/dports/math/py-or-tools/or-tools-9.2/ortools/glop/
H A Dvariables_info.cc35 variable_type_.resize(num_cols, VariableType::UNCONSTRAINED); in LoadBoundsAndReturnTrueIfUnchanged()
324 return VariableType::UNCONSTRAINED; in ComputeVariableType()
326 return VariableType::UPPER_BOUNDED; in ComputeVariableType()
328 return VariableType::LOWER_BOUNDED; in ComputeVariableType()
330 return VariableType::FIXED_VARIABLE; in ComputeVariableType()
332 return VariableType::UPPER_AND_LOWER_BOUNDED; in ComputeVariableType()
400 case VariableType::UPPER_AND_LOWER_BOUNDED: in TransformToDualPhaseIProblem()
403 variable_type_[col] = VariableType::FIXED_VARIABLE; in TransformToDualPhaseIProblem()
405 case VariableType::LOWER_BOUNDED: in TransformToDualPhaseIProblem()
410 case VariableType::UPPER_BOUNDED: in TransformToDualPhaseIProblem()
[all …]
H A Dinitial_basis.cc206 case VariableType::UNCONSTRAINED: in Initialize()
208 case VariableType::LOWER_BOUNDED:
210 case VariableType::UPPER_BOUNDED:
212 case VariableType::UPPER_AND_LOWER_BOUNDED:
214 case VariableType::FIXED_VARIABLE:
375 case VariableType::UNCONSTRAINED:
377 case VariableType::LOWER_BOUNDED:
379 case VariableType::UPPER_BOUNDED:
383 case VariableType::FIXED_VARIABLE:
391 if (type == VariableType::LOWER_BOUNDED) {
[all …]
/dports/math/py-or-tools/or-tools-9.2/ortools/lp_data/
H A Dlp_types.cc52 std::string GetVariableTypeString(VariableType variable_type) {
54 case VariableType::UNCONSTRAINED:
56 case VariableType::LOWER_BOUNDED:
58 case VariableType::UPPER_BOUNDED:
60 case VariableType::UPPER_AND_LOWER_BOUNDED:
62 case VariableType::FIXED_VARIABLE:

12345678910>>...37