Home | History | Annotate | Download | only in crosstest

Lines Matching refs:FromType

96 template <typename FromType>
97 void testValue(FromType Val, size_t &TotalTests, size_t &Passes,
99 COMPARE(cast, FromType, bool, Val, FromTypeString);
100 COMPARE(cast, FromType, uint8_t, Val, FromTypeString);
101 COMPARE(cast, FromType, myint8_t, Val, FromTypeString);
102 COMPARE(cast, FromType, uint16_t, Val, FromTypeString);
103 COMPARE(cast, FromType, int16_t, Val, FromTypeString);
104 COMPARE(cast, FromType, uint32_t, Val, FromTypeString);
105 COMPARE(cast, FromType, int32_t, Val, FromTypeString);
106 COMPARE(cast, FromType, uint64, Val, FromTypeString);
107 COMPARE(cast, FromType, int64, Val, FromTypeString);
108 COMPARE(cast, FromType, float, Val, FromTypeString);
109 COMPARE(cast, FromType, double, Val, FromTypeString);
110 COMPARE_ARG(cast, FromType, bool, Val, FromTypeString);
111 COMPARE_ARG(cast, FromType, uint8_t, Val, FromTypeString);
112 COMPARE_ARG(cast, FromType, myint8_t, Val, FromTypeString);
113 COMPARE_ARG(cast, FromType, uint16_t, Val, FromTypeString);
114 COMPARE_ARG(cast, FromType, int16_t, Val, FromTypeString);
115 COMPARE_ARG(cast, FromType, uint32_t, Val, FromTypeString);
116 COMPARE_ARG(cast, FromType, int32_t, Val, FromTypeString);
117 COMPARE_ARG(cast, FromType, uint64, Val, FromTypeString);
118 COMPARE_ARG(cast, FromType, int64, Val, FromTypeString);
119 COMPARE_ARG(cast, FromType, float, Val, FromTypeString);
120 COMPARE_ARG(cast, FromType, double, Val, FromTypeString);
123 template <typename FromType, typename ToType>
126 const static size_t NumElementsInType = Vectors<FromType>::NumElements;
137 FromType Value;
141 COMPARE_VEC(cast, FromType, ToType, Value, FromTypeString, ToTypeString);