Lines Matching defs:Vector4
29 class Vector4
32 inline Vector4(float a, float b, float c, float d);
33 inline Vector4() {}
39 inline Vector4::Vector4(float a, float b, float c, float d)
44 inline float32x4_t Vector4::Set(float a, float b, float c, float d)
51 Vector4 initVector4(float a, float b, float c, float d)
53 return Vector4(a, b, c, d);
56 void initVector4(Vector4 *v, float a, float b, float c, float d)
63 Vector4 v;
72 Vector4 v4;