Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:c5

64   __char5 c5 = va_arg(ap, __char5);
65 sum = sum + c5.x + c5.y;
149 __short5 c5 = va_arg(ap, __short5);
150 sum = sum + c5.x + c5.y;
193 __int5 c5 = va_arg(ap, __int5);
194 sum = sum + c5.x + c5.y;
236 __char5 c5 = va_arg(ap, __char5);
239 sum = sum + c5.x + c5.y;
284 double test(__char3 *c3, __char5 *c5, __char9 *c9, __char19 *c19,
287 double ret = varargs_vec(3, *c3, *c5, *c9, *c19, *s3, *s5, *i3, *i5, *d3);
308 __attribute__((noinline)) double args_vec_5c(int fixed, __char5 c5) {
310 // CHECK: [[C5:%.*]] = alloca <5 x i8>, align 8
311 // CHECK: [[TMP:%.*]] = bitcast <5 x i8>* [[C5]] to <2 x i32>*
314 sum = sum + c5.x + c5.y;
370 __attribute__((noinline)) double args_vec_5s(int fixed, __short5 c5) {
372 // CHECK: [[C5:%.*]] = alloca <5 x i16>, align 16
373 // CHECK: [[TMP:%.*]] = bitcast <5 x i16>* [[C5]] to <4 x i32>*
376 sum = sum + c5.x + c5.y;
402 __attribute__((noinline)) double args_vec_5i(int fixed, __int5 c5) {
404 // CHECK: [[C5:%.*]] = load <5 x i32>* {{%.*}}, align 16
406 sum = sum + c5.x + c5.y;