Home
last modified time | relevance | path

Searched refs:AtomicTypeExtendedInfo (Results 1 – 2 of 2) sorted by relevance

/external/OpenCL-CTS/test_conformance/c11_atomics/
Dcommon.cpp192 template<> cl_int AtomicTypeExtendedInfo<cl_int>::MinValue() {return CL_INT_MIN;} in MinValue()
193 template<> cl_uint AtomicTypeExtendedInfo<cl_uint>::MinValue() {return 0;} in MinValue()
194 template<> cl_long AtomicTypeExtendedInfo<cl_long>::MinValue() {return CL_LONG_MIN;} in MinValue()
195 template<> cl_ulong AtomicTypeExtendedInfo<cl_ulong>::MinValue() {return 0;} in MinValue()
196 template<> cl_float AtomicTypeExtendedInfo<cl_float>::MinValue() {return CL_FLT_MIN;} in MinValue()
197 template<> cl_double AtomicTypeExtendedInfo<cl_double>::MinValue() {return CL_DBL_MIN;} in MinValue()
199 template<> cl_int AtomicTypeExtendedInfo<cl_int>::MaxValue() {return CL_INT_MAX;} in MaxValue()
200 template<> cl_uint AtomicTypeExtendedInfo<cl_uint>::MaxValue() {return CL_UINT_MAX;} in MaxValue()
201 template<> cl_long AtomicTypeExtendedInfo<cl_long>::MaxValue() {return CL_LONG_MAX;} in MaxValue()
202 template<> cl_ulong AtomicTypeExtendedInfo<cl_ulong>::MaxValue() {return CL_ULONG_MAX;} in MaxValue()
[all …]
Dcommon.h92 class AtomicTypeExtendedInfo : public AtomicTypeInfo
95 AtomicTypeExtendedInfo(TExplicitAtomicType type) : AtomicTypeInfo(type) {} in AtomicTypeExtendedInfo() function
279 AtomicTypeExtendedInfo<HostDataType> DataType() const in DataType()
281 return AtomicTypeExtendedInfo<HostDataType>(_dataType); in DataType()