• Home
  • Raw
  • Download

Lines Matching refs:u4

11     uvec4 u4;
29 data[invocation].u4.x = subgroupAdd(data[0].u4.x);
30 data[invocation].u4.xy = subgroupAdd(data[1].u4.xy);
31 data[invocation].u4.xyz = subgroupAdd(data[2].u4.xyz);
32 data[invocation].u4 = subgroupAdd(data[3].u4);
49 data[invocation].u4.x = subgroupMul(data[0].u4.x);
50 data[invocation].u4.xy = subgroupMul(data[1].u4.xy);
51 data[invocation].u4.xyz = subgroupMul(data[2].u4.xyz);
52 data[invocation].u4 = subgroupMul(data[3].u4);
69 data[invocation].u4.x = subgroupMin(data[0].u4.x);
70 data[invocation].u4.xy = subgroupMin(data[1].u4.xy);
71 data[invocation].u4.xyz = subgroupMin(data[2].u4.xyz);
72 data[invocation].u4 = subgroupMin(data[3].u4);
89 data[invocation].u4.x = subgroupMax(data[0].u4.x);
90 data[invocation].u4.xy = subgroupMax(data[1].u4.xy);
91 data[invocation].u4.xyz = subgroupMax(data[2].u4.xyz);
92 data[invocation].u4 = subgroupMax(data[3].u4);
104 data[invocation].u4.x = subgroupAnd(data[0].u4.x);
105 data[invocation].u4.xy = subgroupAnd(data[1].u4.xy);
106 data[invocation].u4.xyz = subgroupAnd(data[2].u4.xyz);
107 data[invocation].u4 = subgroupAnd(data[3].u4);
119 data[invocation].u4.x = subgroupOr(data[0].u4.x);
120 data[invocation].u4.xy = subgroupOr(data[1].u4.xy);
121 data[invocation].u4.xyz = subgroupOr(data[2].u4.xyz);
122 data[invocation].u4 = subgroupOr(data[3].u4);
134 data[invocation].u4.x = subgroupXor(data[0].u4.x);
135 data[invocation].u4.xy = subgroupXor(data[1].u4.xy);
136 data[invocation].u4.xyz = subgroupXor(data[2].u4.xyz);
137 data[invocation].u4 = subgroupXor(data[3].u4);
154 data[invocation].u4.x = subgroupInclusiveAdd(data[0].u4.x);
155 data[invocation].u4.xy = subgroupInclusiveAdd(data[1].u4.xy);
156 data[invocation].u4.xyz = subgroupInclusiveAdd(data[2].u4.xyz);
157 data[invocation].u4 = subgroupInclusiveAdd(data[3].u4);
174 data[invocation].u4.x = subgroupInclusiveMul(data[0].u4.x);
175 data[invocation].u4.xy = subgroupInclusiveMul(data[1].u4.xy);
176 data[invocation].u4.xyz = subgroupInclusiveMul(data[2].u4.xyz);
177 data[invocation].u4 = subgroupInclusiveMul(data[3].u4);
194 data[invocation].u4.x = subgroupInclusiveMin(data[0].u4.x);
195 data[invocation].u4.xy = subgroupInclusiveMin(data[1].u4.xy);
196 data[invocation].u4.xyz = subgroupInclusiveMin(data[2].u4.xyz);
197 data[invocation].u4 = subgroupInclusiveMin(data[3].u4);
214 data[invocation].u4.x = subgroupInclusiveMax(data[0].u4.x);
215 data[invocation].u4.xy = subgroupInclusiveMax(data[1].u4.xy);
216 data[invocation].u4.xyz = subgroupInclusiveMax(data[2].u4.xyz);
217 data[invocation].u4 = subgroupInclusiveMax(data[3].u4);
229 data[invocation].u4.x = subgroupInclusiveAnd(data[0].u4.x);
230 data[invocation].u4.xy = subgroupInclusiveAnd(data[1].u4.xy);
231 data[invocation].u4.xyz = subgroupInclusiveAnd(data[2].u4.xyz);
232 data[invocation].u4 = subgroupInclusiveAnd(data[3].u4);
244 data[invocation].u4.x = subgroupInclusiveOr(data[0].u4.x);
245 data[invocation].u4.xy = subgroupInclusiveOr(data[1].u4.xy);
246 data[invocation].u4.xyz = subgroupInclusiveOr(data[2].u4.xyz);
247 data[invocation].u4 = subgroupInclusiveOr(data[3].u4);
259 data[invocation].u4.x = subgroupInclusiveXor(data[0].u4.x);
260 data[invocation].u4.xy = subgroupInclusiveXor(data[1].u4.xy);
261 data[invocation].u4.xyz = subgroupInclusiveXor(data[2].u4.xyz);
262 data[invocation].u4 = subgroupInclusiveXor(data[3].u4);
279 data[invocation].u4.x = subgroupExclusiveAdd(data[0].u4.x);
280 data[invocation].u4.xy = subgroupExclusiveAdd(data[1].u4.xy);
281 data[invocation].u4.xyz = subgroupExclusiveAdd(data[2].u4.xyz);
282 data[invocation].u4 = subgroupExclusiveAdd(data[3].u4);
299 data[invocation].u4.x = subgroupExclusiveMul(data[0].u4.x);
300 data[invocation].u4.xy = subgroupExclusiveMul(data[1].u4.xy);
301 data[invocation].u4.xyz = subgroupExclusiveMul(data[2].u4.xyz);
302 data[invocation].u4 = subgroupExclusiveMul(data[3].u4);
319 data[invocation].u4.x = subgroupExclusiveMin(data[0].u4.x);
320 data[invocation].u4.xy = subgroupExclusiveMin(data[1].u4.xy);
321 data[invocation].u4.xyz = subgroupExclusiveMin(data[2].u4.xyz);
322 data[invocation].u4 = subgroupExclusiveMin(data[3].u4);
339 data[invocation].u4.x = subgroupExclusiveMax(data[0].u4.x);
340 data[invocation].u4.xy = subgroupExclusiveMax(data[1].u4.xy);
341 data[invocation].u4.xyz = subgroupExclusiveMax(data[2].u4.xyz);
342 data[invocation].u4 = subgroupExclusiveMax(data[3].u4);
354 data[invocation].u4.x = subgroupExclusiveAnd(data[0].u4.x);
355 data[invocation].u4.xy = subgroupExclusiveAnd(data[1].u4.xy);
356 data[invocation].u4.xyz = subgroupExclusiveAnd(data[2].u4.xyz);
357 data[invocation].u4 = subgroupExclusiveAnd(data[3].u4);
369 data[invocation].u4.x = subgroupExclusiveOr(data[0].u4.x);
370 data[invocation].u4.xy = subgroupExclusiveOr(data[1].u4.xy);
371 data[invocation].u4.xyz = subgroupExclusiveOr(data[2].u4.xyz);
372 data[invocation].u4 = subgroupExclusiveOr(data[3].u4);
384 data[invocation].u4.x = subgroupExclusiveXor(data[0].u4.x);
385 data[invocation].u4.xy = subgroupExclusiveXor(data[1].u4.xy);
386 data[invocation].u4.xyz = subgroupExclusiveXor(data[2].u4.xyz);
387 data[invocation].u4 = subgroupExclusiveXor(data[3].u4);