Lines Matching refs:float4
3 typedef __attribute__(( ext_vector_type(4) )) float float4; typedef
9 float4 foo = (float4){ 1.0, 2.0, 3.0, 4.0 };
12 const float4 bar = (float4){ 1.0, 2.0, 3.0, __builtin_inff() };
16 float4 test1(float4 V) { in test1()
21 float4 vec4, vec4_2;
41 void test3(float4 *out) { in test3()
42 *out = ((float4) {1.0f, 2.0f, 3.0f, 4.0f }); in test3()
48 void test4(float4 *out) { in test4()
53 *out = ((float4) {a,b,c,d}); in test4()
62 void test5(float4 *out) { in test5()
64 float4 b; in test5()
76 void test6(float4 *ap, float4 *bp, float c) { in test6()
77 float4 a = *ap; in test6()
78 float4 b = *bp; in test6()
196 void test8(float4 *ap, float4 *bp, int c) { in test8()
197 float4 a = *ap; in test8()
198 float4 b = *bp; in test8()