Home
last modified time | relevance | path

Searched refs:ScalarType (Results 1 – 23 of 23) sorted by relevance

/third_party/vk-gl-cts/framework/referencerenderer/
DrrGenericVector.hpp69 template<typename ScalarType>
70 explicit GenericVec4 (const tcu::Vector<ScalarType, 4>& value) in GenericVec4() argument
92 template<typename ScalarType>
93 GenericVec4& operator= (const tcu::Vector<ScalarType, 4>& value) in operator =() argument
95 getAccess<ScalarType>()[0] = value[0]; in operator =()
96 getAccess<ScalarType>()[1] = value[1]; in operator =()
97 getAccess<ScalarType>()[2] = value[2]; in operator =()
98 getAccess<ScalarType>()[3] = value[3]; in operator =()
102 template<typename ScalarType>
103 inline tcu::Vector<ScalarType, 4> get (void) const in get()
[all …]
DrrVertexAttrib.hpp136 template<typename ScalarType>
137 explicit VertexAttrib (const tcu::Vector<ScalarType, 4>& generic_) in VertexAttrib()
/third_party/json/doc/mkdocs/docs/api/basic_json/
Doperator_ne.md6 template<typename ScalarType>
7 bool operator!=(const_reference lhs, const ScalarType rhs) noexcept;
9 template<typename ScalarType>
10 bool operator!=(ScalarType lhs, const const_reference rhs) noexcept;
17 `ScalarType`
18 : a scalar type according to `std::is_scalar<ScalarType>::value`
Doperator_gt.md6 template<typename ScalarType>
7 bool operator>(const_reference lhs, const ScalarType rhs) noexcept;
9 template<typename ScalarType>
10 bool operator>(ScalarType lhs, const const_reference rhs) noexcept;
17 `ScalarType`
18 : a scalar type according to `std::is_scalar<ScalarType>::value`
Doperator_ge.md6 template<typename ScalarType>
7 bool operator>=(const_reference lhs, const ScalarType rhs) noexcept;
9 template<typename ScalarType>
10 bool operator>=(ScalarType lhs, const const_reference rhs) noexcept;
18 `ScalarType`
19 : a scalar type according to `std::is_scalar<ScalarType>::value`
Doperator_le.md6 template<typename ScalarType>
7 bool operator<=(const_reference lhs, const ScalarType rhs) noexcept;
9 template<typename ScalarType>
10 bool operator<=(ScalarType lhs, const const_reference rhs) noexcept;
18 `ScalarType`
19 : a scalar type according to `std::is_scalar<ScalarType>::value`
Doperator_lt.md6 template<typename ScalarType>
7 bool operator<(const_reference lhs, const ScalarType rhs) noexcept;
9 template<typename ScalarType>
10 bool operator<(ScalarType lhs, const const_reference rhs) noexcept;
32 `ScalarType`
33 : a scalar type according to `std::is_scalar<ScalarType>::value`
Doperator_eq.md6 template<typename ScalarType>
7 bool operator==(const_reference lhs, const ScalarType rhs) noexcept;
9 template<typename ScalarType>
10 bool operator==(ScalarType lhs, const const_reference rhs) noexcept;
22 `ScalarType`
23 : a scalar type according to `std::is_scalar<ScalarType>::value`
/third_party/json/include/nlohmann/
Djson.hpp6426 template<typename ScalarType, typename std::enable_if<
6427 std::is_scalar<ScalarType>::value, int>::type = 0>
6428 friend bool operator==(const_reference lhs, ScalarType rhs) noexcept in operator ==()
6437 template<typename ScalarType, typename std::enable_if<
6438 std::is_scalar<ScalarType>::value, int>::type = 0>
6439 friend bool operator==(ScalarType lhs, const_reference rhs) noexcept in operator ==()
6471 template<typename ScalarType, typename std::enable_if<
6472 std::is_scalar<ScalarType>::value, int>::type = 0>
6473 friend bool operator!=(const_reference lhs, ScalarType rhs) noexcept in operator !=()
6482 template<typename ScalarType, typename std::enable_if<
[all …]
/third_party/skia/src/sksl/ir/
DSkSLType.cpp146 class ScalarType final : public Type { class
150 ScalarType(skstd::string_view name, const char* abbrev, NumberKind numberKind, int8_t priority, in ScalarType() function in SkSL::ScalarType
204 , fComponentType(componentType.as<ScalarType>()) in MatrixType()
211 const ScalarType& componentType() const override { in componentType()
242 const ScalarType& fComponentType;
377 , fComponentType(componentType.as<ScalarType>()) in VectorType()
382 const ScalarType& componentType() const override { in componentType()
413 const ScalarType& fComponentType;
454 return std::make_unique<ScalarType>(name, abbrev, numberKind, priority, bitWidth); in MakeScalarType()
/third_party/vk-gl-cts/framework/common/
DtcuTexLookupVerifier.cpp55 template<typename ScalarType>
56 inline Vector<ScalarType, 4> lookup (const ConstPixelBufferAccess& access, const Sampler& sampler, … in lookup()
59 return access.getPixelT<ScalarType>(i, j, k); in lookup()
61 return sampleTextureBorder<ScalarType>(access.getFormat(), sampler); in lookup()
564 template<typename PrecType, typename ScalarType>
570 const Vector<ScalarType, 4>& result) in isNearestSampleResultValid() argument
582 const Vector<ScalarType, 4> color = lookup<ScalarType>(level, sampler, x, coordY, 0); in isNearestSampleResultValid()
591 template<typename PrecType, typename ScalarType>
597 const Vector<ScalarType, 4>& result) in isNearestSampleResultValid() argument
616 const Vector<ScalarType, 4> color = lookup<ScalarType>(level, sampler, x, y, coordZ); in isNearestSampleResultValid()
[all …]
DtcuTextureUtil.hpp180 template <typename ScalarType>
181 tcu::Vector<ScalarType, 4> sampleTextureBorder (const TextureFormat& format, const Sampler& sa…
DtcuTextureUtil.cpp1810 template <typename ScalarType>
1811 tcu::Vector<ScalarType, 4> sampleTextureBorder (const TextureFormat& format, const Sampler& sampler) in sampleTextureBorder()
1820 return getTextureBorderColorFloat(format, sampler).cast<ScalarType>(); in sampleTextureBorder()
1823 return getTextureBorderColorInt(format, sampler).cast<ScalarType>(); in sampleTextureBorder()
1826 return getTextureBorderColorUint(format, sampler).cast<ScalarType>(); in sampleTextureBorder()
1830 return tcu::Vector<ScalarType, 4>(); in sampleTextureBorder()
/third_party/vk-gl-cts/external/vulkancts/modules_no_buildgn/vulkan/pipeline/
DvktPipelineImageSamplingInstance.cpp1015 template<typename ScalarType>
1016 ScalarType getSwizzledComp (const tcu::Vector<ScalarType, 4>& vec, vk::VkComponentSwizzle comp, int… in getSwizzledComp() argument
1021 return ScalarType(0); in getSwizzledComp()
1023 return ScalarType(1); in getSwizzledComp()
1028 template<typename ScalarType>
1029 tcu::Vector<ScalarType, 4> swizzle (const tcu::Vector<ScalarType, 4>& vec, const vk::VkComponentMap… in swizzle() argument
1031 return tcu::Vector<ScalarType, 4>(getSwizzledComp(vec, swz.r, 0), in swizzle()
1071 template<typename ScalarType>
1077 dst.setPixel(swizzle(src.getPixelT<ScalarType>(x, y, z), swz), x, y, z); in swizzleT()
/third_party/vk-gl-cts/external/vulkancts/modules/vulkan/pipeline/
DvktPipelineImageSamplingInstance.cpp1015 template<typename ScalarType>
1016 ScalarType getSwizzledComp (const tcu::Vector<ScalarType, 4>& vec, vk::VkComponentSwizzle comp, int… in getSwizzledComp() argument
1021 return ScalarType(0); in getSwizzledComp()
1023 return ScalarType(1); in getSwizzledComp()
1028 template<typename ScalarType>
1029 tcu::Vector<ScalarType, 4> swizzle (const tcu::Vector<ScalarType, 4>& vec, const vk::VkComponentMap… in swizzle() argument
1031 return tcu::Vector<ScalarType, 4>(getSwizzledComp(vec, swz.r, 0), in swizzle()
1071 template<typename ScalarType>
1077 dst.setPixel(swizzle(src.getPixelT<ScalarType>(x, y, z), swz), x, y, z); in swizzleT()
/third_party/skia/third_party/externals/spirv-tools/test/
Dname_mapper_test.cpp57 INSTANTIATE_TEST_SUITE_P(ScalarType, FriendlyNameTest,
/third_party/flutter/skia/third_party/externals/spirv-tools/test/
Dname_mapper_test.cpp57 INSTANTIATE_TEST_CASE_P(ScalarType, FriendlyNameTest,
/third_party/spirv-tools/test/
Dname_mapper_test.cpp57 INSTANTIATE_TEST_SUITE_P(ScalarType, FriendlyNameTest,
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/test/
Dname_mapper_test.cpp57 INSTANTIATE_TEST_SUITE_P(ScalarType, FriendlyNameTest,
/third_party/json/single_include/nlohmann/
Djson.hpp23827 template<typename ScalarType, typename std::enable_if<
23828 std::is_scalar<ScalarType>::value, int>::type = 0>
23829 friend bool operator==(const_reference lhs, ScalarType rhs) noexcept in operator ==()
23838 template<typename ScalarType, typename std::enable_if<
23839 std::is_scalar<ScalarType>::value, int>::type = 0>
23840 friend bool operator==(ScalarType lhs, const_reference rhs) noexcept in operator ==()
23872 template<typename ScalarType, typename std::enable_if<
23873 std::is_scalar<ScalarType>::value, int>::type = 0>
23874 friend bool operator!=(const_reference lhs, ScalarType rhs) noexcept in operator !=()
23883 template<typename ScalarType, typename std::enable_if<
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/X86/
DX86TargetTransformInfo.cpp2395 Type *ScalarType = Val->getScalarType(); in getVectorInstrCost() local
2411 if (ScalarType->isFloatingPointTy()) in getVectorInstrCost()
2415 if (ScalarType->isIntegerTy()) in getVectorInstrCost()
2430 if (Opcode == Instruction::ExtractElement && ScalarType->isPointerTy()) in getVectorInstrCost()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DAutoUpgrade.cpp3773 MDNode *ScalarType = MDNode::get(Context, Elts); in UpgradeTBAANode() local
3775 Metadata *Elts2[] = {ScalarType, ScalarType, in UpgradeTBAANode()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/
DSLPVectorizer.cpp4614 auto extend = [&](Value *ScalarRoot, Value *Ex, Type *ScalarType) { in vectorizeTree() argument
4618 return Builder.CreateSExt(Ex, ScalarType); in vectorizeTree()
4619 return Builder.CreateZExt(Ex, ScalarType); in vectorizeTree()