Home
last modified time | relevance | path

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

/external/llvm-project/clang/test/CodeGen/SystemZ/
Dbuiltins-systemz-zvector3-error.c104 vsc = vec_srdb(vsc, vsc, idx); // expected-error {{no matching function}} \ in test_integer()
108 vuc = vec_srdb(vuc, vuc, idx); // expected-error {{no matching function}} \ in test_integer()
112 vss = vec_srdb(vss, vss, idx); // expected-error {{no matching function}} \ in test_integer()
116 vus = vec_srdb(vus, vus, idx); // expected-error {{no matching function}} \ in test_integer()
120 vsi = vec_srdb(vsi, vsi, idx); // expected-error {{no matching function}} \ in test_integer()
124 vui = vec_srdb(vui, vui, idx); // expected-error {{no matching function}} \ in test_integer()
128 vsl = vec_srdb(vsl, vsl, idx); // expected-error {{no matching function}} \ in test_integer()
132 vul = vec_srdb(vul, vul, idx); // expected-error {{no matching function}} \ in test_integer()
136 vf = vec_srdb(vf, vf, idx); // expected-error {{no matching function}} \ in test_integer()
140 vd = vec_srdb(vd, vd, idx); // expected-error {{no matching function}} \ in test_integer()
Dbuiltins-systemz-zvector3.c317 vsc = vec_srdb(vsc, vsc, 0); in test_integer()
320 vsc = vec_srdb(vsc, vsc, 7); in test_integer()
323 vuc = vec_srdb(vuc, vuc, 0); in test_integer()
326 vuc = vec_srdb(vuc, vuc, 7); in test_integer()
329 vss = vec_srdb(vss, vss, 0); in test_integer()
332 vss = vec_srdb(vss, vss, 7); in test_integer()
335 vus = vec_srdb(vus, vus, 0); in test_integer()
338 vus = vec_srdb(vus, vus, 7); in test_integer()
341 vsi = vec_srdb(vsi, vsi, 0); in test_integer()
344 vsi = vec_srdb(vsi, vsi, 7); in test_integer()
[all …]
/external/llvm-project/clang/test/CodeGen/
Dbuiltins-ppc-p10vector.c836 return vec_srdb(vsca, vscb, 8); in test_vec_srdb_sc()
842 return vec_srdb(vuca, vucb, 9); in test_vec_srdb_uc()
849 return vec_srdb(vssa, vssb, 10); in test_vec_srdb_ss()
856 return vec_srdb(vusa, vusb, 3); in test_vec_srdb_us()
863 return vec_srdb(vsia, vsib, 4); in test_vec_srdb_si()
870 return vec_srdb(vuia, vuib, 5); in test_vec_srdb_ui()
877 return vec_srdb(vslla, vsllb, 6); in test_vec_srdb_sll()
884 return vec_srdb(vulla, vullb, 7); in test_vec_srdb_ull()
/external/llvm-project/clang/lib/Headers/
Dvecintrin.h7829 vec_srdb(__vector signed char __a, __vector signed char __b, int __c)
7833 vec_srdb(__vector unsigned char __a, __vector unsigned char __b, int __c)
7837 vec_srdb(__vector signed short __a, __vector signed short __b, int __c)
7841 vec_srdb(__vector unsigned short __a, __vector unsigned short __b, int __c)
7845 vec_srdb(__vector signed int __a, __vector signed int __b, int __c)
7849 vec_srdb(__vector unsigned int __a, __vector unsigned int __b, int __c)
7853 vec_srdb(__vector signed long long __a, __vector signed long long __b, int __c)
7857 vec_srdb(__vector unsigned long long __a, __vector unsigned long long __b,
7862 vec_srdb(__vector float __a, __vector float __b, int __c)
7866 vec_srdb(__vector double __a, __vector double __b, int __c)
[all …]
Daltivec.h17636 #define vec_srdb(__a, __b, __c) __builtin_altivec_vsrdbi(__a, __b, (__c & 0x7)) macro