Lines Matching refs:U
100 template<typename U>
101 explicit tmat44(U v);
104 template <typename U>
105 explicit tmat44(const tvec4<U>& rhs);
108 template <typename U>
109 explicit tmat44(const tmat44<U>& rhs);
127 template <typename U>
128 explicit tmat44(U const* rawArray);
169 template <typename U>
170 tmat44<T>::tmat44(U v) { in tmat44()
178 template<typename U>
179 tmat44<T>::tmat44(const tvec4<U>& v) { in tmat44()
204 template <typename U>
205 tmat44<T>::tmat44(const tmat44<U>& rhs) { in tmat44()
220 template <typename U>
221 tmat44<T>::tmat44(U const* rawArray) { in tmat44()
266 tvec3<T> U(cross(S, L)); in lookAt()
269 tvec4<T>( U, 0), in lookAt()
341 template <typename T, typename U>
342 typename tmat44<U>::col_type PURE operator *(const tmat44<T>& lv, const tvec4<U>& rv) {
343 typename tmat44<U>::col_type result;
350 template <typename T, typename U>
351 typename tmat44<U>::row_type PURE operator *(const tvec4<U>& rv, const tmat44<T>& lv) {
352 typename tmat44<U>::row_type result(tmat44<U>::row_type::NO_INIT);
359 template <typename T, typename U>
360 tmat44<T> PURE operator *(const tmat44<T>& lv, U rv) {
368 template <typename T, typename U>
369 tmat44<T> PURE operator *(U rv, const tmat44<T>& lv) {