Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/test/CodeGen/PowerPC/
H A Dbuiltins-ppc-altivec.c502 res_vbc = vec_and(vbc, vbc); in test1()
586 res_vbc = vec_vand(vbc, vbc); in test1()
681 res_vbc = vec_andc(vbc, vbc); in test1()
3155 res_vbc = vec_sel(vbc, vbc, vbc); in test6()
3355 res_vbc = vec_vsel(vbc, vbc, vbc); in test6()
4871 vec_st(vbc, 0, &vbc); in test6()
4975 vec_stvx(vbc, 0, &vbc); in test6()
5201 vec_stl(vbc, 0, &vbc); in test6()
5305 vec_stvxl(vbc, 0, &vbc); in test6()
6892 vec_stvlx(vbc, 0, &vbc); in test6()
[all …]
H A Dbuiltins-ppc-p8vector.c20 vector bool char vbc = { 0, 1, 0, 1, 0, 0, 0, 1, 0, 0, 0, 1, 0, 1, 1, 1 }; variable
243 res_vbc = vec_eqv(vbc, vbc); in test1()
850 res_vbc = vec_nand(vbc, vbc); in test1()
942 res_vsc = vec_orc(vsc, vbc); in test1()
948 res_vsc = vec_orc(vbc, vsc); in test1()
960 res_vuc = vec_orc(vuc, vbc); in test1()
966 res_vuc = vec_orc(vbc, vuc); in test1()
972 res_vbc = vec_orc(vbc, vbc); in test1()
H A Dbuiltins-ppc-vsx.c10 vector bool char vbc = { 0, 1, 0, 1, 0, 1, 0, 1, variable
546 res_vbc = vec_vsx_ld(0, &vbc); in test1()
664 vec_vsx_st(vbc, 0, &res_vbc); in test1()
668 vec_vsx_st(vbc, 0, res_asc); in test1()
672 vec_vsx_st(vbc, 0, res_auc); in test1()
/llvm-project-15.0.7/clang/test/CodeGen/SystemZ/
H A Dbuiltins-systemz-zvector.c230 vbc = vec_perm(vbc, vbc, vuc); in test_core()
363 vbc = vec_sel(vbc, vbc, vuc); in test_core()
365 vbc = vec_sel(vbc, vbc, vbc); in test_core()
884 vbc = vec_mergeh(vbc, vbc); in test_core()
924 vbc = vec_mergel(vbc, vbc); in test_core()
1119 vbc = vec_cmpeq(vbc, vbc); in test_compare()
2377 vbc = vec_andc(vbc, vbc); in test_integer()
2440 vbc = vec_nor(vbc, vbc); in test_integer()
2841 vbc = vec_sld(vbc, vbc, 0); in test_integer()
2844 vbc = vec_sld(vbc, vbc, 15); in test_integer()
[all …]
H A Dbuiltins-systemz-zvector2.c19 volatile vector bool char vbc; variable
496 vbc = vec_nand(vbc, vbc); in test_integer()
525 vbc = vec_orc(vbc, vbc); in test_integer()
554 vbc = vec_eqv(vbc, vbc); in test_integer()
H A Dbuiltins-systemz-zvector-error.c16 volatile vector bool char vbc; variable
304 vbc = vec_splat(vbc, idx); // expected-error {{no matching function}} in test_core()
307 vbc = vec_splat(vbc, -1); // expected-error {{no matching function}} in test_core()
310 vbc = vec_splat(vbc, 16); // expected-error {{no matching function}} in test_core()
H A Dbuiltins-systemz-zvector3.c19 volatile vector bool char vbc; variable
385 vuc = vec_search_string_cc(vbc, vbc, vuc, &cc); in test_string()
413 vuc = vec_search_string_until_zero_cc(vbc, vbc, vuc, &cc); in test_string()
H A Dbuiltins-systemz-zvector4.c19 volatile vector bool char vbc; variable
H A Dbuiltins-systemz-zvector4-error.c16 volatile vector bool char vbc; variable
H A Dbuiltins-systemz-zvector3-error.c16 volatile vector bool char vbc; variable
H A Dbuiltins-systemz-zvector2-error.c16 volatile vector bool char vbc; variable
/llvm-project-15.0.7/clang/test/SemaCXX/
H A Daltivec.cpp6 vector bool char vbc; in test_vec_step() local
21 int res2[vec_step(vbc) == 16 ? 1 : -1]; in test_vec_step()