Home
last modified time | relevance | path

Searched refs:float2 (Results 1 – 25 of 32) sorted by relevance

12

/external/clang/test/SemaOpenCL/
Dcond.cl11 typedef float float2 __attribute__((ext_vector_type(2)));
45 float2 ptest06(int2 C, float X, float Y)
51 float2 ptest07(int2 C, int X, float Y)
57 float2 ptest08(int2 C, int X, float2 Y)
63 float2 ptest09(float2 A, float2 B, float2 C, float2 D)
85 float2 ntest04(int2 C, int2 X, float2 Y)
87 … vector values of different size ('int2' (vector of 2 'int' values) and 'float2' (vector of 2 'flo…
90 float2 ntest05(int2 C, int2 X, float Y)
105 float2 ntest08(float2 C, float2 X, float2 Y)
107 …return C ? X : Y; // expected-error {{used type 'float2' (vector of 2 'float' values) where floati…
Dvector_literals_const.cl16 typedef float float2 __attribute((ext_vector_type(2)));
21 __constant float4 f_2_1_1 = (float4)((float2)(1,2),3,4);
22 __constant float4 f_1_2_1 = (float4)(1,(float2)(2,3),4);
23 __constant float4 f_1_1_2 = (float4)(1,2,(float2)(3,4));
24 __constant float4 f_2_2 = (float4)((float2)(1,2),(float2)(3,4));
Dshifts.cl10 typedef __attribute__((ext_vector_type(2))) float float2;
55 float2 ntest03(float2 c, char s) {
56 …return c << s; // expected-error {{used type 'float2' (vector of 2 'float' values) where integer i…
/external/llvm/test/ExecutionEngine/MCJIT/
Dtest-setcond-fp.ll8 %float2 = fadd float 0.000000e+00, 0.000000e+00 ; <float> [#uses=6]
9 %test49 = fcmp oeq float %float1, %float2 ; <i1> [#uses=0]
10 %test50 = fcmp oge float %float1, %float2 ; <i1> [#uses=0]
11 %test51 = fcmp ogt float %float1, %float2 ; <i1> [#uses=0]
12 %test52 = fcmp ole float %float1, %float2 ; <i1> [#uses=0]
13 %test53 = fcmp olt float %float1, %float2 ; <i1> [#uses=0]
14 %test54 = fcmp une float %float1, %float2 ; <i1> [#uses=0]
/external/llvm/test/ExecutionEngine/
Dtest-interp-vec-setcond-fp.ll7 %float2 = fadd <3 x float> <float 0.0, float 0.0, float 0.0>, <float 0.0, float 0.0, float 0.0>
8 %test49 = fcmp oeq <3 x float> %float1, %float2
9 %test50 = fcmp oge <3 x float> %float1, %float2
10 %test51 = fcmp ogt <3 x float> %float1, %float2
11 %test52 = fcmp ole <3 x float> %float1, %float2
12 %test53 = fcmp olt <3 x float> %float1, %float2
13 %test54 = fcmp une <3 x float> %float1, %float2
Dfrem.ll15 %float2 = frem float %flt, 5.0
16 %double1 = fpext float %float2 to double
/external/llvm/test/ExecutionEngine/OrcMCJIT/
Dtest-setcond-fp.ll8 %float2 = fadd float 0.000000e+00, 0.000000e+00 ; <float> [#uses=6]
9 %test49 = fcmp oeq float %float1, %float2 ; <i1> [#uses=0]
10 %test50 = fcmp oge float %float1, %float2 ; <i1> [#uses=0]
11 %test51 = fcmp ogt float %float1, %float2 ; <i1> [#uses=0]
12 %test52 = fcmp ole float %float1, %float2 ; <i1> [#uses=0]
13 %test53 = fcmp olt float %float1, %float2 ; <i1> [#uses=0]
14 %test54 = fcmp une float %float1, %float2 ; <i1> [#uses=0]
/external/clang/test/Sema/
Dext_vector_components.c3 typedef __attribute__(( ext_vector_type(2) )) float float2; typedef
11 float2 vec2, vec2_2; in test()
44 float2 lo(float3 x) { return x.lo; } in lo()
45 float2 hi(float3 x) { return x.hi; } in hi()
46 float2 ev(float3 x) { return x.even; } in ev()
47 float2 od(float3 x) { return x.odd; } in od()
Dext_vector_casts.c3 typedef __attribute__(( ext_vector_type(2) )) float float2; typedef
14 float2 vec2; in test()
54 typedef __attribute__(( ext_vector_type(2) )) float2 vecfloat2; // expected-error{{invalid vector e…
56 void inc(float2 f2) { in inc()
99 float2 vf = f; in splats()
Dvector-cast.c39 typedef float float2 __attribute__ ((vector_size (8))); typedef
42 float2 f2; in f4()
/external/clang/test/SemaCXX/
Derr_init_conversion_failed.cpp39 typedef float float2 __attribute__((ext_vector_type(2))); typedef
42 void test14(const float2 in, const float2 out) { in test14()
/external/llvm/test/CodeGen/SystemZ/
Dframe-15.ll45 %float2 = load float , float *%ptr2
47 %double2 = fpext float %float2 to double
72 %float2 = load float , float *%ptr2
74 %double2 = fpext float %float2 to double
99 %float2 = load float , float *%ptr2
101 %double2 = fpext float %float2 to double
126 %float2 = load float , float *%ptr2
128 %double2 = fpext float %float2 to double
153 %float2 = load float , float *%ptr2
155 %double2 = fpext float %float2 to double
[all …]
/external/clang/test/CodeGenOpenCL/
Dext-vector-shuffle.cl5 typedef __attribute__(( ext_vector_type(2) )) float float2;
8 float2 test1(float4 V) {
13 float2 W = V.ww;
Dvector_literals_nested.cl11 typedef float float2 __attribute((ext_vector_type(2)));
15 *p = (float4)(1.1f, 1.2f, ((float2)(1.3f, 1.4f)));
20 *p = (float4)(1.1f, 1.2f, ((float2)(1.3f)));
/external/llvm/test/CodeGen/NVPTX/
Dparam-align.ll19 ;;; Need 4-byte alignment on float2* passed byval
20 %struct.float2 = type { float, float }
21 define ptx_device void @t3(%struct.float2* byval %x) {
/external/clang/test/CodeGen/
Dext-vector.c4 typedef __attribute__(( ext_vector_type(2) )) float float2; typedef
20 float2 vec2, vec2_2;
291 void test16(float2 a, float2 b) { in test16()
292 float2 t0 = (a + b) / 2; in test16()
/external/clang/test/PCH/
Dexprs.h106 typedef __attribute__(( ext_vector_type(2) )) float float2; typedef
107 typedef typeof(__builtin_convertvector(vec2, float2)) convert_expr;
Dext_vector.h3 typedef __attribute__((ext_vector_type(2))) float float2; typedef
/external/clang/test/SemaTemplate/
Dext-vector-type.cpp87 typedef float __attribute__((ext_vector_type(2))) float2; typedef
92 int array2[X0<float2>::value == 2? 1 : -1];
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11app/
Dd3d11blit.hlsl33 float2 texcoord : TEXCOORD;
39 float2 texcoord : TEXCOORD;
/external/clang/test/PCH/Inputs/
Dchain-ext_vector1.h3 typedef __attribute__((ext_vector_type(2))) float float2; typedef
/external/mesa3d/src/gallium/state_trackers/d3d1x/progs/d3d11tex/
Dd3d11tex.hlsl35 float2 texcoord : TEXCOORD;
41 float2 texcoord : TEXCOORD;
/external/clang/test/OpenMP/
Datomic_read_codegen.c72 typedef float float2 __attribute__((ext_vector_type(2))); typedef
73 float2 float2x;
Datomic_write_codegen.c72 typedef float float2 __attribute__((ext_vector_type(2))); typedef
73 float2 float2x;
Datomic_update_codegen.cpp72 typedef float float2 __attribute__((ext_vector_type(2))); typedef
73 float2 float2x;

12