Lines Matching refs:int4
5 extern float4 __attribute__((overloadable)) convert_float4(int4 c);
9 extern int4 __attribute__((overloadable)) convert_int4(float4 c);
61 extern int4 __attribute__((overloadable)) fnc(float4 v) { \
62 int4 r; \
130 extern float4 __attribute__((overloadable)) fnc(float4 v1, int4 v2) { \
221 extern float4 __attribute__((overloadable)) fnc(float4 v1, int4 *v2) { \
285 fnc(float4 v1, float4 v2, int4 *v3) { \
1137 int4 iv = convert_int4(v); in native_exp2()
1138 int4 x = iv + (iv >> (int4)31);//floor(v); in native_exp2()
1143 float4 fo = (float4)(x << (int4)23); in native_exp2()
1445 float4 __attribute__((overloadable)) native_##fn(float4 v1, int4 v2) { return fn(v1, v2);}