Home
last modified time | relevance | path

Searched refs:TargetType (Results 1 – 16 of 16) sorted by relevance

/third_party/protobuf/csharp/src/Google.Protobuf/
DExtensionRegistry.cs49 …return new ObjectIntPair<Type>(a.TargetType, a.FieldNumber).Equals(new ObjectIntPair<Type>(b.Targe… in Equals()
53 return new ObjectIntPair<Type>(a.TargetType, a.FieldNumber).GetHashCode(); in GetHashCode()
95 … extensions.Add(new ObjectIntPair<Type>(extension.TargetType, extension.FieldNumber), extension); in Add()
126 … return extensions.ContainsKey(new ObjectIntPair<Type>(item.TargetType, item.FieldNumber)); in Contains()
149 … extensions.Add(new ObjectIntPair<Type>(extension.TargetType, extension.FieldNumber), extension); in CopyTo()
171 return extensions.Remove(new ObjectIntPair<Type>(item.TargetType, item.FieldNumber)); in Remove()
DExtension.cs42 internal abstract Type TargetType { get; } property in Google.Protobuf.Extension
82 internal override Type TargetType => typeof(TTarget); field in Google.Protobuf.Extension
110 internal override Type TargetType => typeof(TTarget); field in Google.Protobuf.RepeatedExtension
/third_party/boost/boost/math/policies/
Derror_handling.hpp68 template <class T, class TargetType>
69 T user_rounding_error(const char* function, const char* message, const T& val, const TargetType& t);
492 template <class T, class TargetType>
493 inline TargetType raise_rounding_error( in raise_rounding_error()
497 const TargetType&, in raise_rounding_error() argument
502 return TargetType(0); in raise_rounding_error()
505 template <class T, class TargetType>
506 inline BOOST_MATH_CONSTEXPR TargetType raise_rounding_error( in raise_rounding_error()
510 const TargetType&, in raise_rounding_error() argument
515 BOOST_STATIC_ASSERT(std::numeric_limits<TargetType>::is_specialized); in raise_rounding_error()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/subzero/src/
DPNaClTranslator.cpp1845 static bool isIntTruncCastValid(Ice::Type SourceType, Ice::Type TargetType) { in isIntTruncCastValid() argument
1846 return Ice::isIntegerType(SourceType) && Ice::isIntegerType(TargetType) && in isIntTruncCastValid()
1847 simplifyOutCommonVectorType(SourceType, TargetType) && in isIntTruncCastValid()
1848 getScalarIntBitWidth(SourceType) > getScalarIntBitWidth(TargetType); in isIntTruncCastValid()
1854 Ice::Type TargetType) { in isFloatTruncCastValid() argument
1855 return simplifyOutCommonVectorType(SourceType, TargetType) && in isFloatTruncCastValid()
1856 SourceType == Ice::IceType_f64 && TargetType == Ice::IceType_f32; in isFloatTruncCastValid()
1861 static bool isIntExtCastValid(Ice::Type SourceType, Ice::Type TargetType) { in isIntExtCastValid() argument
1862 return isIntTruncCastValid(TargetType, SourceType); in isIntExtCastValid()
1867 static bool isFloatExtCastValid(Ice::Type SourceType, Ice::Type TargetType) { in isFloatExtCastValid() argument
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DInferAddressSpaces.cpp506 Type *TargetType = in cloneConstantExprWithNewAddressSpace() local
515 return ConstantExpr::getBitCast(CE->getOperand(0), TargetType); in cloneConstantExprWithNewAddressSpace()
520 return ConstantExpr::getBitCast(cast<Constant>(NewOperand), TargetType); in cloneConstantExprWithNewAddressSpace()
521 return ConstantExpr::getAddrSpaceCast(CE, TargetType); in cloneConstantExprWithNewAddressSpace()
531 CE->getOperand(0), ConstantExpr::getAddrSpaceCast(Src0, TargetType), in cloneConstantExprWithNewAddressSpace()
532 ConstantExpr::getAddrSpaceCast(Src1, TargetType)); in cloneConstantExprWithNewAddressSpace()
571 NewOperands, TargetType, /*OnlyIfReduced=*/false, in cloneConstantExprWithNewAddressSpace()
575 return CE->getWithOperands(NewOperands, TargetType); in cloneConstantExprWithNewAddressSpace()
/third_party/boost/libs/math/test/
Dexp_sinh_quadrature_test.cpp99 template <class Real, class TargetType>
112 …p = (Real(boost::math::tools::log_min_value<TargetType>()) + log(Real(boost::math::tools::epsilon< in generate_constants()
122 …iv_pi<Real>()*log(2 * two_div_pi<Real>()*sqrt(Real(boost::math::tools::max_value<TargetType>())))); in generate_constants()
Dsinh_sinh_quadrature_test.cpp84 template <class Real, class TargetType>
97 … two_div_pi<Real>()*log(2 * two_div_pi<Real>()*sqrt(boost::math::tools::max_value<TargetType>()))); in generate_constants()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DTargetTransformInfoImpl.h762 Type *TargetType = nullptr; in getGEPCost() local
770 TargetType = GTI.getIndexedType(); in getGEPCost()
798 TargetType, const_cast<GlobalValue *>(BaseGV), in getGEPCost()
/third_party/protobuf/csharp/src/Google.Protobuf/Reflection/
DReflectionUtil.cs126 …nstance(typeof(ExtensionReflectionHelper<,>).MakeGenericType(extension.TargetType, extension.GetTy…
/third_party/boost/boost/msm/back/
Dstate_machine.hpp2859 template <class StateType,class TargetType,class EventType,class FsmType>
2862 typename ::boost::mpl::or_<typename has_explicit_entry_state<TargetType>::type,
2863 ::boost::mpl::is_sequence<TargetType> >::type,void>::type
2869 template <class StateType,class TargetType,class EventType,class FsmType>
2872 typename ::boost::mpl::or_<typename has_explicit_entry_state<TargetType>::type,
2873 ::boost::mpl::is_sequence<TargetType> >::type,void >::type
2877 execute_entry(astate,msm::back::direct_entry_event<TargetType,EventType>(evt),fsm); in convert_event_and_execute_entry()
/third_party/vk-gl-cts/modules/glshared/
DglsShaderLibraryCase.cpp611 enum TargetType enum in deqp::gls::BeforeDrawValidator
619 BeforeDrawValidator (const glw::Functions& gl, glw::GLuint target, TargetType targetType);
629 const TargetType m_targetType;
635 BeforeDrawValidator::BeforeDrawValidator (const glw::Functions& gl, glw::GLuint target, TargetType in BeforeDrawValidator()
/third_party/node/src/
Dnode_options.h293 typedef Options TargetType; typedef
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Demangle/
DMicrosoftDemangleNodes.h426 TypeNode *TargetType = nullptr; member
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Demangle/
DMicrosoftDemangleNodes.cpp363 TargetType->output(OS, Flags); in output()
DMicrosoftDemangle.cpp725 COIN->TargetType = FSN->Signature->ReturnType; in demangleEncodedSymbol()
746 if (!COIN->TargetType) { in demangleDeclarator()
/third_party/gstreamer/gstplugins_good/
DChangeLog66837 matroskademux: Matroska tag TargetType support
66838 * Reads TargetType and TargetTypeValue from a Tag.