Lines Matching refs:vec
61 vec<TYPE, R> PURE doMul( in doMul()
63 const vec<TYPE, D>& rhs) in doMul()
65 vec<TYPE, R> res; in doMul()
78 const vec<TYPE, R>& lhs, in doMul()
124 class mat : public vec< vec<TYPE, R>, C > {
126 typedef vec< vec<TYPE, R>, C > base;
192 friend vec<TYPE, R> PURE operator * (
193 const mat& lhs, const vec<TYPE, C>& rhs) {
199 const vec<TYPE, R>& lhs, const mat<TYPE, C, 1>& rhs) {
233 const vec<TYPE, R>& rhs) {
242 const vec<TYPE, R>& rhs) {
248 column_builder<0> operator << (const vec<TYPE, R>& rhs) {
256 class mat<TYPE, 1, R> : public vec<TYPE, R> {
257 typedef vec<TYPE, R> base;
277 void operator << (const vec<TYPE, R>& rhs) { base::operator[](0) = rhs; }