Home
last modified time | relevance | path

Searched refs:int_1 (Results 1 – 25 of 332) sorted by relevance

12345678910>>...14

/external/deqp/external/vulkancts/data/vulkan/amber/spirv_assembly/instruction/spirv1p4/opptrnotequal/
Ddifferent_ssbos_not_equal.amber29 %int_1 = OpConstant %int 1
51 %v1_neq_v2_sel = OpSelect %int %v1_neq_v2 %int_1 %int_0
53 %out_idx1 = OpIAdd %int %out_idx0 %int_1
56 %v1_neq_v2_rta_sel = OpSelect %int %v1_neq_v2_rta %int_1 %int_0
58 %out_idx2 = OpIAdd %int %out_idx1 %int_1
61 %v1_neq_v2_int_sel = OpSelect %int %v1_neq_v2_int %int_1 %int_0
63 %out_idx3 = OpIAdd %int %out_idx2 %int_1
67 %v1_neq_v3_sel = OpSelect %int %v1_neq_v3 %int_1 %int_0
69 %out_idx4 = OpIAdd %int %out_idx3 %int_1
72 %v1_neq_v3_rta_sel = OpSelect %int %v1_neq_v3_rta %int_1 %int_0
[all …]
Ddifferent_wgs_not_equal.amber23 %int_1 = OpConstant %int 1
50 %v1_neq_v2_sel = OpSelect %int %v1_neq_v2 %int_1 %int_0
52 %out_idx1 = OpIAdd %int %out_idx0 %int_1
55 %v1_neq_v2_rta_sel = OpSelect %int %v1_neq_v2_rta %int_1 %int_0
57 %out_idx2 = OpIAdd %int %out_idx1 %int_1
60 %v1_neq_v2_int_sel = OpSelect %int %v1_neq_v2_int %int_1 %int_0
62 %out_idx3 = OpIAdd %int %out_idx2 %int_1
66 %v1_neq_v3_sel = OpSelect %int %v1_neq_v3 %int_1 %int_0
68 %out_idx4 = OpIAdd %int %out_idx3 %int_1
71 %v1_neq_v3_rta_sel = OpSelect %int %v1_neq_v3_rta %int_1 %int_0
[all …]
/external/deqp/external/vulkancts/data/vulkan/amber/spirv_assembly/instruction/spirv1p4/opptrequal/
Ddifferent_ssbos_equal.amber29 %int_1 = OpConstant %int 1
51 %v1_eq_v2_sel = OpSelect %int %v1_eq_v2 %int_1 %int_0
53 %out_idx1 = OpIAdd %int %out_idx0 %int_1
56 %v1_eq_v2_rta_sel = OpSelect %int %v1_eq_v2_rta %int_1 %int_0
58 %out_idx2 = OpIAdd %int %out_idx1 %int_1
61 %v1_eq_v2_int_sel = OpSelect %int %v1_eq_v2_int %int_1 %int_0
63 %out_idx3 = OpIAdd %int %out_idx2 %int_1
67 %v1_eq_v3_sel = OpSelect %int %v1_eq_v3 %int_1 %int_0
69 %out_idx4 = OpIAdd %int %out_idx3 %int_1
72 %v1_eq_v3_rta_sel = OpSelect %int %v1_eq_v3_rta %int_1 %int_0
[all …]
Ddifferent_wgs_equal.amber23 %int_1 = OpConstant %int 1
49 %v1_eq_v2_sel = OpSelect %int %v1_eq_v2 %int_1 %int_0
51 %out_idx1 = OpIAdd %int %out_idx0 %int_1
54 %v1_eq_v2_rta_sel = OpSelect %int %v1_eq_v2_rta %int_1 %int_0
56 %out_idx2 = OpIAdd %int %out_idx1 %int_1
59 %v1_eq_v2_int_sel = OpSelect %int %v1_eq_v2_int %int_1 %int_0
61 %out_idx3 = OpIAdd %int %out_idx2 %int_1
65 %v1_eq_v3_sel = OpSelect %int %v1_eq_v3 %int_1 %int_0
67 %out_idx4 = OpIAdd %int %out_idx3 %int_1
70 %v1_eq_v3_rta_sel = OpSelect %int %v1_eq_v3_rta %int_1 %int_0
[all …]
/external/llvm-project/clang/test/SemaCXX/
Daddress-space-newdelete.cpp6 typedef int __attribute__((address_space(1))) int_1; typedef
9 …(void)new int_1; // expected-error{{'new' cannot allocate objects of type 'int' in address space '… in test_new()
11 …(void)new int_1 [5]; // expected-error{{'new' cannot allocate objects of type 'int' in address spa… in test_new()
15 …(void)new (p) int_1; // expected-error{{'new' cannot allocate objects of type 'int' in address spa… in test_new()
17 …(void)new (p) int_1 [5]; // expected-error{{'new' cannot allocate objects of type 'int' in address… in test_new()
21 void test_delete(int_1 *ip1) { in test_delete()
Daddress-space-references.cpp3 typedef int __attribute__((address_space(1))) int_1; typedef
6 void f0(int_1 &); // expected-note{{candidate function not viable: cannot bind reference in g…
8 void f0(const int_1 &); // expected-note{{candidate function not viable: cannot bind reference in g…
13 static int_1 i1; in test_f0()
/external/clang/test/SemaCXX/
Daddress-space-newdelete.cpp6 typedef int __attribute__((address_space(1))) int_1; typedef
9 …(void)new int_1; // expected-error{{'new' cannot allocate objects of type 'int' in address space '… in test_new()
11 …(void)new int_1 [5]; // expected-error{{'new' cannot allocate objects of type 'int' in address spa… in test_new()
15 …(void)new (p) int_1; // expected-error{{'new' cannot allocate objects of type 'int' in address spa… in test_new()
17 …(void)new (p) int_1 [5]; // expected-error{{'new' cannot allocate objects of type 'int' in address… in test_new()
21 void test_delete(int_1 *ip1) { in test_delete()
Daddress-space-references.cpp3 typedef int __attribute__((address_space(1))) int_1; typedef
6 void f0(int_1 &); // expected-note{{candidate function not viable: 1st argument ('int') is in addre…
8 void f0(const int_1 &); // expected-note{{candidate function not viable: 1st argument ('int') is in…
13 static int_1 i1; in test_f0()
/external/skia/tests/sksl/shared/
DArrayTypes.asm.frag48 %int_1 = OpConstant %int 1
68 %36 = OpAccessChain %_ptr_Function_v2float %27 %int_1 %int_0
80 %45 = OpAccessChain %_ptr_Function_v2float %x %int_1
84 %50 = OpAccessChain %_ptr_Function_v2float %y %int_1
98 %64 = OpAccessChain %_ptr_Function_v2float %x %int_1
101 %67 = OpAccessChain %_ptr_Function_v2float %x %int_1
116 %82 = OpAccessChain %_ptr_Function_v2float %z %int_1 %int_0
120 %86 = OpAccessChain %_ptr_Function_v2float %y %int_1
123 %89 = OpAccessChain %_ptr_Function_v2float %y %int_1
126 %92 = OpAccessChain %_ptr_Function_v2float %z %int_1 %int_0
DNegatedVectorLiteral.asm.frag63 %int_1 = OpConstant %int 1
95 OpStore %one %int_1
98 OpStore %35 %int_1
99 %37 = OpAccessChain %_ptr_Function_int %result %int_1
100 OpStore %37 %int_1
102 OpStore %38 %int_1
117 %55 = OpSelect %int %54 %int_1 %int_0
145 %81 = OpAccessChain %_ptr_Function_float %_2_result %int_1
161 %98 = OpSelect %int %97 %int_1 %int_0
173 %111 = OpSelect %int %110 %int_1 %int_0
[all …]
DGaussianBlur.asm.frag281 %int_1 = OpConstant %int 1
326 %59 = OpAccessChain %_ptr_Function_float %_2_subsetCoord %int_1
433 %113 = OpAccessChain %_ptr_Uniform_v2float %4 %int_1
454 %134 = OpAccessChain %_ptr_Uniform_v2float %4 %int_1
473 %150 = OpAccessChain %_ptr_Uniform_v2float %4 %int_1
492 %166 = OpAccessChain %_ptr_Uniform_v2float %4 %int_1
511 %182 = OpAccessChain %_ptr_Uniform_v2float %4 %int_1
523 %192 = OpAccessChain %_ptr_Uniform_v4float %4 %int_2 %int_1
530 %198 = OpAccessChain %_ptr_Uniform_v2float %4 %int_1
542 %208 = OpAccessChain %_ptr_Uniform_v4float %4 %int_2 %int_1
[all …]
DNumberCasts.asm.frag43 %int_1 = OpConstant %int 1
70 %31 = OpAccessChain %_ptr_Function_bool %B %int_1
76 %41 = OpAccessChain %_ptr_Function_float %F %int_1
81 OpStore %47 %int_1
82 %49 = OpAccessChain %_ptr_Function_int %I %int_1
83 OpStore %49 %int_1
85 OpStore %50 %int_1
/external/clang/test/SemaTemplate/
Daddress-spaces.cpp13 typedef int __attribute__((address_space(1))) int_1;; typedef
30 int check_remove0[is_same<remove_pointer<int_1_ptr>::type, int_1>::value? 1 : -1];
33 int check_remove3[is_same<remove_pointer<int_2_ptr>::type, int_1>::value? -1 : 1];
72 static int __attribute__((address_space(1))) int_1; in test_arg_in_address_space_1() local
73 identity<int> ii = accept_arg_in_address_space_1(int_1); in test_arg_in_address_space_1()
74 identity<int __attribute__((address_space(1)))> ii2 = accept_any_arg(int_1); in test_arg_in_address_space_1()
/external/llvm-project/clang/test/SemaTemplate/
Daddress-spaces.cpp13 typedef int __attribute__((address_space(1))) int_1;; typedef
30 int check_remove0[is_same<remove_pointer<int_1_ptr>::type, int_1>::value? 1 : -1];
33 int check_remove3[is_same<remove_pointer<int_2_ptr>::type, int_1>::value? -1 : 1];
72 static int __attribute__((address_space(1))) int_1; in test_arg_in_address_space_1() local
73 identity<int> ii = accept_arg_in_address_space_1(int_1); in test_arg_in_address_space_1()
74 identity<int __attribute__((address_space(1)))> ii2 = accept_any_arg(int_1); in test_arg_in_address_space_1()
/external/skia/tests/sksl/intrinsics/
DInversesqrt.asm.frag104 %int_1 = OpConstant %int 1
138 %41 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
149 %52 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
164 %66 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
178 %78 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
188 %87 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
198 %96 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
209 %106 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
220 %116 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
231 %124 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
[all …]
DOuterProduct.asm.frag93 %int_1 = OpConstant %int 1
145 %30 = OpAccessChain %_ptr_Function_v2float %18 %int_1
174 %70 = OpAccessChain %_ptr_Function_v3float %62 %int_1
194 %92 = OpAccessChain %_ptr_Function_v4float %84 %int_1
232 %133 = OpAccessChain %_ptr_Function_v2float %126 %int_1
236 %138 = OpAccessChain %_ptr_Uniform_v3float %10 %int_1
238 %140 = OpAccessChain %_ptr_Uniform_v3float %10 %int_1
255 %155 = OpAccessChain %_ptr_Uniform_v3float %10 %int_1
261 %159 = OpAccessChain %_ptr_Function_v3float %153 %int_1
267 %166 = OpAccessChain %_ptr_Uniform_v3float %10 %int_1
[all …]
DExp2.asm.frag82 %int_1 = OpConstant %int 1
113 %34 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
124 %45 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
139 %59 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
153 %71 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
163 %80 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
173 %89 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
184 %99 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
195 %109 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
DLog.asm.frag81 %int_1 = OpConstant %int 1
107 %34 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
118 %45 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
133 %59 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
147 %71 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
157 %79 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
167 %86 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
178 %95 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
189 %104 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
DAcos.asm.frag81 %int_1 = OpConstant %int 1
107 %34 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
118 %45 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
133 %59 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
147 %71 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
157 %79 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
167 %86 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
178 %95 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
189 %104 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
DFract.asm.frag82 %int_1 = OpConstant %int 1
112 %34 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
123 %45 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
138 %59 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
152 %71 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
162 %79 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
172 %88 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
183 %98 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
194 %108 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
DDegrees.asm.frag82 %int_1 = OpConstant %int 1
113 %34 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
124 %45 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
139 %59 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
153 %71 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
163 %80 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
173 %89 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
184 %99 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
195 %109 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
DCosh.asm.frag82 %int_1 = OpConstant %int 1
110 %34 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
121 %45 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
136 %59 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
150 %71 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
160 %80 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
170 %88 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
181 %97 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
192 %106 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
DExp.asm.frag82 %int_1 = OpConstant %int 1
110 %34 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
121 %45 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
136 %59 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
150 %71 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
160 %80 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
170 %88 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
181 %97 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
192 %106 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
DSin.asm.frag81 %int_1 = OpConstant %int 1
107 %34 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
118 %45 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
133 %59 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
147 %71 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
157 %79 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
167 %86 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
178 %95 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
189 %104 = OpAccessChain %_ptr_Uniform_v4float %10 %int_1
/external/deqp/external/vulkancts/data/vulkan/amber/spirv_assembly/instruction/spirv1p4/opselect/
Dstruct_select.amber75 %int_1 = OpConstant %int 1
76 %11 = OpConstantComposite %S %int_1 %int_1 %int_1
98 %one = OpConstantComposite %S %int_1 %int_1 %int_1
113 %52 = OpAccessChain %_ptr_StorageBuffer_int %48 %int_1

12345678910>>...14