Home
last modified time | relevance | path

Searched refs:m_type (Results 1 – 25 of 196) sorted by relevance

12345678

/third_party/vk-gl-cts/framework/randomshaders/
DrsgToken.cpp32 : m_type(IDENTIFIER) in Token()
41 if (m_type == IDENTIFIER) in ~Token()
47 if (m_type == IDENTIFIER) in operator =()
53 m_type = other.m_type; in operator =()
55 if (m_type == IDENTIFIER) in operator =()
61 else if (m_type == FLOAT_LITERAL) in operator =()
63 else if (m_type == INT_LITERAL) in operator =()
65 else if (m_type == BOOL_LITERAL) in operator =()
72 : m_type(TYPE_LAST) in Token()
79 if (m_type != other.m_type) in operator !=()
[all …]
DrsgVariableType.hpp67 : m_type(DE_NULL) in Member()
73 : m_type(new VariableType(type)) in Member()
80 delete m_type; in ~Member()
84 : m_type(DE_NULL) in Member()
87 if (other.m_type) in Member()
88 m_type = new VariableType(*other.m_type); in Member()
96 delete m_type; in operator =()
98 m_type = DE_NULL; in operator =()
101 if (other.m_type) in operator =()
102 m_type = new VariableType(*other.m_type); in operator =()
[all …]
DrsgVariableValue.hpp77 …StridedValueRead (const VariableType& type, const Scalar* value) : m_type(type), m_value(value) {} in StridedValueRead()
79 const VariableType& getType (void) const { return m_type; } in getType()
83 const VariableType& m_type; member in rsg::StridedValueRead
91 ConstStridedValueAccess (void) : m_type(DE_NULL), m_value(DE_NULL) {} in ConstStridedValueAccess()
92 …ConstStridedValueAccess (const VariableType& type, const Scalar* valuePtr) : m_type(&type), m_valu… in ConstStridedValueAccess()
94 const VariableType& getType (void) const { return *m_type; } in getType()
118 const VariableType* m_type; member in rsg::ConstStridedValueAccess
200 ConstValueRangeAccess (void) : m_type(DE_NULL), m_min(DE_NULL), m_max(DE_NULL) {} in ConstValueRangeAccess()
201 …(const VariableType& type, const Scalar* minVal, const Scalar* maxVal) : m_type(&type), m_min(cons… in ConstValueRangeAccess()
203 const VariableType& getType (void) const { return *m_type; } in getType()
[all …]
DrsgToken.hpp137 inline bool operator== (Type type) const { return m_type == type; } in operator ==()
138 inline bool operator!= (Type type) const { return m_type != type; } in operator !=()
145 inline Type getType (void) const { return m_type; } in getType()
153 Type m_type; member in rsg::Token
165 : m_type(TYPE_LAST) in Token()
171 : m_type(type) in Token()
177 : m_type(FLOAT_LITERAL) in Token()
183 : m_type(INT_LITERAL) in Token()
189 : m_type(BOOL_LITERAL) in Token()
201 DE_ASSERT(m_type == IDENTIFIER); in getIdentifier()
[all …]
/third_party/vk-gl-cts/modules/gles3/stress/
Des3sVertexArrayTests.cpp158 Array::InputType m_type; member in deqp::gles3::Stress::__anon31702c920111::SingleVertexArrayStrideGroup
163 , m_type (type) in SingleVertexArrayStrideGroup()
185 …const bool packed = m_type == Array::INPUTTYPE_UNSIGNED_INT_2_10_10_10 || m_type == Array::INPUT… in init()
186 … = (strides[strideNdx] < 0) ? ((packed) ? (16) : (Array::inputTypeSize(m_type) * componentCount)… in init()
187 …t alignment = (packed) ? (Array::inputTypeSize(m_type) * componentCount) : (Array::inputTypeSize( in init()
192 …if((m_type == Array::INPUTTYPE_UNSIGNED_INT_2_10_10_10 || m_type == Array::INPUTTYPE_INT_2_10_10_1… in init()
195 MultiVertexArrayTest::Spec::ArraySpec arraySpec(m_type, in init()
203 GLValue::getMinValue(m_type), in init()
204 GLValue::getMaxValue(m_type)); in init()
263 Array::InputType m_type; member in deqp::gles3::Stress::__anon31702c920111::SingleVertexArrayFirstGroup
[all …]
/third_party/vk-gl-cts/modules/gles3/functional/
Des3fVertexArrayTest.cpp155 Array::InputType m_type; member in deqp::gles3::Functional::SingleVertexArrayStrideGroup
160 , m_type (type) in SingleVertexArrayStrideGroup()
182 …const bool packed = m_type == Array::INPUTTYPE_UNSIGNED_INT_2_10_10_10 || m_type == Array::INPUT… in init()
183 … = (strides[strideNdx] < 0) ? ((packed) ? (16) : (Array::inputTypeSize(m_type) * componentCount)… in init()
184 …t alignment = (packed) ? (Array::inputTypeSize(m_type) * componentCount) : (Array::inputTypeSize( in init()
189 …if((m_type == Array::INPUTTYPE_UNSIGNED_INT_2_10_10_10 || m_type == Array::INPUTTYPE_INT_2_10_10_1… in init()
192 MultiVertexArrayTest::Spec::ArraySpec arraySpec(m_type, in init()
200 GLValue::getMinValue(m_type), in init()
201 GLValue::getMaxValue(m_type)); in init()
260 Array::InputType m_type; member in deqp::gles3::Functional::SingleVertexArrayFirstGroup
[all …]
/third_party/vk-gl-cts/framework/opengl/
DgluVarTypeUtil.hpp142 bool isValid (void) const { return isValidTypePath(m_type, m_path); } in isValid()
143 VarType getType (void) const { return getVarType(m_type, m_path); } in getType()
148 …= (const SubTypeAccess& other) const { return m_path == other.m_path && m_type == other.m_type; } in operator ==()
149 …= (const SubTypeAccess& other) const { return m_path != other.m_path || m_type != other.m_type; } in operator !=()
152 VarType m_type; member in glu::SubTypeAccess
166 …or== (const SubTypeIterator<IsExpanded>& other) const { return m_type == other.m_type && m_path … in operator ==()
167 …or!= (const SubTypeIterator<IsExpanded>& other) const { return m_type != other.m_type || m_path … in operator !=()
172 void toStream (std::ostream& str) const { str << TypeAccessFormat(*m_type, m_path); } in toStream()
173 …VarType getType (void) const { return getVarType(*m_type, m_path.begin(), m_path.end());… in getType()
184 const VarType* m_type; member in glu::SubTypeIterator
[all …]
DgluVarType.cpp32 : m_type(VARTYPE_LAST) in VarType()
37 : m_type(VARTYPE_LAST) in VarType()
43 : m_type(VARTYPE_BASIC) in VarType()
50 : m_type(VARTYPE_ARRAY) in VarType()
58 : m_type(VARTYPE_STRUCT) in VarType()
65 if (m_type == VARTYPE_ARRAY) in ~VarType()
74 VarType *oldElementType = m_type == VARTYPE_ARRAY ? m_data.array.elementType : DE_NULL; in operator =()
76 m_type = other.m_type; in operator =()
79 if (m_type == VARTYPE_ARRAY) in operator =()
94 switch (m_type) in getScalarSize()
[all …]
/third_party/vk-gl-cts/modules/gles31/functional/
Des31fProgramInterfaceDefinitionUtil.hpp45 VariablePathComponent (void) :m_type(TYPE_LAST) { } in VariablePathComponent()
46 …VariablePathComponent (const glu::VarType* type) :m_type(TYPE_TYPE) { m_data.type = type; } in VariablePathComponent()
47 …VariablePathComponent (const glu::InterfaceBlock* block) :m_type(TYPE_INTERFACEBLOCK) { m_data.bl… in VariablePathComponent()
48 …VariablePathComponent (const glu::VariableDeclaration* decl) :m_type(TYPE_DECLARATION) { m_data.d… in VariablePathComponent()
50 …PathComponent (const VariablePathComponent& other) : m_data(other.m_data), m_type(other.m_type) { } in VariablePathComponent()
51 …VariablePathComponent& operator= (const VariablePathComponent& other) { m_type = other.m_type in operator =()
53 bool isVariableType (void) const { return m_type == TYPE_TYPE; } in isVariableType()
54 bool isInterfaceBlock (void) const { return m_type == TYPE_INTERFACEBLOCK; } in isInterfaceBlock()
55 bool isDeclaration (void) const { return m_type == TYPE_DECLARATION; } in isDeclaration()
80 Type m_type; member in deqp::gles31::Functional::ProgramInterfaceDefinition::VariablePathComponent
Des31fTextureBufferTests.cpp150 const QueryType m_type; member in deqp::gles31::Functional::__anon75c958a40411::LimitQueryCase
157 , m_type (type) in LimitQueryCase()
169 verifyStateIntegerMin(result, gl, m_target, m_minValue, m_type); in iterate()
185 const QueryType m_type; member in deqp::gles31::Functional::__anon75c958a40411::AlignmentQueryCase
192 , m_type (type) in AlignmentQueryCase()
204 verifyStateIntegerMax(result, gl, m_target, m_maxValue, m_type); in iterate()
218 const QueryType m_type; member in deqp::gles31::Functional::__anon75c958a40411::TextureBufferBindingQueryCase
223 , m_type (type) in TextureBufferBindingQueryCase()
240 verifyStateInteger(result, gl, GL_TEXTURE_BUFFER_BINDING, 0, m_type); in iterate()
253 verifyStateInteger(result, gl, GL_TEXTURE_BUFFER_BINDING, buffer, m_type); in iterate()
[all …]
/third_party/vk-gl-cts/modules/glshared/
DglsTextureStateQueryTests.cpp763 const QueryType m_type; member in deqp::gls::TextureStateQueryTests::__anonba4bbb3e0111::TextureTest
778 , m_type (type) in TextureTest()
796 if (!isCoreQuery(m_renderCtx.getType(), m_type)) in init()
797 extensions.add(getQueryExtension(m_renderCtx.getType(), m_type)); in init()
896 verifyStateTextureParamInteger(result, gl, m_target, m_pname, GL_DEPTH_COMPONENT, m_type); in test()
907 verifyStateTextureParamInteger(result, gl, m_target, m_pname, GL_STENCIL_INDEX, m_type); in test()
911 verifyStateTextureParamInteger(result, gl, m_target, m_pname, GL_DEPTH_COMPONENT, m_type); in test()
915 verifyStateTextureParamInteger(result, gl, m_target, m_pname, GL_STENCIL_INDEX, m_type); in test()
919 verifyStateTextureParamInteger(result, gl, m_target, m_pname, GL_DEPTH_COMPONENT, m_type); in test()
929 verifyStateTextureParamInteger(result, gl, m_target, m_pname, GL_STENCIL_INDEX, m_type); in test()
[all …]
DglsAttributeLocationTests.hpp102 const AttribType getType (void) const { return m_type; } in getType()
109 AttribType m_type; member in deqp::gls::AttributeLocationTestUtil::Attribute
146 const AttribType m_type; member in deqp::gls::BindAttributeTest
165 const AttribType m_type; member in deqp::gls::BindMaxAttributesTest
184 const AttribType m_type; member in deqp::gls::BindAliasingAttributeTest
203 const AttribType m_type; member in deqp::gls::BindMaxAliasingAttributeTest
221 const AttribType m_type; member in deqp::gls::BindInactiveAliasingAttributeTest
239 const AttribType m_type; member in deqp::gls::BindHoleAttributeTest
311 const AttribType m_type; member in deqp::gls::LocationAttributeTest
329 const AttribType m_type; member in deqp::gls::LocationMaxAttributesTest
[all …]
DglsUniformBlockCase.hpp81 bool isBasicType (void) const { return m_type == TYPE_BASIC; } in isBasicType()
82 bool isArrayType (void) const { return m_type == TYPE_ARRAY; } in isArrayType()
83 bool isStructType (void) const { return m_type == TYPE_STRUCT; } in isStructType()
105 Type m_type; member in deqp::gls::ub::VarType
128 …StructMember (const char* name, const VarType& type, deUint32 flags) : m_name(name), m_type(type),… in StructMember()
132 const VarType& getType (void) const { return m_type; } in getType()
137 VarType m_type; member in deqp::gls::ub::StructMember
170 const VarType& getType (void) const { return m_type; } in getType()
175 VarType m_type; member in deqp::gls::ub::Uniform
DglsAttributeLocationTests.cpp672 : m_type (type) in Attribute()
810 , m_type (type) in BindAttributeTest()
822 …attributes.push_back(Attribute(m_type, "a_0", Attribute::LOC_UNDEF, Cond::COND_ALWAYS, m_arraySize… in iterate()
835 , m_type (type) in BindMaxAttributesTest()
852 …c = maxAttributes - (arrayElementCount * m_type.getLocationSize()); loc >= 0; loc -= (arrayElement… in iterate()
854 …attributes.push_back(Attribute(m_type, "a_" + de::toString(ndx), Attribute::LOC_UNDEF, Cond::COND_… in iterate()
871 , m_type (type) in BindAliasingAttributeTest()
884 attributes.push_back(Attribute(m_type, "a_0", Attribute::LOC_UNDEF, Cond("A", true), m_arraySize)); in iterate()
899 , m_type (type) in BindMaxAliasingAttributeTest()
916 …for (int loc = maxAttributes - arrayElementCount * m_type.getLocationSize(); loc >= 0; loc -= m_ty… in iterate()
[all …]
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/image/
DvktImageTexture.cpp38 switch (m_type) in checkInvariants()
86 , m_type (imageType) in Texture()
96 , m_type (other.m_type) in Texture()
118 switch (m_type) in layerSize()
144 switch (m_type) in size()
168 switch (m_type) in dimension()
192 switch (m_type) in layerDimension()
DvktImageMismatchedFormatsTests.cpp233 const TestType m_type; member in vkt::image::__anon8c9a88980111::MismatchedFormatTest
245 , m_type (type) in MismatchedFormatTest()
256 if (m_type == TestType::SPARSE_READ) in checkSupport()
265 fillImageCreateInfo(imageCreateInfo, m_type, m_format); in checkSupport()
290 if (m_type == TestType::READ) in initPrograms()
303 else if (m_type == TestType::WRITE) in initPrograms()
316 else if (m_type == TestType::SPARSE_READ) in initPrograms()
358 const TestType m_type; member in vkt::image::__anon8c9a88980111::MismatchedFormatTestInstance
366 , m_type (type) in MismatchedFormatTestInstance()
397 fillImageCreateInfo(imageCreateInfo, m_type, m_format); in iterate()
[all …]
/third_party/json/include/nlohmann/detail/conversions/
Dto_json.hpp33 j.m_type = value_t::boolean; in construct()
45 j.m_type = value_t::string; in construct()
53 j.m_type = value_t::string; in construct()
63 j.m_type = value_t::string; in construct()
75 j.m_type = value_t::binary; in construct()
84 j.m_type = value_t::binary; in construct()
97 j.m_type = value_t::number_float; in construct()
109 j.m_type = value_t::number_unsigned; in construct()
121 j.m_type = value_t::number_integer; in construct()
133 j.m_type = value_t::array; in construct()
[all …]
/third_party/mesa3d/src/gallium/drivers/r600/sfn/
Dsfn_instruction_export.cpp64 m_type(type), in ExportInstruction()
77 (m_type == oth.m_type) && in is_equal_to()
85 switch (m_type) { in do_print()
253 m_type(type), in MemRingOutIntruction()
285 m_type == oth.m_type && in is_equal_to()
289 if (m_type == mem_write_ind || m_type == mem_write_ind_ack) in is_equal_to()
299 os << " " << write_type_str[m_type] << " " << m_base_address; in do_print()
301 if (m_type == mem_write_ind || m_type == mem_write_ind_ack) in do_print()
/third_party/json/include/nlohmann/detail/iterators/
Diter_impl.hpp89 switch (m_object->m_type) in iter_impl()
175 switch (m_object->m_type) in set_begin()
212 switch (m_object->m_type) in set_end()
243 switch (m_object->m_type) in operator *()
280 switch (m_object->m_type) in operator ->()
325 switch (m_object->m_type) in operator ++()
368 switch (m_object->m_type) in operator --()
406 switch (m_object->m_type) in operator ==()
442 switch (m_object->m_type) in operator <()
490 switch (m_object->m_type) in operator +=()
[all …]
/third_party/vk-gl-cts/external/openglcts/modules/common/
DglcUniformBlockCase.hpp78 return m_type == TYPE_BASIC; in isBasicType()
82 return m_type == TYPE_ARRAY; in isArrayType()
86 return m_type == TYPE_STRUCT; in isStructType()
124 Type m_type; member in deqp::ub::VarType
146 …StructMember(const char* name, const VarType& type, deUint32 flags) : m_name(name), m_type(type), … in StructMember()
159 return m_type; in getType()
168 VarType m_type; member in deqp::ub::StructMember
225 return m_type; in getType()
234 VarType m_type; member in deqp::ub::Uniform
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/transform_feedback/
DvktTransformFeedbackFuzzLayoutCase.hpp83 bool isBasicType (void) const { return m_type == TYPE_BASIC; } in isBasicType()
84 bool isArrayType (void) const { return m_type == TYPE_ARRAY; } in isArrayType()
85 bool isStructType (void) const { return m_type == TYPE_STRUCT; } in isStructType()
107 Type m_type; member in vkt::TransformFeedback::VarType
132 , m_type(type) in StructMember()
141 const VarType& getType (void) const { return m_type; } in getType()
146 VarType m_type; member in vkt::TransformFeedback::StructMember
180 const VarType& getType (void) const { return m_type; } in getType()
185 VarType m_type; member in vkt::TransformFeedback::InterfaceBlockMember
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/ubo/
DvktUniformBlockCase.hpp90 bool isBasicType (void) const { return m_type == TYPE_BASIC; } in isBasicType()
91 bool isArrayType (void) const { return m_type == TYPE_ARRAY; } in isArrayType()
92 bool isStructType (void) const { return m_type == TYPE_STRUCT; } in isStructType()
115 Type m_type; member in vkt::ubo::VarType
139 : m_name(name), m_type(type), m_flags(flags) in StructMember()
146 const VarType& getType (void) const { return m_type; } in getType()
151 VarType m_type; member in vkt::ubo::StructMember
185 const VarType& getType (void) const { return m_type; } in getType()
190 VarType m_type; member in vkt::ubo::Uniform
/third_party/boost/libs/contract/test/destructor/
Dsmoke.cpp83 typedef boost::contract::test::detail::counter<m_tag, int> m_type; typedef
84 static m_type m;
89 boost::contract::old_ptr<m_type> old_m = in ~c()
90 BOOST_CONTRACT_OLDOF(m_type::eval(m)); in ~c()
108 c::m_type c::m;
283 BOOST_TEST_EQ(c::m_type::copies(), BOOST_CONTRACT_TEST_old); in main()
284 BOOST_TEST_EQ(c::m_type::evals(), BOOST_CONTRACT_TEST_old); in main()
285 BOOST_TEST_EQ(c::m_type::copies(), c::m_type::dtors()); // No leak. in main()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/synchronization/
DvktSynchronizationTimelineSemaphoreTests.cpp166 , m_type (type) in WaitTestInstance()
196 deviceSignal(vk, device, queue, *fence, m_type, semaphores[semIdx], timelineValues[semIdx]); in iterate()
208 … deviceSignal(vk, device, queue, *fence, m_type, semaphores[randomIdx], timelineValues[randomIdx]); in iterate()
246 const SynchronizationType m_type; member in vkt::synchronization::__anon21e1d1160111::WaitTestInstance
256 , m_type (type) in WaitTestCase()
265 if (m_type == SynchronizationType::SYNCHRONIZATION2) in checkSupport()
271 return new WaitTestInstance(context, m_type, m_waitAll, m_signalFromDevice); in createInstance()
275 const SynchronizationType m_type; member in vkt::synchronization::__anon21e1d1160111::WaitTestCase
287 , m_type (type) in HostWaitBeforeSignalTestInstance()
308 …SynchronizationWrapperPtr synchronizationWrapper = getSynchronizationWrapper(m_type, vk, DE_TRUE); in iterate()
[all …]
/third_party/boost/libs/geometry/doc/src/docutils/tools/doxygen_xml2qbk/
Dparameter_predicates.hpp39 : m_type(n) in par_by_type()
44 return p.type == m_type; in operator ()()
47 std::string m_type; member

12345678