Home
last modified time | relevance | path

Searched refs:vbc (Results 1 – 5 of 5) sorted by relevance

/external/clang/test/CodeGen/
Dbuiltins-ppc-altivec.c6 vector bool char vbc = { 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0, 1, 0 }; variable
96 res_vsc = vec_add(vbc, vsc); in test1()
100 res_vsc = vec_add(vsc, vbc); in test1()
108 res_vuc = vec_add(vbc, vuc); in test1()
112 res_vuc = vec_add(vuc, vbc); in test1()
172 res_vsc = vec_vaddubm(vbc, vsc); in test1()
176 res_vsc = vec_vaddubm(vsc, vbc); in test1()
184 res_vuc = vec_vaddubm(vbc, vuc); in test1()
188 res_vuc = vec_vaddubm(vuc, vbc); in test1()
258 res_vsc = vec_adds(vbc, vsc); in test1()
[all …]
Dbuiltins-systemz-zvector.c16 volatile vector bool char vbc; variable
80 uc = vec_extract(vbc, idx); in test_core()
107 vuc = vec_insert(uc, vbc, idx); in test_core()
172 vbc = vec_perm(vbc, vbc, vuc); in test_core()
229 vsc = vec_sel(vsc, vsc, vbc); in test_core()
231 vuc = vec_sel(vuc, vuc, vbc); in test_core()
232 vbc = vec_sel(vbc, vbc, vuc); in test_core()
233 vbc = vec_sel(vbc, vbc, vbc); in test_core()
443 vbc = vec_splat(vbc, 0); in test_core()
445 vbc = vec_splat(vbc, 15); in test_core()
[all …]
Dbuiltins-ppc-p8vector.c19 vector bool char vbc = { 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 1, 1 }; variable
228 res_vsc = vec_eqv(vbc, vbc); in test1()
1220 res_vsc = vec_nand(vbc, vbc); in test1()
1294 res_vsc = vec_orc(vsc, vbc); in test1()
1300 res_vsc = vec_orc(vbc, vsc); in test1()
1312 res_vuc = vec_orc(vuc, vbc); in test1()
1318 res_vuc = vec_orc(vbc, vuc); in test1()
1324 res_vbc = vec_orc(vbc, vbc); in test1()
Dbuiltins-systemz-zvector-error.c16 volatile vector bool char vbc; variable
315 vbc = vec_splat(vbc, idx); // expected-error {{no matching function}} in test_core()
318 vbc = vec_splat(vbc, -1); // expected-error {{no matching function}} in test_core()
321 vbc = vec_splat(vbc, 16); // expected-error {{no matching function}} in test_core()
/external/clang/test/SemaCXX/
Daltivec.cpp6 vector bool char vbc; in test_vec_step() local
21 int res2[vec_step(vbc) == 16 ? 1 : -1]; in test_vec_step()