Lines Matching full:signed
7 typedef signed char __v16sc __attribute__((__vector_size__(16)));
9 typedef signed short __v8ss __attribute__((__vector_size__(16)));
11 typedef signed int __v4si __attribute__((__vector_size__(16)));
13 typedef signed long long __v2sll __attribute__((__vector_size__(16)));
15 typedef signed __int128 __v1slll __attribute__((__vector_size__(16)));
20 __v16sc *__attribute__((__overloadable__)) convert1(vector signed char);
22 __v8ss *__attribute__((__overloadable__)) convert1(vector signed short);
24 __v4si *__attribute__((__overloadable__)) convert1(vector signed int);
26 __v2sll *__attribute__((__overloadable__)) convert1(vector signed long long);
32 vector signed char *__attribute__((__overloadable__)) convert2(__v16sc);
34 vector signed short *__attribute__((__overloadable__)) convert2(__v8ss);
36 vector signed int *__attribute__((__overloadable__)) convert2(__v4si);
38 vector signed long long *__attribute__((__overloadable__)) convert2(__v2sll);
44 __v1slll *__attribute__((__overloadable__)) convert1(vector signed __int128);
47 vector signed __int128 *__attribute__((__overloadable__)) convert2(__v1slll);
68 vector signed char av1; in test()
70 vector signed short av3; in test()
72 vector signed int av5; in test()
74 vector signed long long av7; in test()
77 vector signed __int128 av9; in test()
100 vector signed char *av1_p = convert2(av1); in test()
102 vector signed short *av3_p = convert2(av3); in test()
104 vector signed int *av5_p = convert2(av5); in test()
106 vector signed long long *av7_p = convert2(av7); in test()
109 vector signed __int128 *av9_p = convert2(av9); in test()