Home | History | Annotate | Download | only in spu

Lines Matching defs:vec_add

95 /* vec_add (vector add)
98 static inline vec_uchar16 vec_add(vec_uchar16 a, vec_uchar16 b)
105 static inline vec_char16 vec_add(vec_char16 a, vec_char16 b)
107 return ((vec_char16)vec_add((vec_uchar16)(a), (vec_uchar16)(b)));
110 static inline vec_char16 vec_add(vec_bchar16 a, vec_char16 b)
112 return ((vec_char16)vec_add((vec_uchar16)(a), (vec_uchar16)(b)));
115 static inline vec_char16 vec_add(vec_char16 a, vec_bchar16 b)
117 return ((vec_char16)vec_add((vec_uchar16)(a), (vec_uchar16)(b)));
120 static inline vec_ushort8 vec_add(vec_ushort8 a, vec_ushort8 b)
125 static inline vec_short8 vec_add(vec_short8 a, vec_short8 b)
130 static inline vec_short8 vec_add(vec_bshort8 a, vec_short8 b)
135 static inline vec_short8 vec_add(vec_short8 a, vec_bshort8 b)
140 static inline vec_uint4 vec_add(vec_uint4 a, vec_uint4 b)
145 static inline vec_int4 vec_add(vec_int4 a, vec_int4 b)
150 static inline vec_int4 vec_add(vec_bint4 a, vec_int4 b)
155 static inline vec_int4 vec_add(vec_int4 a, vec_bint4 b)
160 static inline vec_float4 vec_add(vec_float4 a, vec_float4 b)