Searched defs:DataTypeOf (Results 1 – 1 of 1) sorted by relevance
21 template <> struct DataTypeOf< int8_t> : std::integral_constant<DataType, DataType::Byte> {}; struct22 template <> struct DataTypeOf<uint8_t> : std::integral_constant<DataType, DataType::UnsignedByte> … struct23 template <> struct DataTypeOf< int16_t> : std::integral_constant<DataType, DataType::Short> {}; struct24 template <> struct DataTypeOf<uint16_t> : std::integral_constant<DataType, DataType::UnsignedShort>… struct25 template <> struct DataTypeOf< int32_t> : std::integral_constant<DataType, DataType::Integer> {}; struct26 template <> struct DataTypeOf<uint32_t> : std::integral_constant<DataType, DataType::UnsignedIntege… struct27 template <> struct DataTypeOf<float> : std::integral_constant<DataType, DataType::Float> {}; struct