Lines Matching refs:vector
39 static __inline__ vector signed char __ATTRS_o_ai vec_perm(
40 vector signed char __a, vector signed char __b, vector unsigned char __c);
42 static __inline__ vector unsigned char __ATTRS_o_ai
43 vec_perm(vector unsigned char __a, vector unsigned char __b,
44 vector unsigned char __c);
46 static __inline__ vector bool char __ATTRS_o_ai
47 vec_perm(vector bool char __a, vector bool char __b, vector unsigned char __c);
49 static __inline__ vector short __ATTRS_o_ai vec_perm(vector signed short __a,
50 vector signed short __b,
51 vector unsigned char __c);
53 static __inline__ vector unsigned short __ATTRS_o_ai
54 vec_perm(vector unsigned short __a, vector unsigned short __b,
55 vector unsigned char __c);
57 static __inline__ vector bool short __ATTRS_o_ai vec_perm(
58 vector bool short __a, vector bool short __b, vector unsigned char __c);
60 static __inline__ vector pixel __ATTRS_o_ai vec_perm(vector pixel __a,
61 vector pixel __b,
62 vector unsigned char __c);
64 static __inline__ vector int __ATTRS_o_ai vec_perm(vector signed int __a,
65 vector signed int __b,
66 vector unsigned char __c);
68 static __inline__ vector unsigned int __ATTRS_o_ai vec_perm(
69 vector unsigned int __a, vector unsigned int __b, vector unsigned char __c);
71 static __inline__ vector bool int __ATTRS_o_ai
72 vec_perm(vector bool int __a, vector bool int __b, vector unsigned char __c);
74 static __inline__ vector float __ATTRS_o_ai vec_perm(vector float __a,
75 vector float __b,
76 vector unsigned char __c);
79 static __inline__ vector long long __ATTRS_o_ai
80 vec_perm(vector signed long long __a, vector signed long long __b,
81 vector unsigned char __c);
83 static __inline__ vector unsigned long long __ATTRS_o_ai
84 vec_perm(vector unsigned long long __a, vector unsigned long long __b,
85 vector unsigned char __c);
87 static __inline__ vector bool long long __ATTRS_o_ai
88 vec_perm(vector bool long long __a, vector bool long long __b,
89 vector unsigned char __c);
91 static __inline__ vector double __ATTRS_o_ai vec_perm(vector double __a,
92 vector double __b,
93 vector unsigned char __c);
96 static __inline__ vector unsigned char __ATTRS_o_ai
97 vec_xor(vector unsigned char __a, vector unsigned char __b);
105 static __inline__ vector signed char __ATTRS_o_ai
106 vec_abs(vector signed char __a) { in vec_abs()
110 static __inline__ vector signed short __ATTRS_o_ai
111 vec_abs(vector signed short __a) { in vec_abs()
115 static __inline__ vector signed int __ATTRS_o_ai
116 vec_abs(vector signed int __a) { in vec_abs()
121 static __inline__ vector signed long long __ATTRS_o_ai
122 vec_abs(vector signed long long __a) { in vec_abs()
127 static __inline__ vector float __ATTRS_o_ai vec_abs(vector float __a) { in vec_abs()
131 vector unsigned int __res = in vec_abs()
132 (vector unsigned int)__a & (vector unsigned int)(0x7FFFFFFF); in vec_abs()
133 return (vector float)__res; in vec_abs()
138 static __inline__ vector double __ATTRS_o_ai vec_abs(vector double __a) { in vec_abs()
148 static __inline__ vector signed char __ATTRS_o_ai
149 vec_abss(vector signed char __a) { in vec_abss()
151 __a, __builtin_altivec_vsubsbs((vector signed char)(0), __a)); in vec_abss()
154 static __inline__ vector signed short __ATTRS_o_ai
155 vec_abss(vector signed short __a) { in vec_abss()
157 __a, __builtin_altivec_vsubshs((vector signed short)(0), __a)); in vec_abss()
160 static __inline__ vector signed int __ATTRS_o_ai
161 vec_abss(vector signed int __a) { in vec_abss()
163 __a, __builtin_altivec_vsubsws((vector signed int)(0), __a)); in vec_abss()
168 static __inline__ vector signed char __ATTRS_o_ai
169 vec_add(vector signed char __a, vector signed char __b) { in vec_add()
173 static __inline__ vector signed char __ATTRS_o_ai
174 vec_add(vector bool char __a, vector signed char __b) { in vec_add()
175 return (vector signed char)__a + __b; in vec_add()
178 static __inline__ vector signed char __ATTRS_o_ai
179 vec_add(vector signed char __a, vector bool char __b) { in vec_add()
180 return __a + (vector signed char)__b; in vec_add()
183 static __inline__ vector unsigned char __ATTRS_o_ai
184 vec_add(vector unsigned char __a, vector unsigned char __b) { in vec_add()
188 static __inline__ vector unsigned char __ATTRS_o_ai
189 vec_add(vector bool char __a, vector unsigned char __b) { in vec_add()
190 return (vector unsigned char)__a + __b; in vec_add()
193 static __inline__ vector unsigned char __ATTRS_o_ai
194 vec_add(vector unsigned char __a, vector bool char __b) { in vec_add()
195 return __a + (vector unsigned char)__b; in vec_add()
198 static __inline__ vector short __ATTRS_o_ai vec_add(vector short __a, in vec_add()
199 vector short __b) { in vec_add()
203 static __inline__ vector short __ATTRS_o_ai vec_add(vector bool short __a, in vec_add()
204 vector short __b) { in vec_add()
205 return (vector short)__a + __b; in vec_add()
208 static __inline__ vector short __ATTRS_o_ai vec_add(vector short __a, in vec_add()
209 vector bool short __b) { in vec_add()
210 return __a + (vector short)__b; in vec_add()
213 static __inline__ vector unsigned short __ATTRS_o_ai
214 vec_add(vector unsigned short __a, vector unsigned short __b) { in vec_add()
218 static __inline__ vector unsigned short __ATTRS_o_ai
219 vec_add(vector bool short __a, vector unsigned short __b) { in vec_add()
220 return (vector unsigned short)__a + __b; in vec_add()
223 static __inline__ vector unsigned short __ATTRS_o_ai
224 vec_add(vector unsigned short __a, vector bool short __b) { in vec_add()
225 return __a + (vector unsigned short)__b; in vec_add()
228 static __inline__ vector int __ATTRS_o_ai vec_add(vector int __a, in vec_add()
229 vector int __b) { in vec_add()
233 static __inline__ vector int __ATTRS_o_ai vec_add(vector bool int __a, in vec_add()
234 vector int __b) { in vec_add()
235 return (vector int)__a + __b; in vec_add()
238 static __inline__ vector int __ATTRS_o_ai vec_add(vector int __a, in vec_add()
239 vector bool int __b) { in vec_add()
240 return __a + (vector int)__b; in vec_add()
243 static __inline__ vector unsigned int __ATTRS_o_ai
244 vec_add(vector unsigned int __a, vector unsigned int __b) { in vec_add()
248 static __inline__ vector unsigned int __ATTRS_o_ai
249 vec_add(vector bool int __a, vector unsigned int __b) { in vec_add()
250 return (vector unsigned int)__a + __b; in vec_add()
253 static __inline__ vector unsigned int __ATTRS_o_ai
254 vec_add(vector unsigned int __a, vector bool int __b) { in vec_add()
255 return __a + (vector unsigned int)__b; in vec_add()
259 static __inline__ vector signed long long __ATTRS_o_ai
260 vec_add(vector signed long long __a, vector signed long long __b) { in vec_add()
264 static __inline__ vector unsigned long long __ATTRS_o_ai
265 vec_add(vector unsigned long long __a, vector unsigned long long __b) { in vec_add()
269 static __inline__ vector signed __int128 __ATTRS_o_ai
270 vec_add(vector signed __int128 __a, vector signed __int128 __b) { in vec_add()
274 static __inline__ vector unsigned __int128 __ATTRS_o_ai
275 vec_add(vector unsigned __int128 __a, vector unsigned __int128 __b) { in vec_add()
280 static __inline__ vector float __ATTRS_o_ai vec_add(vector float __a, in vec_add()
281 vector float __b) { in vec_add()
286 static __inline__ vector double __ATTRS_o_ai vec_add(vector double __a, in vec_add()
287 vector double __b) { in vec_add()
295 static __inline__ vector signed __int128 __ATTRS_o_ai
296 vec_adde(vector signed __int128 __a, vector signed __int128 __b, in vec_adde()
297 vector signed __int128 __c) { in vec_adde()
301 static __inline__ vector unsigned __int128 __ATTRS_o_ai
302 vec_adde(vector unsigned __int128 __a, vector unsigned __int128 __b, in vec_adde()
303 vector unsigned __int128 __c) { in vec_adde()
311 static __inline__ vector signed __int128 __ATTRS_o_ai
312 vec_addec(vector signed __int128 __a, vector signed __int128 __b, in vec_addec()
313 vector signed __int128 __c) { in vec_addec()
317 static __inline__ vector unsigned __int128 __ATTRS_o_ai
318 vec_addec(vector unsigned __int128 __a, vector unsigned __int128 __b, in vec_addec()
319 vector unsigned __int128 __c) { in vec_addec()
328 static __inline__ vector signed char __ATTRS_o_ai
329 vec_vaddubm(vector signed char __a, vector signed char __b) { in vec_vaddubm()
333 static __inline__ vector signed char __ATTRS_o_ai
334 vec_vaddubm(vector bool char __a, vector signed char __b) { in vec_vaddubm()
335 return (vector signed char)__a + __b; in vec_vaddubm()
338 static __inline__ vector signed char __ATTRS_o_ai
339 vec_vaddubm(vector signed char __a, vector bool char __b) { in vec_vaddubm()
340 return __a + (vector signed char)__b; in vec_vaddubm()
343 static __inline__ vector unsigned char __ATTRS_o_ai
344 vec_vaddubm(vector unsigned char __a, vector unsigned char __b) { in vec_vaddubm()
348 static __inline__ vector unsigned char __ATTRS_o_ai
349 vec_vaddubm(vector bool char __a, vector unsigned char __b) { in vec_vaddubm()
350 return (vector unsigned char)__a + __b; in vec_vaddubm()
353 static __inline__ vector unsigned char __ATTRS_o_ai
354 vec_vaddubm(vector unsigned char __a, vector bool char __b) { in vec_vaddubm()
355 return __a + (vector unsigned char)__b; in vec_vaddubm()
362 static __inline__ vector short __ATTRS_o_ai vec_vadduhm(vector short __a, in vec_vadduhm()
363 vector short __b) { in vec_vadduhm()
367 static __inline__ vector short __ATTRS_o_ai vec_vadduhm(vector bool short __a, in vec_vadduhm()
368 vector short __b) { in vec_vadduhm()
369 return (vector short)__a + __b; in vec_vadduhm()
372 static __inline__ vector short __ATTRS_o_ai vec_vadduhm(vector short __a, in vec_vadduhm()
373 vector bool short __b) { in vec_vadduhm()
374 return __a + (vector short)__b; in vec_vadduhm()
377 static __inline__ vector unsigned short __ATTRS_o_ai
378 vec_vadduhm(vector unsigned short __a, vector unsigned short __b) { in vec_vadduhm()
382 static __inline__ vector unsigned short __ATTRS_o_ai
383 vec_vadduhm(vector bool short __a, vector unsigned short __b) { in vec_vadduhm()
384 return (vector unsigned short)__a + __b; in vec_vadduhm()
387 static __inline__ vector unsigned short __ATTRS_o_ai
388 vec_vadduhm(vector unsigned short __a, vector bool short __b) { in vec_vadduhm()
389 return __a + (vector unsigned short)__b; in vec_vadduhm()
396 static __inline__ vector int __ATTRS_o_ai vec_vadduwm(vector int __a, in vec_vadduwm()
397 vector int __b) { in vec_vadduwm()
401 static __inline__ vector int __ATTRS_o_ai vec_vadduwm(vector bool int __a, in vec_vadduwm()
402 vector int __b) { in vec_vadduwm()
403 return (vector int)__a + __b; in vec_vadduwm()
406 static __inline__ vector int __ATTRS_o_ai vec_vadduwm(vector int __a, in vec_vadduwm()
407 vector bool int __b) { in vec_vadduwm()
408 return __a + (vector int)__b; in vec_vadduwm()
411 static __inline__ vector unsigned int __ATTRS_o_ai
412 vec_vadduwm(vector unsigned int __a, vector unsigned int __b) { in vec_vadduwm()
416 static __inline__ vector unsigned int __ATTRS_o_ai
417 vec_vadduwm(vector bool int __a, vector unsigned int __b) { in vec_vadduwm()
418 return (vector unsigned int)__a + __b; in vec_vadduwm()
421 static __inline__ vector unsigned int __ATTRS_o_ai
422 vec_vadduwm(vector unsigned int __a, vector bool int __b) { in vec_vadduwm()
423 return __a + (vector unsigned int)__b; in vec_vadduwm()
430 static __inline__ vector float __attribute__((__always_inline__))
431 vec_vaddfp(vector float __a, vector float __b) { in vec_vaddfp()
437 static __inline__ vector signed int __ATTRS_o_ai
438 vec_addc(vector signed int __a, vector signed int __b) { in vec_addc()
439 return (vector signed int)__builtin_altivec_vaddcuw((vector unsigned int)__a, in vec_addc()
440 (vector unsigned int)__b); in vec_addc()
443 static __inline__ vector unsigned int __ATTRS_o_ai
444 vec_addc(vector unsigned int __a, vector unsigned int __b) { in vec_addc()
449 static __inline__ vector signed __int128 __ATTRS_o_ai
450 vec_addc(vector signed __int128 __a, vector signed __int128 __b) { in vec_addc()
451 return (vector signed __int128)__builtin_altivec_vaddcuq( in vec_addc()
452 (vector unsigned __int128)__a, (vector unsigned __int128)__b); in vec_addc()
455 static __inline__ vector unsigned __int128 __ATTRS_o_ai
456 vec_addc(vector unsigned __int128 __a, vector unsigned __int128 __b) { in vec_addc()
463 static __inline__ vector unsigned int __attribute__((__always_inline__))
464 vec_vaddcuw(vector unsigned int __a, vector unsigned int __b) { in vec_vaddcuw()
470 static __inline__ vector signed char __ATTRS_o_ai
471 vec_adds(vector signed char __a, vector signed char __b) { in vec_adds()
475 static __inline__ vector signed char __ATTRS_o_ai
476 vec_adds(vector bool char __a, vector signed char __b) { in vec_adds()
477 return __builtin_altivec_vaddsbs((vector signed char)__a, __b); in vec_adds()
480 static __inline__ vector signed char __ATTRS_o_ai
481 vec_adds(vector signed char __a, vector bool char __b) { in vec_adds()
482 return __builtin_altivec_vaddsbs(__a, (vector signed char)__b); in vec_adds()
485 static __inline__ vector unsigned char __ATTRS_o_ai
486 vec_adds(vector unsigned char __a, vector unsigned char __b) { in vec_adds()
490 static __inline__ vector unsigned char __ATTRS_o_ai
491 vec_adds(vector bool char __a, vector unsigned char __b) { in vec_adds()
492 return __builtin_altivec_vaddubs((vector unsigned char)__a, __b); in vec_adds()
495 static __inline__ vector unsigned char __ATTRS_o_ai
496 vec_adds(vector unsigned char __a, vector bool char __b) { in vec_adds()
497 return __builtin_altivec_vaddubs(__a, (vector unsigned char)__b); in vec_adds()
500 static __inline__ vector short __ATTRS_o_ai vec_adds(vector short __a, in vec_adds()
501 vector short __b) { in vec_adds()
505 static __inline__ vector short __ATTRS_o_ai vec_adds(vector bool short __a, in vec_adds()
506 vector short __b) { in vec_adds()
507 return __builtin_altivec_vaddshs((vector short)__a, __b); in vec_adds()
510 static __inline__ vector short __ATTRS_o_ai vec_adds(vector short __a, in vec_adds()
511 vector bool short __b) { in vec_adds()
512 return __builtin_altivec_vaddshs(__a, (vector short)__b); in vec_adds()
515 static __inline__ vector unsigned short __ATTRS_o_ai
516 vec_adds(vector unsigned short __a, vector unsigned short __b) { in vec_adds()
520 static __inline__ vector unsigned short __ATTRS_o_ai
521 vec_adds(vector bool short __a, vector unsigned short __b) { in vec_adds()
522 return __builtin_altivec_vadduhs((vector unsigned short)__a, __b); in vec_adds()
525 static __inline__ vector unsigned short __ATTRS_o_ai
526 vec_adds(vector unsigned short __a, vector bool short __b) { in vec_adds()
527 return __builtin_altivec_vadduhs(__a, (vector unsigned short)__b); in vec_adds()
530 static __inline__ vector int __ATTRS_o_ai vec_adds(vector int __a, in vec_adds()
531 vector int __b) { in vec_adds()
535 static __inline__ vector int __ATTRS_o_ai vec_adds(vector bool int __a, in vec_adds()
536 vector int __b) { in vec_adds()
537 return __builtin_altivec_vaddsws((vector int)__a, __b); in vec_adds()
540 static __inline__ vector int __ATTRS_o_ai vec_adds(vector int __a, in vec_adds()
541 vector bool int __b) { in vec_adds()
542 return __builtin_altivec_vaddsws(__a, (vector int)__b); in vec_adds()
545 static __inline__ vector unsigned int __ATTRS_o_ai
546 vec_adds(vector unsigned int __a, vector unsigned int __b) { in vec_adds()
550 static __inline__ vector unsigned int __ATTRS_o_ai
551 vec_adds(vector bool int __a, vector unsigned int __b) { in vec_adds()
552 return __builtin_altivec_vadduws((vector unsigned int)__a, __b); in vec_adds()
555 static __inline__ vector unsigned int __ATTRS_o_ai
556 vec_adds(vector unsigned int __a, vector bool int __b) { in vec_adds()
557 return __builtin_altivec_vadduws(__a, (vector unsigned int)__b); in vec_adds()
562 static __inline__ vector signed char __ATTRS_o_ai
563 vec_vaddsbs(vector signed char __a, vector signed char __b) { in vec_vaddsbs()
567 static __inline__ vector signed char __ATTRS_o_ai
568 vec_vaddsbs(vector bool char __a, vector signed char __b) { in vec_vaddsbs()
569 return __builtin_altivec_vaddsbs((vector signed char)__a, __b); in vec_vaddsbs()
572 static __inline__ vector signed char __ATTRS_o_ai
573 vec_vaddsbs(vector signed char __a, vector bool char __b) { in vec_vaddsbs()
574 return __builtin_altivec_vaddsbs(__a, (vector signed char)__b); in vec_vaddsbs()
579 static __inline__ vector unsigned char __ATTRS_o_ai
580 vec_vaddubs(vector unsigned char __a, vector unsigned char __b) { in vec_vaddubs()
584 static __inline__ vector unsigned char __ATTRS_o_ai
585 vec_vaddubs(vector bool char __a, vector unsigned char __b) { in vec_vaddubs()
586 return __builtin_altivec_vaddubs((vector unsigned char)__a, __b); in vec_vaddubs()
589 static __inline__ vector unsigned char __ATTRS_o_ai
590 vec_vaddubs(vector unsigned char __a, vector bool char __b) { in vec_vaddubs()
591 return __builtin_altivec_vaddubs(__a, (vector unsigned char)__b); in vec_vaddubs()
596 static __inline__ vector short __ATTRS_o_ai vec_vaddshs(vector short __a, in vec_vaddshs()
597 vector short __b) { in vec_vaddshs()
601 static __inline__ vector short __ATTRS_o_ai vec_vaddshs(vector bool short __a, in vec_vaddshs()
602 vector short __b) { in vec_vaddshs()
603 return __builtin_altivec_vaddshs((vector short)__a, __b); in vec_vaddshs()
606 static __inline__ vector short __ATTRS_o_ai vec_vaddshs(vector short __a, in vec_vaddshs()
607 vector bool short __b) { in vec_vaddshs()
608 return __builtin_altivec_vaddshs(__a, (vector short)__b); in vec_vaddshs()
613 static __inline__ vector unsigned short __ATTRS_o_ai
614 vec_vadduhs(vector unsigned short __a, vector unsigned short __b) { in vec_vadduhs()
618 static __inline__ vector unsigned short __ATTRS_o_ai
619 vec_vadduhs(vector bool short __a, vector unsigned short __b) { in vec_vadduhs()
620 return __builtin_altivec_vadduhs((vector unsigned short)__a, __b); in vec_vadduhs()
623 static __inline__ vector unsigned short __ATTRS_o_ai
624 vec_vadduhs(vector unsigned short __a, vector bool short __b) { in vec_vadduhs()
625 return __builtin_altivec_vadduhs(__a, (vector unsigned short)__b); in vec_vadduhs()
630 static __inline__ vector int __ATTRS_o_ai vec_vaddsws(vector int __a, in vec_vaddsws()
631 vector int __b) { in vec_vaddsws()
635 static __inline__ vector int __ATTRS_o_ai vec_vaddsws(vector bool int __a, in vec_vaddsws()
636 vector int __b) { in vec_vaddsws()
637 return __builtin_altivec_vaddsws((vector int)__a, __b); in vec_vaddsws()
640 static __inline__ vector int __ATTRS_o_ai vec_vaddsws(vector int __a, in vec_vaddsws()
641 vector bool int __b) { in vec_vaddsws()
642 return __builtin_altivec_vaddsws(__a, (vector int)__b); in vec_vaddsws()
647 static __inline__ vector unsigned int __ATTRS_o_ai
648 vec_vadduws(vector unsigned int __a, vector unsigned int __b) { in vec_vadduws()
652 static __inline__ vector unsigned int __ATTRS_o_ai
653 vec_vadduws(vector bool int __a, vector unsigned int __b) { in vec_vadduws()
654 return __builtin_altivec_vadduws((vector unsigned int)__a, __b); in vec_vadduws()
657 static __inline__ vector unsigned int __ATTRS_o_ai
658 vec_vadduws(vector unsigned int __a, vector bool int __b) { in vec_vadduws()
659 return __builtin_altivec_vadduws(__a, (vector unsigned int)__b); in vec_vadduws()
665 static __inline__ vector signed __int128 __ATTRS_o_ai
666 vec_vadduqm(vector signed __int128 __a, vector signed __int128 __b) { in vec_vadduqm()
670 static __inline__ vector unsigned __int128 __ATTRS_o_ai
671 vec_vadduqm(vector unsigned __int128 __a, vector unsigned __int128 __b) { in vec_vadduqm()
677 static __inline__ vector signed __int128 __ATTRS_o_ai
678 vec_vaddeuqm(vector signed __int128 __a, vector signed __int128 __b, in vec_vaddeuqm()
679 vector signed __int128 __c) { in vec_vaddeuqm()
683 static __inline__ vector unsigned __int128 __ATTRS_o_ai
684 vec_vaddeuqm(vector unsigned __int128 __a, vector unsigned __int128 __b, in vec_vaddeuqm()
685 vector unsigned __int128 __c) { in vec_vaddeuqm()
691 static __inline__ vector signed __int128 __ATTRS_o_ai
692 vec_vaddcuq(vector signed __int128 __a, vector signed __int128 __b) { in vec_vaddcuq()
696 static __inline__ vector unsigned __int128 __ATTRS_o_ai
697 vec_vaddcuq(vector unsigned __int128 __a, vector unsigned __int128 __b) { in vec_vaddcuq()
703 static __inline__ vector signed __int128 __ATTRS_o_ai
704 vec_vaddecuq(vector signed __int128 __a, vector signed __int128 __b, in vec_vaddecuq()
705 vector signed __int128 __c) { in vec_vaddecuq()
709 static __inline__ vector unsigned __int128 __ATTRS_o_ai
710 vec_vaddecuq(vector unsigned __int128 __a, vector unsigned __int128 __b, in vec_vaddecuq()
711 vector unsigned __int128 __c) { in vec_vaddecuq()
720 static __inline__ vector signed char __ATTRS_o_ai
721 vec_and(vector signed char __a, vector signed char __b) { in vec_and()
725 static __inline__ vector signed char __ATTRS_o_ai
726 vec_and(vector bool char __a, vector signed char __b) { in vec_and()
727 return (vector signed char)__a & __b; in vec_and()
730 static __inline__ vector signed char __ATTRS_o_ai
731 vec_and(vector signed char __a, vector bool char __b) { in vec_and()
732 return __a & (vector signed char)__b; in vec_and()
735 static __inline__ vector unsigned char __ATTRS_o_ai
736 vec_and(vector unsigned char __a, vector unsigned char __b) { in vec_and()
740 static __inline__ vector unsigned char __ATTRS_o_ai
741 vec_and(vector bool char __a, vector unsigned char __b) { in vec_and()
742 return (vector unsigned char)__a & __b; in vec_and()
745 static __inline__ vector unsigned char __ATTRS_o_ai
746 vec_and(vector unsigned char __a, vector bool char __b) { in vec_and()
747 return __a & (vector unsigned char)__b; in vec_and()
750 static __inline__ vector bool char __ATTRS_o_ai vec_and(vector bool char __a, in vec_and()
751 vector bool char __b) { in vec_and()
755 static __inline__ vector short __ATTRS_o_ai vec_and(vector short __a, in vec_and()
756 vector short __b) { in vec_and()
760 static __inline__ vector short __ATTRS_o_ai vec_and(vector bool short __a, in vec_and()
761 vector short __b) { in vec_and()
762 return (vector short)__a & __b; in vec_and()
765 static __inline__ vector short __ATTRS_o_ai vec_and(vector short __a, in vec_and()
766 vector bool short __b) { in vec_and()
767 return __a & (vector short)__b; in vec_and()
770 static __inline__ vector unsigned short __ATTRS_o_ai
771 vec_and(vector unsigned short __a, vector unsigned short __b) { in vec_and()
775 static __inline__ vector unsigned short __ATTRS_o_ai
776 vec_and(vector bool short __a, vector unsigned short __b) { in vec_and()
777 return (vector unsigned short)__a & __b; in vec_and()
780 static __inline__ vector unsigned short __ATTRS_o_ai
781 vec_and(vector unsigned short __a, vector bool short __b) { in vec_and()
782 return __a & (vector unsigned short)__b; in vec_and()
785 static __inline__ vector bool short __ATTRS_o_ai
786 vec_and(vector bool short __a, vector bool short __b) { in vec_and()
790 static __inline__ vector int __ATTRS_o_ai vec_and(vector int __a, in vec_and()
791 vector int __b) { in vec_and()
795 static __inline__ vector int __ATTRS_o_ai vec_and(vector bool int __a, in vec_and()
796 vector int __b) { in vec_and()
797 return (vector int)__a & __b; in vec_and()
800 static __inline__ vector int __ATTRS_o_ai vec_and(vector int __a, in vec_and()
801 vector bool int __b) { in vec_and()
802 return __a & (vector int)__b; in vec_and()
805 static __inline__ vector unsigned int __ATTRS_o_ai
806 vec_and(vector unsigned int __a, vector unsigned int __b) { in vec_and()
810 static __inline__ vector unsigned int __ATTRS_o_ai
811 vec_and(vector bool int __a, vector unsigned int __b) { in vec_and()
812 return (vector unsigned int)__a & __b; in vec_and()
815 static __inline__ vector unsigned int __ATTRS_o_ai
816 vec_and(vector unsigned int __a, vector bool int __b) { in vec_and()
817 return __a & (vector unsigned int)__b; in vec_and()
820 static __inline__ vector bool int __ATTRS_o_ai vec_and(vector bool int __a, in vec_and()
821 vector bool int __b) { in vec_and()
825 static __inline__ vector float __ATTRS_o_ai vec_and(vector float __a, in vec_and()
826 vector float __b) { in vec_and()
827 vector unsigned int __res = in vec_and()
828 (vector unsigned int)__a & (vector unsigned int)__b; in vec_and()
829 return (vector float)__res; in vec_and()
832 static __inline__ vector float __ATTRS_o_ai vec_and(vector bool int __a, in vec_and()
833 vector float __b) { in vec_and()
834 vector unsigned int __res = in vec_and()
835 (vector unsigned int)__a & (vector unsigned int)__b; in vec_and()
836 return (vector float)__res; in vec_and()
839 static __inline__ vector float __ATTRS_o_ai vec_and(vector float __a, in vec_and()
840 vector bool int __b) { in vec_and()
841 vector unsigned int __res = in vec_and()
842 (vector unsigned int)__a & (vector unsigned int)__b; in vec_and()
843 return (vector float)__res; in vec_and()
847 static __inline__ vector double __ATTRS_o_ai vec_and(vector bool long long __a, in vec_and()
848 vector double __b) { in vec_and()
849 vector unsigned long long __res = in vec_and()
850 (vector unsigned long long)__a & (vector unsigned long long)__b; in vec_and()
851 return (vector double)__res; in vec_and()
854 static __inline__ vector double __ATTRS_o_ai
855 vec_and(vector double __a, vector bool long long __b) { in vec_and()
856 vector unsigned long long __res = in vec_and()
857 (vector unsigned long long)__a & (vector unsigned long long)__b; in vec_and()
858 return (vector double)__res; in vec_and()
861 static __inline__ vector double __ATTRS_o_ai vec_and(vector double __a, in vec_and()
862 vector double __b) { in vec_and()
863 vector unsigned long long __res = in vec_and()
864 (vector unsigned long long)__a & (vector unsigned long long)__b; in vec_and()
865 return (vector double)__res; in vec_and()
868 static __inline__ vector signed long long __ATTRS_o_ai
869 vec_and(vector signed long long __a, vector signed long long __b) { in vec_and()
873 static __inline__ vector signed long long __ATTRS_o_ai
874 vec_and(vector bool long long __a, vector signed long long __b) { in vec_and()
875 return (vector signed long long)__a & __b; in vec_and()
878 static __inline__ vector signed long long __ATTRS_o_ai
879 vec_and(vector signed long long __a, vector bool long long __b) { in vec_and()
880 return __a & (vector signed long long)__b; in vec_and()
883 static __inline__ vector unsigned long long __ATTRS_o_ai
884 vec_and(vector unsigned long long __a, vector unsigned long long __b) { in vec_and()
888 static __inline__ vector unsigned long long __ATTRS_o_ai
889 vec_and(vector bool long long __a, vector unsigned long long __b) { in vec_and()
890 return (vector unsigned long long)__a & __b; in vec_and()
893 static __inline__ vector unsigned long long __ATTRS_o_ai
894 vec_and(vector unsigned long long __a, vector bool long long __b) { in vec_and()
895 return __a & (vector unsigned long long)__b; in vec_and()
898 static __inline__ vector bool long long __ATTRS_o_ai
899 vec_and(vector bool long long __a, vector bool long long __b) { in vec_and()
906 static __inline__ vector signed char __ATTRS_o_ai
907 vec_vand(vector signed char __a, vector signed char __b) { in vec_vand()
911 static __inline__ vector signed char __ATTRS_o_ai
912 vec_vand(vector bool char __a, vector signed char __b) { in vec_vand()
913 return (vector signed char)__a & __b; in vec_vand()
916 static __inline__ vector signed char __ATTRS_o_ai
917 vec_vand(vector signed char __a, vector bool char __b) { in vec_vand()
918 return __a & (vector signed char)__b; in vec_vand()
921 static __inline__ vector unsigned char __ATTRS_o_ai
922 vec_vand(vector unsigned char __a, vector unsigned char __b) { in vec_vand()
926 static __inline__ vector unsigned char __ATTRS_o_ai
927 vec_vand(vector bool char __a, vector unsigned char __b) { in vec_vand()
928 return (vector unsigned char)__a & __b; in vec_vand()
931 static __inline__ vector unsigned char __ATTRS_o_ai
932 vec_vand(vector unsigned char __a, vector bool char __b) { in vec_vand()
933 return __a & (vector unsigned char)__b; in vec_vand()
936 static __inline__ vector bool char __ATTRS_o_ai vec_vand(vector bool char __a, in vec_vand()
937 vector bool char __b) { in vec_vand()
941 static __inline__ vector short __ATTRS_o_ai vec_vand(vector short __a, in vec_vand()
942 vector short __b) { in vec_vand()
946 static __inline__ vector short __ATTRS_o_ai vec_vand(vector bool short __a, in vec_vand()
947 vector short __b) { in vec_vand()
948 return (vector short)__a & __b; in vec_vand()
951 static __inline__ vector short __ATTRS_o_ai vec_vand(vector short __a, in vec_vand()
952 vector bool short __b) { in vec_vand()
953 return __a & (vector short)__b; in vec_vand()
956 static __inline__ vector unsigned short __ATTRS_o_ai
957 vec_vand(vector unsigned short __a, vector unsigned short __b) { in vec_vand()
961 static __inline__ vector unsigned short __ATTRS_o_ai
962 vec_vand(vector bool short __a, vector unsigned short __b) { in vec_vand()
963 return (vector unsigned short)__a & __b; in vec_vand()
966 static __inline__ vector unsigned short __ATTRS_o_ai
967 vec_vand(vector unsigned short __a, vector bool short __b) { in vec_vand()
968 return __a & (vector unsigned short)__b; in vec_vand()
971 static __inline__ vector bool short __ATTRS_o_ai
972 vec_vand(vector bool short __a, vector bool short __b) { in vec_vand()
976 static __inline__ vector int __ATTRS_o_ai vec_vand(vector int __a, in vec_vand()
977 vector int __b) { in vec_vand()
981 static __inline__ vector int __ATTRS_o_ai vec_vand(vector bool int __a, in vec_vand()
982 vector int __b) { in vec_vand()
983 return (vector int)__a & __b; in vec_vand()
986 static __inline__ vector int __ATTRS_o_ai vec_vand(vector int __a, in vec_vand()
987 vector bool int __b) { in vec_vand()
988 return __a & (vector int)__b; in vec_vand()
991 static __inline__ vector unsigned int __ATTRS_o_ai
992 vec_vand(vector unsigned int __a, vector unsigned int __b) { in vec_vand()
996 static __inline__ vector unsigned int __ATTRS_o_ai
997 vec_vand(vector bool int __a, vector unsigned int __b) { in vec_vand()
998 return (vector unsigned int)__a & __b; in vec_vand()
1001 static __inline__ vector unsigned int __ATTRS_o_ai
1002 vec_vand(vector unsigned int __a, vector bool int __b) { in vec_vand()
1003 return __a & (vector unsigned int)__b; in vec_vand()
1006 static __inline__ vector bool int __ATTRS_o_ai vec_vand(vector bool int __a, in vec_vand()
1007 vector bool int __b) { in vec_vand()
1011 static __inline__ vector float __ATTRS_o_ai vec_vand(vector float __a, in vec_vand()
1012 vector float __b) { in vec_vand()
1013 vector unsigned int __res = in vec_vand()
1014 (vector unsigned int)__a & (vector unsigned int)__b; in vec_vand()
1015 return (vector float)__res; in vec_vand()
1018 static __inline__ vector float __ATTRS_o_ai vec_vand(vector bool int __a, in vec_vand()
1019 vector float __b) { in vec_vand()
1020 vector unsigned int __res = in vec_vand()
1021 (vector unsigned int)__a & (vector unsigned int)__b; in vec_vand()
1022 return (vector float)__res; in vec_vand()
1025 static __inline__ vector float __ATTRS_o_ai vec_vand(vector float __a, in vec_vand()
1026 vector bool int __b) { in vec_vand()
1027 vector unsigned int __res = in vec_vand()
1028 (vector unsigned int)__a & (vector unsigned int)__b; in vec_vand()
1029 return (vector float)__res; in vec_vand()
1033 static __inline__ vector signed long long __ATTRS_o_ai
1034 vec_vand(vector signed long long __a, vector signed long long __b) { in vec_vand()
1038 static __inline__ vector signed long long __ATTRS_o_ai
1039 vec_vand(vector bool long long __a, vector signed long long __b) { in vec_vand()
1040 return (vector signed long long)__a & __b; in vec_vand()
1043 static __inline__ vector signed long long __ATTRS_o_ai
1044 vec_vand(vector signed long long __a, vector bool long long __b) { in vec_vand()
1045 return __a & (vector signed long long)__b; in vec_vand()
1048 static __inline__ vector unsigned long long __ATTRS_o_ai
1049 vec_vand(vector unsigned long long __a, vector unsigned long long __b) { in vec_vand()
1053 static __inline__ vector unsigned long long __ATTRS_o_ai
1054 vec_vand(vector bool long long __a, vector unsigned long long __b) { in vec_vand()
1055 return (vector unsigned long long)__a & __b; in vec_vand()
1058 static __inline__ vector unsigned long long __ATTRS_o_ai
1059 vec_vand(vector unsigned long long __a, vector bool long long __b) { in vec_vand()
1060 return __a & (vector unsigned long long)__b; in vec_vand()
1063 static __inline__ vector bool long long __ATTRS_o_ai
1064 vec_vand(vector bool long long __a, vector bool long long __b) { in vec_vand()
1073 static __inline__ vector signed char __ATTRS_o_ai
1074 vec_andc(vector signed char __a, vector signed char __b) { in vec_andc()
1078 static __inline__ vector signed char __ATTRS_o_ai
1079 vec_andc(vector bool char __a, vector signed char __b) { in vec_andc()
1080 return (vector signed char)__a & ~__b; in vec_andc()
1083 static __inline__ vector signed char __ATTRS_o_ai
1084 vec_andc(vector signed char __a, vector bool char __b) { in vec_andc()
1085 return __a & ~(vector signed char)__b; in vec_andc()
1088 static __inline__ vector unsigned char __ATTRS_o_ai
1089 vec_andc(vector unsigned char __a, vector unsigned char __b) { in vec_andc()
1093 static __inline__ vector unsigned char __ATTRS_o_ai
1094 vec_andc(vector bool char __a, vector unsigned char __b) { in vec_andc()
1095 return (vector unsigned char)__a & ~__b; in vec_andc()
1098 static __inline__ vector unsigned char __ATTRS_o_ai
1099 vec_andc(vector unsigned char __a, vector bool char __b) { in vec_andc()
1100 return __a & ~(vector unsigned char)__b; in vec_andc()
1103 static __inline__ vector bool char __ATTRS_o_ai vec_andc(vector bool char __a, in vec_andc()
1104 vector bool char __b) { in vec_andc()
1108 static __inline__ vector short __ATTRS_o_ai vec_andc(vector short __a, in vec_andc()
1109 vector short __b) { in vec_andc()
1113 static __inline__ vector short __ATTRS_o_ai vec_andc(vector bool short __a, in vec_andc()
1114 vector short __b) { in vec_andc()
1115 return (vector short)__a & ~__b; in vec_andc()
1118 static __inline__ vector short __ATTRS_o_ai vec_andc(vector short __a, in vec_andc()
1119 vector bool short __b) { in vec_andc()
1120 return __a & ~(vector short)__b; in vec_andc()
1123 static __inline__ vector unsigned short __ATTRS_o_ai
1124 vec_andc(vector unsigned short __a, vector unsigned short __b) { in vec_andc()
1128 static __inline__ vector unsigned short __ATTRS_o_ai
1129 vec_andc(vector bool short __a, vector unsigned short __b) { in vec_andc()
1130 return (vector unsigned short)__a & ~__b; in vec_andc()
1133 static __inline__ vector unsigned short __ATTRS_o_ai
1134 vec_andc(vector unsigned short __a, vector bool short __b) { in vec_andc()
1135 return __a & ~(vector unsigned short)__b; in vec_andc()
1138 static __inline__ vector bool short __ATTRS_o_ai
1139 vec_andc(vector bool short __a, vector bool short __b) { in vec_andc()
1143 static __inline__ vector int __ATTRS_o_ai vec_andc(vector int __a, in vec_andc()
1144 vector int __b) { in vec_andc()
1148 static __inline__ vector int __ATTRS_o_ai vec_andc(vector bool int __a, in vec_andc()
1149 vector int __b) { in vec_andc()
1150 return (vector int)__a & ~__b; in vec_andc()
1153 static __inline__ vector int __ATTRS_o_ai vec_andc(vector int __a, in vec_andc()
1154 vector bool int __b) { in vec_andc()
1155 return __a & ~(vector int)__b; in vec_andc()
1158 static __inline__ vector unsigned int __ATTRS_o_ai
1159 vec_andc(vector unsigned int __a, vector unsigned int __b) { in vec_andc()
1163 static __inline__ vector unsigned int __ATTRS_o_ai
1164 vec_andc(vector bool int __a, vector unsigned int __b) { in vec_andc()
1165 return (vector unsigned int)__a & ~__b; in vec_andc()
1168 static __inline__ vector unsigned int __ATTRS_o_ai
1169 vec_andc(vector unsigned int __a, vector bool int __b) { in vec_andc()
1170 return __a & ~(vector unsigned int)__b; in vec_andc()
1173 static __inline__ vector bool int __ATTRS_o_ai vec_andc(vector bool int __a, in vec_andc()
1174 vector bool int __b) { in vec_andc()
1178 static __inline__ vector float __ATTRS_o_ai vec_andc(vector float __a, in vec_andc()
1179 vector float __b) { in vec_andc()
1180 vector unsigned int __res = in vec_andc()
1181 (vector unsigned int)__a & ~(vector unsigned int)__b; in vec_andc()
1182 return (vector float)__res; in vec_andc()
1185 static __inline__ vector float __ATTRS_o_ai vec_andc(vector bool int __a, in vec_andc()
1186 vector float __b) { in vec_andc()
1187 vector unsigned int __res = in vec_andc()
1188 (vector unsigned int)__a & ~(vector unsigned int)__b; in vec_andc()
1189 return (vector float)__res; in vec_andc()
1192 static __inline__ vector float __ATTRS_o_ai vec_andc(vector float __a, in vec_andc()
1193 vector bool int __b) { in vec_andc()
1194 vector unsigned int __res = in vec_andc()
1195 (vector unsigned int)__a & ~(vector unsigned int)__b; in vec_andc()
1196 return (vector float)__res; in vec_andc()
1200 static __inline__ vector double __ATTRS_o_ai vec_andc(vector bool long long __a, in vec_andc()
1201 vector double __b) { in vec_andc()
1202 vector unsigned long long __res = in vec_andc()
1203 (vector unsigned long long)__a & ~(vector unsigned long long)__b; in vec_andc()
1204 return (vector double)__res; in vec_andc()
1207 static __inline__ vector double __ATTRS_o_ai
1208 vec_andc(vector double __a, vector bool long long __b) { in vec_andc()
1209 vector unsigned long long __res = in vec_andc()
1210 (vector unsigned long long)__a & ~(vector unsigned long long)__b; in vec_andc()
1211 return (vector double)__res; in vec_andc()
1214 static __inline__ vector double __ATTRS_o_ai vec_andc(vector double __a, in vec_andc()
1215 vector double __b) { in vec_andc()
1216 vector unsigned long long __res = in vec_andc()
1217 (vector unsigned long long)__a & ~(vector unsigned long long)__b; in vec_andc()
1218 return (vector double)__res; in vec_andc()
1221 static __inline__ vector signed long long __ATTRS_o_ai
1222 vec_andc(vector signed long long __a, vector signed long long __b) { in vec_andc()
1226 static __inline__ vector signed long long __ATTRS_o_ai
1227 vec_andc(vector bool long long __a, vector signed long long __b) { in vec_andc()
1228 return (vector signed long long)__a & ~__b; in vec_andc()
1231 static __inline__ vector signed long long __ATTRS_o_ai
1232 vec_andc(vector signed long long __a, vector bool long long __b) { in vec_andc()
1233 return __a & ~(vector signed long long)__b; in vec_andc()
1236 static __inline__ vector unsigned long long __ATTRS_o_ai
1237 vec_andc(vector unsigned long long __a, vector unsigned long long __b) { in vec_andc()
1241 static __inline__ vector unsigned long long __ATTRS_o_ai
1242 vec_andc(vector bool long long __a, vector unsigned long long __b) { in vec_andc()
1243 return (vector unsigned long long)__a & ~__b; in vec_andc()
1246 static __inline__ vector unsigned long long __ATTRS_o_ai
1247 vec_andc(vector unsigned long long __a, vector bool long long __b) { in vec_andc()
1248 return __a & ~(vector unsigned long long)__b; in vec_andc()
1251 static __inline__ vector bool long long __ATTRS_o_ai
1252 vec_andc(vector bool long long __a, vector bool long long __b) { in vec_andc()
1259 static __inline__ vector signed char __ATTRS_o_ai
1260 vec_vandc(vector signed char __a, vector signed char __b) { in vec_vandc()
1264 static __inline__ vector signed char __ATTRS_o_ai
1265 vec_vandc(vector bool char __a, vector signed char __b) { in vec_vandc()
1266 return (vector signed char)__a & ~__b; in vec_vandc()
1269 static __inline__ vector signed char __ATTRS_o_ai
1270 vec_vandc(vector signed char __a, vector bool char __b) { in vec_vandc()
1271 return __a & ~(vector signed char)__b; in vec_vandc()
1274 static __inline__ vector unsigned char __ATTRS_o_ai
1275 vec_vandc(vector unsigned char __a, vector unsigned char __b) { in vec_vandc()
1279 static __inline__ vector unsigned char __ATTRS_o_ai
1280 vec_vandc(vector bool char __a, vector unsigned char __b) { in vec_vandc()
1281 return (vector unsigned char)__a & ~__b; in vec_vandc()
1284 static __inline__ vector unsigned char __ATTRS_o_ai
1285 vec_vandc(vector unsigned char __a, vector bool char __b) { in vec_vandc()
1286 return __a & ~(vector unsigned char)__b; in vec_vandc()
1289 static __inline__ vector bool char __ATTRS_o_ai
1290 vec_vandc(vector bool char __a, vector bool char __b) { in vec_vandc()
1294 static __inline__ vector short __ATTRS_o_ai vec_vandc(vector short __a, in vec_vandc()
1295 vector short __b) { in vec_vandc()
1299 static __inline__ vector short __ATTRS_o_ai vec_vandc(vector bool short __a, in vec_vandc()
1300 vector short __b) { in vec_vandc()
1301 return (vector short)__a & ~__b; in vec_vandc()
1304 static __inline__ vector short __ATTRS_o_ai vec_vandc(vector short __a, in vec_vandc()
1305 vector bool short __b) { in vec_vandc()
1306 return __a & ~(vector short)__b; in vec_vandc()
1309 static __inline__ vector unsigned short __ATTRS_o_ai
1310 vec_vandc(vector unsigned short __a, vector unsigned short __b) { in vec_vandc()
1314 static __inline__ vector unsigned short __ATTRS_o_ai
1315 vec_vandc(vector bool short __a, vector unsigned short __b) { in vec_vandc()
1316 return (vector unsigned short)__a & ~__b; in vec_vandc()
1319 static __inline__ vector unsigned short __ATTRS_o_ai
1320 vec_vandc(vector unsigned short __a, vector bool short __b) { in vec_vandc()
1321 return __a & ~(vector unsigned short)__b; in vec_vandc()
1324 static __inline__ vector bool short __ATTRS_o_ai
1325 vec_vandc(vector bool short __a, vector bool short __b) { in vec_vandc()
1329 static __inline__ vector int __ATTRS_o_ai vec_vandc(vector int __a, in vec_vandc()
1330 vector int __b) { in vec_vandc()
1334 static __inline__ vector int __ATTRS_o_ai vec_vandc(vector bool int __a, in vec_vandc()
1335 vector int __b) { in vec_vandc()
1336 return (vector int)__a & ~__b; in vec_vandc()
1339 static __inline__ vector int __ATTRS_o_ai vec_vandc(vector int __a, in vec_vandc()
1340 vector bool int __b) { in vec_vandc()
1341 return __a & ~(vector int)__b; in vec_vandc()
1344 static __inline__ vector unsigned int __ATTRS_o_ai
1345 vec_vandc(vector unsigned int __a, vector unsigned int __b) { in vec_vandc()
1349 static __inline__ vector unsigned int __ATTRS_o_ai
1350 vec_vandc(vector bool int __a, vector unsigned int __b) { in vec_vandc()
1351 return (vector unsigned int)__a & ~__b; in vec_vandc()
1354 static __inline__ vector unsigned int __ATTRS_o_ai
1355 vec_vandc(vector unsigned int __a, vector bool int __b) { in vec_vandc()
1356 return __a & ~(vector unsigned int)__b; in vec_vandc()
1359 static __inline__ vector bool int __ATTRS_o_ai vec_vandc(vector bool int __a, in vec_vandc()
1360 vector bool int __b) { in vec_vandc()
1364 static __inline__ vector float __ATTRS_o_ai vec_vandc(vector float __a, in vec_vandc()
1365 vector float __b) { in vec_vandc()
1366 vector unsigned int __res = in vec_vandc()
1367 (vector unsigned int)__a & ~(vector unsigned int)__b; in vec_vandc()
1368 return (vector float)__res; in vec_vandc()
1371 static __inline__ vector float __ATTRS_o_ai vec_vandc(vector bool int __a, in vec_vandc()
1372 vector float __b) { in vec_vandc()
1373 vector unsigned int __res = in vec_vandc()
1374 (vector unsigned int)__a & ~(vector unsigned int)__b; in vec_vandc()
1375 return (vector float)__res; in vec_vandc()
1378 static __inline__ vector float __ATTRS_o_ai vec_vandc(vector float __a, in vec_vandc()
1379 vector bool int __b) { in vec_vandc()
1380 vector unsigned int __res = in vec_vandc()
1381 (vector unsigned int)__a & ~(vector unsigned int)__b; in vec_vandc()
1382 return (vector float)__res; in vec_vandc()
1386 static __inline__ vector signed long long __ATTRS_o_ai
1387 vec_vandc(vector signed long long __a, vector signed long long __b) { in vec_vandc()
1391 static __inline__ vector signed long long __ATTRS_o_ai
1392 vec_vandc(vector bool long long __a, vector signed long long __b) { in vec_vandc()
1393 return (vector signed long long)__a & ~__b; in vec_vandc()
1396 static __inline__ vector signed long long __ATTRS_o_ai
1397 vec_vandc(vector signed long long __a, vector bool long long __b) { in vec_vandc()
1398 return __a & ~(vector signed long long)__b; in vec_vandc()
1401 static __inline__ vector unsigned long long __ATTRS_o_ai
1402 vec_vandc(vector unsigned long long __a, vector unsigned long long __b) { in vec_vandc()
1406 static __inline__ vector unsigned long long __ATTRS_o_ai
1407 vec_vandc(vector bool long long __a, vector unsigned long long __b) { in vec_vandc()
1408 return (vector unsigned long long)__a & ~__b; in vec_vandc()
1411 static __inline__ vector unsigned long long __ATTRS_o_ai
1412 vec_vandc(vector unsigned long long __a, vector bool long long __b) { in vec_vandc()
1413 return __a & ~(vector unsigned long long)__b; in vec_vandc()
1416 static __inline__ vector bool long long __ATTRS_o_ai
1417 vec_vandc(vector bool long long __a, vector bool long long __b) { in vec_vandc()
1424 static __inline__ vector signed char __ATTRS_o_ai
1425 vec_avg(vector signed char __a, vector signed char __b) { in vec_avg()
1429 static __inline__ vector unsigned char __ATTRS_o_ai
1430 vec_avg(vector unsigned char __a, vector unsigned char __b) { in vec_avg()
1434 static __inline__ vector short __ATTRS_o_ai vec_avg(vector short __a, in vec_avg()
1435 vector short __b) { in vec_avg()
1439 static __inline__ vector unsigned short __ATTRS_o_ai
1440 vec_avg(vector unsigned short __a, vector unsigned short __b) { in vec_avg()
1444 static __inline__ vector int __ATTRS_o_ai vec_avg(vector int __a, in vec_avg()
1445 vector int __b) { in vec_avg()
1449 static __inline__ vector unsigned int __ATTRS_o_ai
1450 vec_avg(vector unsigned int __a, vector unsigned int __b) { in vec_avg()
1456 static __inline__ vector signed char __attribute__((__always_inline__))
1457 vec_vavgsb(vector signed char __a, vector signed char __b) { in vec_vavgsb()
1463 static __inline__ vector unsigned char __attribute__((__always_inline__))
1464 vec_vavgub(vector unsigned char __a, vector unsigned char __b) { in vec_vavgub()
1470 static __inline__ vector short __attribute__((__always_inline__))
1471 vec_vavgsh(vector short __a, vector short __b) { in vec_vavgsh()
1477 static __inline__ vector unsigned short __attribute__((__always_inline__))
1478 vec_vavguh(vector unsigned short __a, vector unsigned short __b) { in vec_vavguh()
1484 static __inline__ vector int __attribute__((__always_inline__))
1485 vec_vavgsw(vector int __a, vector int __b) { in vec_vavgsw()
1491 static __inline__ vector unsigned int __attribute__((__always_inline__))
1492 vec_vavguw(vector unsigned int __a, vector unsigned int __b) { in vec_vavguw()
1498 static __inline__ vector float __ATTRS_o_ai vec_ceil(vector float __a) { in vec_ceil()
1507 static __inline__ vector double __ATTRS_o_ai vec_ceil(vector double __a) { in vec_ceil()
1514 static __inline__ vector float __attribute__((__always_inline__))
1515 vec_vrfip(vector float __a) { in vec_vrfip()
1521 static __inline__ vector int __attribute__((__always_inline__))
1522 vec_cmpb(vector float __a, vector float __b) { in vec_cmpb()
1528 static __inline__ vector int __attribute__((__always_inline__))
1529 vec_vcmpbfp(vector float __a, vector float __b) { in vec_vcmpbfp()
1535 static __inline__ vector bool char __ATTRS_o_ai
1536 vec_cmpeq(vector signed char __a, vector signed char __b) { in vec_cmpeq()
1537 return (vector bool char)__builtin_altivec_vcmpequb((vector char)__a, in vec_cmpeq()
1538 (vector char)__b); in vec_cmpeq()
1541 static __inline__ vector bool char __ATTRS_o_ai
1542 vec_cmpeq(vector unsigned char __a, vector unsigned char __b) { in vec_cmpeq()
1543 return (vector bool char)__builtin_altivec_vcmpequb((vector char)__a, in vec_cmpeq()
1544 (vector char)__b); in vec_cmpeq()
1547 static __inline__ vector bool short __ATTRS_o_ai vec_cmpeq(vector short __a, in vec_cmpeq()
1548 vector short __b) { in vec_cmpeq()
1549 return (vector bool short)__builtin_altivec_vcmpequh(__a, __b); in vec_cmpeq()
1552 static __inline__ vector bool short __ATTRS_o_ai
1553 vec_cmpeq(vector unsigned short __a, vector unsigned short __b) { in vec_cmpeq()
1554 return (vector bool short)__builtin_altivec_vcmpequh((vector short)__a, in vec_cmpeq()
1555 (vector short)__b); in vec_cmpeq()
1558 static __inline__ vector bool int __ATTRS_o_ai vec_cmpeq(vector int __a, in vec_cmpeq()
1559 vector int __b) { in vec_cmpeq()
1560 return (vector bool int)__builtin_altivec_vcmpequw(__a, __b); in vec_cmpeq()
1563 static __inline__ vector bool int __ATTRS_o_ai
1564 vec_cmpeq(vector unsigned int __a, vector unsigned int __b) { in vec_cmpeq()
1565 return (vector bool int)__builtin_altivec_vcmpequw((vector int)__a, in vec_cmpeq()
1566 (vector int)__b); in vec_cmpeq()
1570 static __inline__ vector bool long long __ATTRS_o_ai
1571 vec_cmpeq(vector signed long long __a, vector signed long long __b) { in vec_cmpeq()
1572 return (vector bool long long)__builtin_altivec_vcmpequd(__a, __b); in vec_cmpeq()
1575 static __inline__ vector bool long long __ATTRS_o_ai
1576 vec_cmpeq(vector unsigned long long __a, vector unsigned long long __b) { in vec_cmpeq()
1577 return (vector bool long long)__builtin_altivec_vcmpequd( in vec_cmpeq()
1578 (vector long long)__a, (vector long long)__b); in vec_cmpeq()
1582 static __inline__ vector bool int __ATTRS_o_ai vec_cmpeq(vector float __a, in vec_cmpeq()
1583 vector float __b) { in vec_cmpeq()
1585 return (vector bool int)__builtin_vsx_xvcmpeqsp(__a, __b); in vec_cmpeq()
1587 return (vector bool int)__builtin_altivec_vcmpeqfp(__a, __b); in vec_cmpeq()
1592 static __inline__ vector bool long long __ATTRS_o_ai
1593 vec_cmpeq(vector double __a, vector double __b) { in vec_cmpeq()
1594 return (vector bool long long)__builtin_vsx_xvcmpeqdp(__a, __b); in vec_cmpeq()
1600 static __inline__ vector bool char __ATTRS_o_ai
1601 vec_cmpgt(vector signed char __a, vector signed char __b) { in vec_cmpgt()
1602 return (vector bool char)__builtin_altivec_vcmpgtsb(__a, __b); in vec_cmpgt()
1605 static __inline__ vector bool char __ATTRS_o_ai
1606 vec_cmpgt(vector unsigned char __a, vector unsigned char __b) { in vec_cmpgt()
1607 return (vector bool char)__builtin_altivec_vcmpgtub(__a, __b); in vec_cmpgt()
1610 static __inline__ vector bool short __ATTRS_o_ai vec_cmpgt(vector short __a, in vec_cmpgt()
1611 vector short __b) { in vec_cmpgt()
1612 return (vector bool short)__builtin_altivec_vcmpgtsh(__a, __b); in vec_cmpgt()
1615 static __inline__ vector bool short __ATTRS_o_ai
1616 vec_cmpgt(vector unsigned short __a, vector unsigned short __b) { in vec_cmpgt()
1617 return (vector bool short)__builtin_altivec_vcmpgtuh(__a, __b); in vec_cmpgt()
1620 static __inline__ vector bool int __ATTRS_o_ai vec_cmpgt(vector int __a, in vec_cmpgt()
1621 vector int __b) { in vec_cmpgt()
1622 return (vector bool int)__builtin_altivec_vcmpgtsw(__a, __b); in vec_cmpgt()
1625 static __inline__ vector bool int __ATTRS_o_ai
1626 vec_cmpgt(vector unsigned int __a, vector unsigned int __b) { in vec_cmpgt()
1627 return (vector bool int)__builtin_altivec_vcmpgtuw(__a, __b); in vec_cmpgt()
1631 static __inline__ vector bool long long __ATTRS_o_ai
1632 vec_cmpgt(vector signed long long __a, vector signed long long __b) { in vec_cmpgt()
1633 return (vector bool long long)__builtin_altivec_vcmpgtsd(__a, __b); in vec_cmpgt()
1636 static __inline__ vector bool long long __ATTRS_o_ai
1637 vec_cmpgt(vector unsigned long long __a, vector unsigned long long __b) { in vec_cmpgt()
1638 return (vector bool long long)__builtin_altivec_vcmpgtud(__a, __b); in vec_cmpgt()
1642 static __inline__ vector bool int __ATTRS_o_ai vec_cmpgt(vector float __a, in vec_cmpgt()
1643 vector float __b) { in vec_cmpgt()
1645 return (vector bool int)__builtin_vsx_xvcmpgtsp(__a, __b); in vec_cmpgt()
1647 return (vector bool int)__builtin_altivec_vcmpgtfp(__a, __b); in vec_cmpgt()
1652 static __inline__ vector bool long long __ATTRS_o_ai
1653 vec_cmpgt(vector double __a, vector double __b) { in vec_cmpgt()
1654 return (vector bool long long)__builtin_vsx_xvcmpgtdp(__a, __b); in vec_cmpgt()
1660 static __inline__ vector bool char __ATTRS_o_ai
1661 vec_cmpge(vector signed char __a, vector signed char __b) { in vec_cmpge()
1665 static __inline__ vector bool char __ATTRS_o_ai
1666 vec_cmpge(vector unsigned char __a, vector unsigned char __b) { in vec_cmpge()
1670 static __inline__ vector bool short __ATTRS_o_ai
1671 vec_cmpge(vector signed short __a, vector signed short __b) { in vec_cmpge()
1675 static __inline__ vector bool short __ATTRS_o_ai
1676 vec_cmpge(vector unsigned short __a, vector unsigned short __b) { in vec_cmpge()
1680 static __inline__ vector bool int __ATTRS_o_ai
1681 vec_cmpge(vector signed int __a, vector signed int __b) { in vec_cmpge()
1685 static __inline__ vector bool int __ATTRS_o_ai
1686 vec_cmpge(vector unsigned int __a, vector unsigned int __b) { in vec_cmpge()
1690 static __inline__ vector bool int __ATTRS_o_ai vec_cmpge(vector float __a, in vec_cmpge()
1691 vector float __b) { in vec_cmpge()
1693 return (vector bool int)__builtin_vsx_xvcmpgesp(__a, __b); in vec_cmpge()
1695 return (vector bool int)__builtin_altivec_vcmpgefp(__a, __b); in vec_cmpge()
1700 static __inline__ vector bool long long __ATTRS_o_ai
1701 vec_cmpge(vector double __a, vector double __b) { in vec_cmpge()
1702 return (vector bool long long)__builtin_vsx_xvcmpgedp(__a, __b); in vec_cmpge()
1707 static __inline__ vector bool long long __ATTRS_o_ai
1708 vec_cmpge(vector signed long long __a, vector signed long long __b) { in vec_cmpge()
1712 static __inline__ vector bool long long __ATTRS_o_ai
1713 vec_cmpge(vector unsigned long long __a, vector unsigned long long __b) { in vec_cmpge()
1720 static __inline__ vector bool int __attribute__((__always_inline__))
1721 vec_vcmpgefp(vector float __a, vector float __b) { in vec_vcmpgefp()
1722 return (vector bool int)__builtin_altivec_vcmpgefp(__a, __b); in vec_vcmpgefp()
1727 static __inline__ vector bool char __attribute__((__always_inline__))
1728 vec_vcmpgtsb(vector signed char __a, vector signed char __b) { in vec_vcmpgtsb()
1729 return (vector bool char)__builtin_altivec_vcmpgtsb(__a, __b); in vec_vcmpgtsb()
1734 static __inline__ vector bool char __attribute__((__always_inline__))
1735 vec_vcmpgtub(vector unsigned char __a, vector unsigned char __b) { in vec_vcmpgtub()
1736 return (vector bool char)__builtin_altivec_vcmpgtub(__a, __b); in vec_vcmpgtub()
1741 static __inline__ vector bool short __attribute__((__always_inline__))
1742 vec_vcmpgtsh(vector short __a, vector short __b) { in vec_vcmpgtsh()
1743 return (vector bool short)__builtin_altivec_vcmpgtsh(__a, __b); in vec_vcmpgtsh()
1748 static __inline__ vector bool short __attribute__((__always_inline__))
1749 vec_vcmpgtuh(vector unsigned short __a, vector unsigned short __b) { in vec_vcmpgtuh()
1750 return (vector bool short)__builtin_altivec_vcmpgtuh(__a, __b); in vec_vcmpgtuh()
1755 static __inline__ vector bool int __attribute__((__always_inline__))
1756 vec_vcmpgtsw(vector int __a, vector int __b) { in vec_vcmpgtsw()
1757 return (vector bool int)__builtin_altivec_vcmpgtsw(__a, __b); in vec_vcmpgtsw()
1762 static __inline__ vector bool int __attribute__((__always_inline__))
1763 vec_vcmpgtuw(vector unsigned int __a, vector unsigned int __b) { in vec_vcmpgtuw()
1764 return (vector bool int)__builtin_altivec_vcmpgtuw(__a, __b); in vec_vcmpgtuw()
1769 static __inline__ vector bool int __attribute__((__always_inline__))
1770 vec_vcmpgtfp(vector float __a, vector float __b) { in vec_vcmpgtfp()
1771 return (vector bool int)__builtin_altivec_vcmpgtfp(__a, __b); in vec_vcmpgtfp()
1776 static __inline__ vector bool char __ATTRS_o_ai
1777 vec_cmple(vector signed char __a, vector signed char __b) { in vec_cmple()
1781 static __inline__ vector bool char __ATTRS_o_ai
1782 vec_cmple(vector unsigned char __a, vector unsigned char __b) { in vec_cmple()
1786 static __inline__ vector bool short __ATTRS_o_ai
1787 vec_cmple(vector signed short __a, vector signed short __b) { in vec_cmple()
1791 static __inline__ vector bool short __ATTRS_o_ai
1792 vec_cmple(vector unsigned short __a, vector unsigned short __b) { in vec_cmple()
1796 static __inline__ vector bool int __ATTRS_o_ai
1797 vec_cmple(vector signed int __a, vector signed int __b) { in vec_cmple()
1801 static __inline__ vector bool int __ATTRS_o_ai
1802 vec_cmple(vector unsigned int __a, vector unsigned int __b) { in vec_cmple()
1806 static __inline__ vector bool int __ATTRS_o_ai vec_cmple(vector float __a, in vec_cmple()
1807 vector float __b) { in vec_cmple()
1812 static __inline__ vector bool long long __ATTRS_o_ai
1813 vec_cmple(vector double __a, vector double __b) { in vec_cmple()
1819 static __inline__ vector bool long long __ATTRS_o_ai
1820 vec_cmple(vector signed long long __a, vector signed long long __b) { in vec_cmple()
1824 static __inline__ vector bool long long __ATTRS_o_ai
1825 vec_cmple(vector unsigned long long __a, vector unsigned long long __b) { in vec_cmple()
1832 static __inline__ vector bool char __ATTRS_o_ai
1833 vec_cmplt(vector signed char __a, vector signed char __b) { in vec_cmplt()
1837 static __inline__ vector bool char __ATTRS_o_ai
1838 vec_cmplt(vector unsigned char __a, vector unsigned char __b) { in vec_cmplt()
1842 static __inline__ vector bool short __ATTRS_o_ai vec_cmplt(vector short __a, in vec_cmplt()
1843 vector short __b) { in vec_cmplt()
1847 static __inline__ vector bool short __ATTRS_o_ai
1848 vec_cmplt(vector unsigned short __a, vector unsigned short __b) { in vec_cmplt()
1852 static __inline__ vector bool int __ATTRS_o_ai vec_cmplt(vector int __a, in vec_cmplt()
1853 vector int __b) { in vec_cmplt()
1857 static __inline__ vector bool int __ATTRS_o_ai
1858 vec_cmplt(vector unsigned int __a, vector unsigned int __b) { in vec_cmplt()
1862 static __inline__ vector bool int __ATTRS_o_ai vec_cmplt(vector float __a, in vec_cmplt()
1863 vector float __b) { in vec_cmplt()
1868 static __inline__ vector bool long long __ATTRS_o_ai
1869 vec_cmplt(vector double __a, vector double __b) { in vec_cmplt()
1875 static __inline__ vector bool long long __ATTRS_o_ai
1876 vec_cmplt(vector signed long long __a, vector signed long long __b) { in vec_cmplt()
1880 static __inline__ vector bool long long __ATTRS_o_ai
1881 vec_cmplt(vector unsigned long long __a, vector unsigned long long __b) { in vec_cmplt()
1887 static __inline__ vector signed char __ATTRS_o_ai
1888 vec_cntlz(vector signed char __a) { in vec_cntlz()
1891 static __inline__ vector unsigned char __ATTRS_o_ai
1892 vec_cntlz(vector unsigned char __a) { in vec_cntlz()
1895 static __inline__ vector signed short __ATTRS_o_ai
1896 vec_cntlz(vector signed short __a) { in vec_cntlz()
1899 static __inline__ vector unsigned short __ATTRS_o_ai
1900 vec_cntlz(vector unsigned short __a) { in vec_cntlz()
1903 static __inline__ vector signed int __ATTRS_o_ai
1904 vec_cntlz(vector signed int __a) { in vec_cntlz()
1907 static __inline__ vector unsigned int __ATTRS_o_ai
1908 vec_cntlz(vector unsigned int __a) { in vec_cntlz()
1911 static __inline__ vector signed long long __ATTRS_o_ai
1912 vec_cntlz(vector signed long long __a) { in vec_cntlz()
1915 static __inline__ vector unsigned long long __ATTRS_o_ai
1916 vec_cntlz(vector unsigned long long __a) { in vec_cntlz()
1924 static __inline__ vector float __ATTRS_o_ai vec_cpsgn(vector float __a, in vec_cpsgn()
1925 vector float __b) { in vec_cpsgn()
1929 static __inline__ vector double __ATTRS_o_ai vec_cpsgn(vector double __a, in vec_cpsgn()
1930 vector double __b) { in vec_cpsgn()
1937 static __inline__ vector float __ATTRS_o_ai vec_ctf(vector int __a, int __b) { in vec_ctf()
1941 static __inline__ vector float __ATTRS_o_ai vec_ctf(vector unsigned int __a, in vec_ctf()
1943 return __builtin_altivec_vcfux((vector int)__a, __b); in vec_ctf()
1947 static __inline__ vector double __ATTRS_o_ai
1948 vec_ctf(vector unsigned long long __a, int __b) { in vec_ctf()
1949 vector double __ret = __builtin_convertvector(__a, vector double); in vec_ctf()
1950 __ret *= (vector double)(vector unsigned long long)((0x3ffULL - __b) << 52); in vec_ctf()
1954 static __inline__ vector double __ATTRS_o_ai
1955 vec_ctf(vector signed long long __a, int __b) { in vec_ctf()
1956 vector double __ret = __builtin_convertvector(__a, vector double); in vec_ctf()
1957 __ret *= (vector double)(vector unsigned long long)((0x3ffULL - __b) << 52); in vec_ctf()
1964 static __inline__ vector float __attribute__((__always_inline__))
1965 vec_vcfsx(vector int __a, int __b) { in vec_vcfsx()
1971 static __inline__ vector float __attribute__((__always_inline__))
1972 vec_vcfux(vector unsigned int __a, int __b) { in vec_vcfux()
1973 return __builtin_altivec_vcfux((vector int)__a, __b); in vec_vcfux()
1978 static __inline__ vector int __ATTRS_o_ai vec_cts(vector float __a, int __b) { in vec_cts()
1983 static __inline__ vector signed long long __ATTRS_o_ai
1984 vec_cts(vector double __a, int __b) { in vec_cts()
1985 __a *= (vector double)(vector unsigned long long)((0x3ffULL + __b) << 52); in vec_cts()
1986 return __builtin_convertvector(__a, vector signed long long); in vec_cts()
1992 static __inline__ vector int __attribute__((__always_inline__))
1993 vec_vctsxs(vector float __a, int __b) { in vec_vctsxs()
1999 static __inline__ vector unsigned int __ATTRS_o_ai vec_ctu(vector float __a, in vec_ctu()
2005 static __inline__ vector unsigned long long __ATTRS_o_ai
2006 vec_ctu(vector double __a, int __b) { in vec_ctu()
2007 __a *= (vector double)(vector unsigned long long)((0x3ffULL + __b) << 52); in vec_ctu()
2008 return __builtin_convertvector(__a, vector unsigned long long); in vec_ctu()
2014 static __inline__ vector unsigned int __attribute__((__always_inline__))
2015 vec_vctuxs(vector float __a, int __b) { in vec_vctuxs()
2022 static __inline__ vector double __ATTRS_o_ai
2023 vec_double(vector signed long long __a) { in vec_double()
2024 vector double __ret = {__a[0], __a[1]}; in vec_double()
2028 static __inline__ vector double __ATTRS_o_ai
2029 vec_double(vector unsigned long long __a) { in vec_double()
2030 vector double __ret = {__a[0], __a[1]}; in vec_double()
2040 static __inline__ vector signed char __ATTRS_o_ai
2041 vec_div(vector signed char __a, vector signed char __b) { in vec_div()
2045 static __inline__ vector unsigned char __ATTRS_o_ai
2046 vec_div(vector unsigned char __a, vector unsigned char __b) { in vec_div()
2050 static __inline__ vector signed short __ATTRS_o_ai
2051 vec_div(vector signed short __a, vector signed short __b) { in vec_div()
2055 static __inline__ vector unsigned short __ATTRS_o_ai
2056 vec_div(vector unsigned short __a, vector unsigned short __b) { in vec_div()
2060 static __inline__ vector signed int __ATTRS_o_ai
2061 vec_div(vector signed int __a, vector signed int __b) { in vec_div()
2065 static __inline__ vector unsigned int __ATTRS_o_ai
2066 vec_div(vector unsigned int __a, vector unsigned int __b) { in vec_div()
2071 static __inline__ vector signed long long __ATTRS_o_ai
2072 vec_div(vector signed long long __a, vector signed long long __b) { in vec_div()
2076 static __inline__ vector unsigned long long __ATTRS_o_ai
2077 vec_div(vector unsigned long long __a, vector unsigned long long __b) { in vec_div()
2081 static __inline__ vector float __ATTRS_o_ai vec_div(vector float __a, in vec_div()
2082 vector float __b) { in vec_div()
2086 static __inline__ vector double __ATTRS_o_ai vec_div(vector double __a, in vec_div()
2087 vector double __b) { in vec_div()
2127 static __inline__ vector signed char __ATTRS_o_ai
2128 vec_eqv(vector signed char __a, vector signed char __b) { in vec_eqv()
2129 return (vector signed char)__builtin_vsx_xxleqv((vector unsigned int)__a, in vec_eqv()
2130 (vector unsigned int)__b); in vec_eqv()
2133 static __inline__ vector unsigned char __ATTRS_o_ai
2134 vec_eqv(vector unsigned char __a, vector unsigned char __b) { in vec_eqv()
2135 return (vector unsigned char)__builtin_vsx_xxleqv((vector unsigned int)__a, in vec_eqv()
2136 (vector unsigned int)__b); in vec_eqv()
2139 static __inline__ vector bool char __ATTRS_o_ai vec_eqv(vector bool char __a, in vec_eqv()
2140 vector bool char __b) { in vec_eqv()
2141 return (vector bool char)__builtin_vsx_xxleqv((vector unsigned int)__a, in vec_eqv()
2142 (vector unsigned int)__b); in vec_eqv()
2145 static __inline__ vector signed short __ATTRS_o_ai
2146 vec_eqv(vector signed short __a, vector signed short __b) { in vec_eqv()
2147 return (vector signed short)__builtin_vsx_xxleqv((vector unsigned int)__a, in vec_eqv()
2148 (vector unsigned int)__b); in vec_eqv()
2151 static __inline__ vector unsigned short __ATTRS_o_ai
2152 vec_eqv(vector unsigned short __a, vector unsigned short __b) { in vec_eqv()
2153 return (vector unsigned short)__builtin_vsx_xxleqv((vector unsigned int)__a, in vec_eqv()
2154 (vector unsigned int)__b); in vec_eqv()
2157 static __inline__ vector bool short __ATTRS_o_ai
2158 vec_eqv(vector bool short __a, vector bool short __b) { in vec_eqv()
2159 return (vector bool short)__builtin_vsx_xxleqv((vector unsigned int)__a, in vec_eqv()
2160 (vector unsigned int)__b); in vec_eqv()
2163 static __inline__ vector signed int __ATTRS_o_ai
2164 vec_eqv(vector signed int __a, vector signed int __b) { in vec_eqv()
2165 return (vector signed int)__builtin_vsx_xxleqv((vector unsigned int)__a, in vec_eqv()
2166 (vector unsigned int)__b); in vec_eqv()
2169 static __inline__ vector unsigned int __ATTRS_o_ai
2170 vec_eqv(vector unsigned int __a, vector unsigned int __b) { in vec_eqv()
2174 static __inline__ vector bool int __ATTRS_o_ai vec_eqv(vector bool int __a, in vec_eqv()
2175 vector bool int __b) { in vec_eqv()
2176 return (vector bool int)__builtin_vsx_xxleqv((vector unsigned int)__a, in vec_eqv()
2177 (vector unsigned int)__b); in vec_eqv()
2180 static __inline__ vector signed long long __ATTRS_o_ai
2181 vec_eqv(vector signed long long __a, vector signed long long __b) { in vec_eqv()
2182 return (vector signed long long)__builtin_vsx_xxleqv( in vec_eqv()
2183 (vector unsigned int)__a, (vector unsigned int)__b); in vec_eqv()
2186 static __inline__ vector unsigned long long __ATTRS_o_ai
2187 vec_eqv(vector unsigned long long __a, vector unsigned long long __b) { in vec_eqv()
2188 return (vector unsigned long long)__builtin_vsx_xxleqv( in vec_eqv()
2189 (vector unsigned int)__a, (vector unsigned int)__b); in vec_eqv()
2192 static __inline__ vector bool long long __ATTRS_o_ai
2193 vec_eqv(vector bool long long __a, vector bool long long __b) { in vec_eqv()
2194 return (vector bool long long)__builtin_vsx_xxleqv((vector unsigned int)__a, in vec_eqv()
2195 (vector unsigned int)__b); in vec_eqv()
2198 static __inline__ vector float __ATTRS_o_ai vec_eqv(vector float __a, in vec_eqv()
2199 vector float __b) { in vec_eqv()
2200 return (vector float)__builtin_vsx_xxleqv((vector unsigned int)__a, in vec_eqv()
2201 (vector unsigned int)__b); in vec_eqv()
2204 static __inline__ vector double __ATTRS_o_ai vec_eqv(vector double __a, in vec_eqv()
2205 vector double __b) { in vec_eqv()
2206 return (vector double)__builtin_vsx_xxleqv((vector unsigned int)__a, in vec_eqv()
2207 (vector unsigned int)__b); in vec_eqv()
2213 static __inline__ vector float __attribute__((__always_inline__))
2214 vec_expte(vector float __a) { in vec_expte()
2220 static __inline__ vector float __attribute__((__always_inline__))
2221 vec_vexptefp(vector float __a) { in vec_vexptefp()
2227 static __inline__ vector float __ATTRS_o_ai vec_floor(vector float __a) { in vec_floor()
2236 static __inline__ vector double __ATTRS_o_ai vec_floor(vector double __a) { in vec_floor()
2243 static __inline__ vector float __attribute__((__always_inline__))
2244 vec_vrfim(vector float __a) { in vec_vrfim()
2250 static __inline__ vector signed char __ATTRS_o_ai
2251 vec_ld(int __a, const vector signed char *__b) { in vec_ld()
2252 return (vector signed char)__builtin_altivec_lvx(__a, __b); in vec_ld()
2255 static __inline__ vector signed char __ATTRS_o_ai
2257 return (vector signed char)__builtin_altivec_lvx(__a, __b); in vec_ld()
2260 static __inline__ vector unsigned char __ATTRS_o_ai
2261 vec_ld(int __a, const vector unsigned char *__b) { in vec_ld()
2262 return (vector unsigned char)__builtin_altivec_lvx(__a, __b); in vec_ld()
2265 static __inline__ vector unsigned char __ATTRS_o_ai
2267 return (vector unsigned char)__builtin_altivec_lvx(__a, __b); in vec_ld()
2270 static __inline__ vector bool char __ATTRS_o_ai
2271 vec_ld(int __a, const vector bool char *__b) { in vec_ld()
2272 return (vector bool char)__builtin_altivec_lvx(__a, __b); in vec_ld()
2275 static __inline__ vector short __ATTRS_o_ai vec_ld(int __a, in vec_ld()
2276 const vector short *__b) { in vec_ld()
2277 return (vector short)__builtin_altivec_lvx(__a, __b); in vec_ld()
2280 static __inline__ vector short __ATTRS_o_ai vec_ld(int __a, const short *__b) { in vec_ld()
2281 return (vector short)__builtin_altivec_lvx(__a, __b); in vec_ld()
2284 static __inline__ vector unsigned short __ATTRS_o_ai
2285 vec_ld(int __a, const vector unsigned short *__b) { in vec_ld()
2286 return (vector unsigned short)__builtin_altivec_lvx(__a, __b); in vec_ld()
2289 static __inline__ vector unsigned short __ATTRS_o_ai
2291 return (vector unsigned short)__builtin_altivec_lvx(__a, __b); in vec_ld()
2294 static __inline__ vector bool short __ATTRS_o_ai
2295 vec_ld(int __a, const vector bool short *__b) { in vec_ld()
2296 return (vector bool short)__builtin_altivec_lvx(__a, __b); in vec_ld()
2299 static __inline__ vector pixel __ATTRS_o_ai vec_ld(int __a, in vec_ld()
2300 const vector pixel *__b) { in vec_ld()
2301 return (vector pixel)__builtin_altivec_lvx(__a, __b); in vec_ld()
2304 static __inline__ vector int __ATTRS_o_ai vec_ld(int __a, in vec_ld()
2305 const vector int *__b) { in vec_ld()
2306 return (vector int)__builtin_altivec_lvx(__a, __b); in vec_ld()
2309 static __inline__ vector int __ATTRS_o_ai vec_ld(int __a, const int *__b) { in vec_ld()
2310 return (vector int)__builtin_altivec_lvx(__a, __b); in vec_ld()
2313 static __inline__ vector unsigned int __ATTRS_o_ai
2314 vec_ld(int __a, const vector unsigned int *__b) { in vec_ld()
2315 return (vector unsigned int)__builtin_altivec_lvx(__a, __b); in vec_ld()
2318 static __inline__ vector unsigned int __ATTRS_o_ai
2320 return (vector unsigned int)__builtin_altivec_lvx(__a, __b); in vec_ld()
2323 static __inline__ vector bool int __ATTRS_o_ai
2324 vec_ld(int __a, const vector bool int *__b) { in vec_ld()
2325 return (vector bool int)__builtin_altivec_lvx(__a, __b); in vec_ld()
2328 static __inline__ vector float __ATTRS_o_ai vec_ld(int __a, in vec_ld()
2329 const vector float *__b) { in vec_ld()
2330 return (vector float)__builtin_altivec_lvx(__a, __b); in vec_ld()
2333 static __inline__ vector float __ATTRS_o_ai vec_ld(int __a, const float *__b) { in vec_ld()
2334 return (vector float)__builtin_altivec_lvx(__a, __b); in vec_ld()
2339 static __inline__ vector signed char __ATTRS_o_ai
2340 vec_lvx(int __a, const vector signed char *__b) { in vec_lvx()
2341 return (vector signed char)__builtin_altivec_lvx(__a, __b); in vec_lvx()
2344 static __inline__ vector signed char __ATTRS_o_ai
2346 return (vector signed char)__builtin_altivec_lvx(__a, __b); in vec_lvx()
2349 static __inline__ vector unsigned char __ATTRS_o_ai
2350 vec_lvx(int __a, const vector unsigned char *__b) { in vec_lvx()
2351 return (vector unsigned char)__builtin_altivec_lvx(__a, __b); in vec_lvx()
2354 static __inline__ vector unsigned char __ATTRS_o_ai
2356 return (vector unsigned char)__builtin_altivec_lvx(__a, __b); in vec_lvx()
2359 static __inline__ vector bool char __ATTRS_o_ai
2360 vec_lvx(int __a, const vector bool char *__b) { in vec_lvx()
2361 return (vector bool char)__builtin_altivec_lvx(__a, __b); in vec_lvx()
2364 static __inline__ vector short __ATTRS_o_ai vec_lvx(int __a, in vec_lvx()
2365 const vector short *__b) { in vec_lvx()
2366 return (vector short)__builtin_altivec_lvx(__a, __b); in vec_lvx()
2369 static __inline__ vector short __ATTRS_o_ai vec_lvx(int __a, const short *__b) { in vec_lvx()
2370 return (vector short)__builtin_altivec_lvx(__a, __b); in vec_lvx()
2373 static __inline__ vector unsigned short __ATTRS_o_ai
2374 vec_lvx(int __a, const vector unsigned short *__b) { in vec_lvx()
2375 return (vector unsigned short)__builtin_altivec_lvx(__a, __b); in vec_lvx()
2378 static __inline__ vector unsigned short __ATTRS_o_ai
2380 return (vector unsigned short)__builtin_altivec_lvx(__a, __b); in vec_lvx()
2383 static __inline__ vector bool short __ATTRS_o_ai
2384 vec_lvx(int __a, const vector bool short *__b) { in vec_lvx()
2385 return (vector bool short)__builtin_altivec_lvx(__a, __b); in vec_lvx()
2388 static __inline__ vector pixel __ATTRS_o_ai vec_lvx(int __a, in vec_lvx()
2389 const vector pixel *__b) { in vec_lvx()
2390 return (vector pixel)__builtin_altivec_lvx(__a, __b); in vec_lvx()
2393 static __inline__ vector int __ATTRS_o_ai vec_lvx(int __a, in vec_lvx()
2394 const vector int *__b) { in vec_lvx()
2395 return (vector int)__builtin_altivec_lvx(__a, __b); in vec_lvx()
2398 static __inline__ vector int __ATTRS_o_ai vec_lvx(int __a, const int *__b) { in vec_lvx()
2399 return (vector int)__builtin_altivec_lvx(__a, __b); in vec_lvx()
2402 static __inline__ vector unsigned int __ATTRS_o_ai
2403 vec_lvx(int __a, const vector unsigned int *__b) { in vec_lvx()
2404 return (vector unsigned int)__builtin_altivec_lvx(__a, __b); in vec_lvx()
2407 static __inline__ vector unsigned int __ATTRS_o_ai
2409 return (vector unsigned int)__builtin_altivec_lvx(__a, __b); in vec_lvx()
2412 static __inline__ vector bool int __ATTRS_o_ai
2413 vec_lvx(int __a, const vector bool int *__b) { in vec_lvx()
2414 return (vector bool int)__builtin_altivec_lvx(__a, __b); in vec_lvx()
2417 static __inline__ vector float __ATTRS_o_ai vec_lvx(int __a, in vec_lvx()
2418 const vector float *__b) { in vec_lvx()
2419 return (vector float)__builtin_altivec_lvx(__a, __b); in vec_lvx()
2422 static __inline__ vector float __ATTRS_o_ai vec_lvx(int __a, const float *__b) { in vec_lvx()
2423 return (vector float)__builtin_altivec_lvx(__a, __b); in vec_lvx()
2428 static __inline__ vector signed char __ATTRS_o_ai
2430 return (vector signed char)__builtin_altivec_lvebx(__a, __b); in vec_lde()
2433 static __inline__ vector unsigned char __ATTRS_o_ai
2435 return (vector unsigned char)__builtin_altivec_lvebx(__a, __b); in vec_lde()
2438 static __inline__ vector short __ATTRS_o_ai vec_lde(int __a, const short *__b) { in vec_lde()
2439 return (vector short)__builtin_altivec_lvehx(__a, __b); in vec_lde()
2442 static __inline__ vector unsigned short __ATTRS_o_ai
2444 return (vector unsigned short)__builtin_altivec_lvehx(__a, __b); in vec_lde()
2447 static __inline__ vector int __ATTRS_o_ai vec_lde(int __a, const int *__b) { in vec_lde()
2448 return (vector int)__builtin_altivec_lvewx(__a, __b); in vec_lde()
2451 static __inline__ vector unsigned int __ATTRS_o_ai
2453 return (vector unsigned int)__builtin_altivec_lvewx(__a, __b); in vec_lde()
2456 static __inline__ vector float __ATTRS_o_ai vec_lde(int __a, const float *__b) { in vec_lde()
2457 return (vector float)__builtin_altivec_lvewx(__a, __b); in vec_lde()
2462 static __inline__ vector signed char __ATTRS_o_ai
2464 return (vector signed char)__builtin_altivec_lvebx(__a, __b); in vec_lvebx()
2467 static __inline__ vector unsigned char __ATTRS_o_ai
2469 return (vector unsigned char)__builtin_altivec_lvebx(__a, __b); in vec_lvebx()
2474 static __inline__ vector short __ATTRS_o_ai vec_lvehx(int __a, in vec_lvehx()
2476 return (vector short)__builtin_altivec_lvehx(__a, __b); in vec_lvehx()
2479 static __inline__ vector unsigned short __ATTRS_o_ai
2481 return (vector unsigned short)__builtin_altivec_lvehx(__a, __b); in vec_lvehx()
2486 static __inline__ vector int __ATTRS_o_ai vec_lvewx(int __a, const int *__b) { in vec_lvewx()
2487 return (vector int)__builtin_altivec_lvewx(__a, __b); in vec_lvewx()
2490 static __inline__ vector unsigned int __ATTRS_o_ai
2492 return (vector unsigned int)__builtin_altivec_lvewx(__a, __b); in vec_lvewx()
2495 static __inline__ vector float __ATTRS_o_ai vec_lvewx(int __a, in vec_lvewx()
2497 return (vector float)__builtin_altivec_lvewx(__a, __b); in vec_lvewx()
2502 static __inline__ vector signed char __ATTRS_o_ai
2503 vec_ldl(int __a, const vector signed char *__b) { in vec_ldl()
2504 return (vector signed char)__builtin_altivec_lvxl(__a, __b); in vec_ldl()
2507 static __inline__ vector signed char __ATTRS_o_ai
2509 return (vector signed char)__builtin_altivec_lvxl(__a, __b); in vec_ldl()
2512 static __inline__ vector unsigned char __ATTRS_o_ai
2513 vec_ldl(int __a, const vector unsigned char *__b) { in vec_ldl()
2514 return (vector unsigned char)__builtin_altivec_lvxl(__a, __b); in vec_ldl()
2517 static __inline__ vector unsigned char __ATTRS_o_ai
2519 return (vector unsigned char)__builtin_altivec_lvxl(__a, __b); in vec_ldl()
2522 static __inline__ vector bool char __ATTRS_o_ai
2523 vec_ldl(int __a, const vector bool char *__b) { in vec_ldl()
2524 return (vector bool char)__builtin_altivec_lvxl(__a, __b); in vec_ldl()
2527 static __inline__ vector short __ATTRS_o_ai vec_ldl(int __a, in vec_ldl()
2528 const vector short *__b) { in vec_ldl()
2529 return (vector short)__builtin_altivec_lvxl(__a, __b); in vec_ldl()
2532 static __inline__ vector short __ATTRS_o_ai vec_ldl(int __a, const short *__b) { in vec_ldl()
2533 return (vector short)__builtin_altivec_lvxl(__a, __b); in vec_ldl()
2536 static __inline__ vector unsigned short __ATTRS_o_ai
2537 vec_ldl(int __a, const vector unsigned short *__b) { in vec_ldl()
2538 return (vector unsigned short)__builtin_altivec_lvxl(__a, __b); in vec_ldl()
2541 static __inline__ vector unsigned short __ATTRS_o_ai
2543 return (vector unsigned short)__builtin_altivec_lvxl(__a, __b); in vec_ldl()
2546 static __inline__ vector bool short __ATTRS_o_ai
2547 vec_ldl(int __a, const vector bool short *__b) { in vec_ldl()
2548 return (vector bool short)__builtin_altivec_lvxl(__a, __b); in vec_ldl()
2551 static __inline__ vector pixel __ATTRS_o_ai vec_ldl(int __a, in vec_ldl()
2552 const vector pixel *__b) { in vec_ldl()
2553 return (vector pixel short)__builtin_altivec_lvxl(__a, __b); in vec_ldl()
2556 static __inline__ vector int __ATTRS_o_ai vec_ldl(int __a, in vec_ldl()
2557 const vector int *__b) { in vec_ldl()
2558 return (vector int)__builtin_altivec_lvxl(__a, __b); in vec_ldl()
2561 static __inline__ vector int __ATTRS_o_ai vec_ldl(int __a, const int *__b) { in vec_ldl()
2562 return (vector int)__builtin_altivec_lvxl(__a, __b); in vec_ldl()
2565 static __inline__ vector unsigned int __ATTRS_o_ai
2566 vec_ldl(int __a, const vector unsigned int *__b) { in vec_ldl()
2567 return (vector unsigned int)__builtin_altivec_lvxl(__a, __b); in vec_ldl()
2570 static __inline__ vector unsigned int __ATTRS_o_ai
2572 return (vector unsigned int)__builtin_altivec_lvxl(__a, __b); in vec_ldl()
2575 static __inline__ vector bool int __ATTRS_o_ai
2576 vec_ldl(int __a, const vector bool int *__b) { in vec_ldl()
2577 return (vector bool int)__builtin_altivec_lvxl(__a, __b); in vec_ldl()
2580 static __inline__ vector float __ATTRS_o_ai vec_ldl(int __a, in vec_ldl()
2581 const vector float *__b) { in vec_ldl()
2582 return (vector float)__builtin_altivec_lvxl(__a, __b); in vec_ldl()
2585 static __inline__ vector float __ATTRS_o_ai vec_ldl(int __a, const float *__b) { in vec_ldl()
2586 return (vector float)__builtin_altivec_lvxl(__a, __b); in vec_ldl()
2591 static __inline__ vector signed char __ATTRS_o_ai
2592 vec_lvxl(int __a, const vector signed char *__b) { in vec_lvxl()
2593 return (vector signed char)__builtin_altivec_lvxl(__a, __b); in vec_lvxl()
2596 static __inline__ vector signed char __ATTRS_o_ai
2598 return (vector signed char)__builtin_altivec_lvxl(__a, __b); in vec_lvxl()
2601 static __inline__ vector unsigned char __ATTRS_o_ai
2602 vec_lvxl(int __a, const vector unsigned char *__b) { in vec_lvxl()
2603 return (vector unsigned char)__builtin_altivec_lvxl(__a, __b); in vec_lvxl()
2606 static __inline__ vector unsigned char __ATTRS_o_ai
2608 return (vector unsigned char)__builtin_altivec_lvxl(__a, __b); in vec_lvxl()
2611 static __inline__ vector bool char __ATTRS_o_ai
2612 vec_lvxl(int __a, const vector bool char *__b) { in vec_lvxl()
2613 return (vector bool char)__builtin_altivec_lvxl(__a, __b); in vec_lvxl()
2616 static __inline__ vector short __ATTRS_o_ai vec_lvxl(int __a, in vec_lvxl()
2617 const vector short *__b) { in vec_lvxl()
2618 return (vector short)__builtin_altivec_lvxl(__a, __b); in vec_lvxl()
2621 static __inline__ vector short __ATTRS_o_ai vec_lvxl(int __a, in vec_lvxl()
2623 return (vector short)__builtin_altivec_lvxl(__a, __b); in vec_lvxl()
2626 static __inline__ vector unsigned short __ATTRS_o_ai
2627 vec_lvxl(int __a, const vector unsigned short *__b) { in vec_lvxl()
2628 return (vector unsigned short)__builtin_altivec_lvxl(__a, __b); in vec_lvxl()
2631 static __inline__ vector unsigned short __ATTRS_o_ai
2633 return (vector unsigned short)__builtin_altivec_lvxl(__a, __b); in vec_lvxl()
2636 static __inline__ vector bool short __ATTRS_o_ai
2637 vec_lvxl(int __a, const vector bool short *__b) { in vec_lvxl()
2638 return (vector bool short)__builtin_altivec_lvxl(__a, __b); in vec_lvxl()
2641 static __inline__ vector pixel __ATTRS_o_ai vec_lvxl(int __a, in vec_lvxl()
2642 const vector pixel *__b) { in vec_lvxl()
2643 return (vector pixel)__builtin_altivec_lvxl(__a, __b); in vec_lvxl()
2646 static __inline__ vector int __ATTRS_o_ai vec_lvxl(int __a, in vec_lvxl()
2647 const vector int *__b) { in vec_lvxl()
2648 return (vector int)__builtin_altivec_lvxl(__a, __b); in vec_lvxl()
2651 static __inline__ vector int __ATTRS_o_ai vec_lvxl(int __a, const int *__b) { in vec_lvxl()
2652 return (vector int)__builtin_altivec_lvxl(__a, __b); in vec_lvxl()
2655 static __inline__ vector unsigned int __ATTRS_o_ai
2656 vec_lvxl(int __a, const vector unsigned int *__b) { in vec_lvxl()
2657 return (vector unsigned int)__builtin_altivec_lvxl(__a, __b); in vec_lvxl()
2660 static __inline__ vector unsigned int __ATTRS_o_ai
2662 return (vector unsigned int)__builtin_altivec_lvxl(__a, __b); in vec_lvxl()
2665 static __inline__ vector bool int __ATTRS_o_ai
2666 vec_lvxl(int __a, const vector bool int *__b) { in vec_lvxl()
2667 return (vector bool int)__builtin_altivec_lvxl(__a, __b); in vec_lvxl()
2670 static __inline__ vector float __ATTRS_o_ai vec_lvxl(int __a, in vec_lvxl()
2671 const vector float *__b) { in vec_lvxl()
2672 return (vector float)__builtin_altivec_lvxl(__a, __b); in vec_lvxl()
2675 static __inline__ vector float __ATTRS_o_ai vec_lvxl(int __a, in vec_lvxl()
2677 return (vector float)__builtin_altivec_lvxl(__a, __b); in vec_lvxl()
2682 static __inline__ vector float __attribute__((__always_inline__))
2683 vec_loge(vector float __a) { in vec_loge()
2689 static __inline__ vector float __attribute__((__always_inline__))
2690 vec_vlogefp(vector float __a) { in vec_vlogefp()
2697 static __inline__ vector unsigned char __ATTRS_o_ai
2700 vector unsigned char mask = in vec_lvsl()
2701 (vector unsigned char)__builtin_altivec_lvsl(__a, __b); in vec_lvsl()
2702 vector unsigned char reverse = {15, 14, 13, 12, 11, 10, 9, 8, in vec_lvsl()
2707 static __inline__ vector unsigned char __ATTRS_o_ai
2709 return (vector unsigned char)__builtin_altivec_lvsl(__a, __b); in vec_lvsl()
2714 static __inline__ vector unsigned char __ATTRS_o_ai
2717 vector unsigned char mask = in vec_lvsl()
2718 (vector unsigned char)__builtin_altivec_lvsl(__a, __b); in vec_lvsl()
2719 vector unsigned char reverse = {15, 14, 13, 12, 11, 10, 9, 8, in vec_lvsl()
2724 static __inline__ vector unsigned char __ATTRS_o_ai
2726 return (vector unsigned char)__builtin_altivec_lvsl(__a, __b); in vec_lvsl()
2731 static __inline__ vector unsigned char __ATTRS_o_ai
2734 vector unsigned char mask = in vec_lvsl()
2735 (vector unsigned char)__builtin_altivec_lvsl(__a, __b); in vec_lvsl()
2736 vector unsigned char reverse = {15, 14, 13, 12, 11, 10, 9, 8, in vec_lvsl()
2741 static __inline__ vector unsigned char __ATTRS_o_ai vec_lvsl(int __a, in vec_lvsl()
2743 return (vector unsigned char)__builtin_altivec_lvsl(__a, __b); in vec_lvsl()
2748 static __inline__ vector unsigned char __ATTRS_o_ai
2751 vector unsigned char mask = in vec_lvsl()
2752 (vector unsigned char)__builtin_altivec_lvsl(__a, __b); in vec_lvsl()
2753 vector unsigned char reverse = {15, 14, 13, 12, 11, 10, 9, 8, in vec_lvsl()
2758 static __inline__ vector unsigned char __ATTRS_o_ai
2760 return (vector unsigned char)__builtin_altivec_lvsl(__a, __b); in vec_lvsl()
2765 static __inline__ vector unsigned char __ATTRS_o_ai
2768 vector unsigned char mask = in vec_lvsl()
2769 (vector unsigned char)__builtin_altivec_lvsl(__a, __b); in vec_lvsl()
2770 vector unsigned char reverse = {15, 14, 13, 12, 11, 10, 9, 8, in vec_lvsl()
2775 static __inline__ vector unsigned char __ATTRS_o_ai vec_lvsl(int __a, in vec_lvsl()
2777 return (vector unsigned char)__builtin_altivec_lvsl(__a, __b); in vec_lvsl()
2782 static __inline__ vector unsigned char __ATTRS_o_ai
2785 vector unsigned char mask = in vec_lvsl()
2786 (vector unsigned char)__builtin_altivec_lvsl(__a, __b); in vec_lvsl()
2787 vector unsigned char reverse = {15, 14, 13, 12, 11, 10, 9, 8, in vec_lvsl()
2792 static __inline__ vector unsigned char __ATTRS_o_ai
2794 return (vector unsigned char)__builtin_altivec_lvsl(__a, __b); in vec_lvsl()
2799 static __inline__ vector unsigned char __ATTRS_o_ai
2802 vector unsigned char mask = in vec_lvsl()
2803 (vector unsigned char)__builtin_altivec_lvsl(__a, __b); in vec_lvsl()
2804 vector unsigned char reverse = {15, 14, 13, 12, 11, 10, 9, 8, in vec_lvsl()
2809 static __inline__ vector unsigned char __ATTRS_o_ai vec_lvsl(int __a, in vec_lvsl()
2811 return (vector unsigned char)__builtin_altivec_lvsl(__a, __b); in vec_lvsl()
2818 static __inline__ vector unsigned char __ATTRS_o_ai
2821 vector unsigned char mask = in vec_lvsr()
2822 (vector unsigned char)__builtin_altivec_lvsr(__a, __b); in vec_lvsr()
2823 vector unsigned char reverse = {15, 14, 13, 12, 11, 10, 9, 8, in vec_lvsr()
2828 static __inline__ vector unsigned char __ATTRS_o_ai
2830 return (vector unsigned char)__builtin_altivec_lvsr(__a, __b); in vec_lvsr()
2835 static __inline__ vector unsigned char __ATTRS_o_ai
2838 vector unsigned char mask = in vec_lvsr()
2839 (vector unsigned char)__builtin_altivec_lvsr(__a, __b); in vec_lvsr()
2840 vector unsigned char reverse = {15, 14, 13, 12, 11, 10, 9, 8, in vec_lvsr()
2845 static __inline__ vector unsigned char __ATTRS_o_ai
2847 return (vector unsigned char)__builtin_altivec_lvsr(__a, __b); in vec_lvsr()
2852 static __inline__ vector unsigned char __ATTRS_o_ai
2855 vector unsigned char mask = in vec_lvsr()
2856 (vector unsigned char)__builtin_altivec_lvsr(__a, __b); in vec_lvsr()
2857 vector unsigned char reverse = {15, 14, 13, 12, 11, 10, 9, 8, in vec_lvsr()
2862 static __inline__ vector unsigned char __ATTRS_o_ai vec_lvsr(int __a, in vec_lvsr()
2864 return (vector unsigned char)__builtin_altivec_lvsr(__a, __b); in vec_lvsr()
2869 static __inline__ vector unsigned char __ATTRS_o_ai
2872 vector unsigned char mask = in vec_lvsr()
2873 (vector unsigned char)__builtin_altivec_lvsr(__a, __b); in vec_lvsr()
2874 vector unsigned char reverse = {15, 14, 13, 12, 11, 10, 9, 8, in vec_lvsr()
2879 static __inline__ vector unsigned char __ATTRS_o_ai
2881 return (vector unsigned char)__builtin_altivec_lvsr(__a, __b); in vec_lvsr()
2886 static __inline__ vector unsigned char __ATTRS_o_ai
2889 vector unsigned char mask = in vec_lvsr()
2890 (vector unsigned char)__builtin_altivec_lvsr(__a, __b); in vec_lvsr()
2891 vector unsigned char reverse = {15, 14, 13, 12, 11, 10, 9, 8, in vec_lvsr()
2896 static __inline__ vector unsigned char __ATTRS_o_ai vec_lvsr(int __a, in vec_lvsr()
2898 return (vector unsigned char)__builtin_altivec_lvsr(__a, __b); in vec_lvsr()
2903 static __inline__ vector unsigned char __ATTRS_o_ai
2906 vector unsigned char mask = in vec_lvsr()
2907 (vector unsigned char)__builtin_altivec_lvsr(__a, __b); in vec_lvsr()
2908 vector unsigned char reverse = {15, 14, 13, 12, 11, 10, 9, 8, in vec_lvsr()
2913 static __inline__ vector unsigned char __ATTRS_o_ai
2915 return (vector unsigned char)__builtin_altivec_lvsr(__a, __b); in vec_lvsr()
2920 static __inline__ vector unsigned char __ATTRS_o_ai
2923 vector unsigned char mask = in vec_lvsr()
2924 (vector unsigned char)__builtin_altivec_lvsr(__a, __b); in vec_lvsr()
2925 vector unsigned char reverse = {15, 14, 13, 12, 11, 10, 9, 8, in vec_lvsr()
2930 static __inline__ vector unsigned char __ATTRS_o_ai vec_lvsr(int __a, in vec_lvsr()
2932 return (vector unsigned char)__builtin_altivec_lvsr(__a, __b); in vec_lvsr()
2937 static __inline__ vector signed short __ATTRS_o_ai
2938 vec_mladd(vector signed short, vector signed short, vector signed short);
2939 static __inline__ vector signed short __ATTRS_o_ai
2940 vec_mladd(vector signed short, vector unsigned short, vector unsigned short);
2941 static __inline__ vector signed short __ATTRS_o_ai
2942 vec_mladd(vector unsigned short, vector signed short, vector signed short);
2943 static __inline__ vector unsigned short __ATTRS_o_ai
2944 vec_mladd(vector unsigned short, vector unsigned short, vector unsigned short);
2946 static __inline__ vector signed short __ATTRS_o_ai vec_madd( in vec_madd()
2947 vector signed short __a, vector signed short __b, vector signed short __c) { in vec_madd()
2951 static __inline__ vector signed short __ATTRS_o_ai
2952 vec_madd(vector signed short __a, vector unsigned short __b, in vec_madd()
2953 vector unsigned short __c) { in vec_madd()
2957 static __inline__ vector signed short __ATTRS_o_ai
2958 vec_madd(vector unsigned short __a, vector signed short __b, in vec_madd()
2959 vector signed short __c) { in vec_madd()
2963 static __inline__ vector unsigned short __ATTRS_o_ai
2964 vec_madd(vector unsigned short __a, vector unsigned short __b, in vec_madd()
2965 vector unsigned short __c) { in vec_madd()
2969 static __inline__ vector float __ATTRS_o_ai vec_madd(vector float __a, in vec_madd()
2970 vector float __b, in vec_madd()
2971 vector float __c) { in vec_madd()
2980 static __inline__ vector double __ATTRS_o_ai vec_madd(vector double __a, in vec_madd()
2981 vector double __b, in vec_madd()
2982 vector double __c) { in vec_madd()
2989 static __inline__ vector float __attribute__((__always_inline__))
2990 vec_vmaddfp(vector float __a, vector float __b, vector float __c) { in vec_vmaddfp()
2996 static __inline__ vector signed short __attribute__((__always_inline__))
2997 vec_madds(vector signed short __a, vector signed short __b, in vec_madds()
2998 vector signed short __c) { in vec_madds()
3003 static __inline__ vector signed short __attribute__((__always_inline__))
3004 vec_vmhaddshs(vector signed short __a, vector signed short __b, in vec_vmhaddshs()
3005 vector signed short __c) { in vec_vmhaddshs()
3012 static __inline__ vector float __ATTRS_o_ai vec_msub(vector float __a, in vec_msub()
3013 vector float __b, in vec_msub()
3014 vector float __c) { in vec_msub()
3018 static __inline__ vector double __ATTRS_o_ai vec_msub(vector double __a, in vec_msub()
3019 vector double __b, in vec_msub()
3020 vector double __c) { in vec_msub()
3027 static __inline__ vector signed char __ATTRS_o_ai
3028 vec_max(vector signed char __a, vector signed char __b) { in vec_max()
3032 static __inline__ vector signed char __ATTRS_o_ai
3033 vec_max(vector bool char __a, vector signed char __b) { in vec_max()
3034 return __builtin_altivec_vmaxsb((vector signed char)__a, __b); in vec_max()
3037 static __inline__ vector signed char __ATTRS_o_ai
3038 vec_max(vector signed char __a, vector bool char __b) { in vec_max()
3039 return __builtin_altivec_vmaxsb(__a, (vector signed char)__b); in vec_max()
3042 static __inline__ vector unsigned char __ATTRS_o_ai
3043 vec_max(vector unsigned char __a, vector unsigned char __b) { in vec_max()
3047 static __inline__ vector unsigned char __ATTRS_o_ai
3048 vec_max(vector bool char __a, vector unsigned char __b) { in vec_max()
3049 return __builtin_altivec_vmaxub((vector unsigned char)__a, __b); in vec_max()
3052 static __inline__ vector unsigned char __ATTRS_o_ai
3053 vec_max(vector unsigned char __a, vector bool char __b) { in vec_max()
3054 return __builtin_altivec_vmaxub(__a, (vector unsigned char)__b); in vec_max()
3057 static __inline__ vector short __ATTRS_o_ai vec_max(vector short __a, in vec_max()
3058 vector short __b) { in vec_max()
3062 static __inline__ vector short __ATTRS_o_ai vec_max(vector bool short __a, in vec_max()
3063 vector short __b) { in vec_max()
3064 return __builtin_altivec_vmaxsh((vector short)__a, __b); in vec_max()
3067 static __inline__ vector short __ATTRS_o_ai vec_max(vector short __a, in vec_max()
3068 vector bool short __b) { in vec_max()
3069 return __builtin_altivec_vmaxsh(__a, (vector short)__b); in vec_max()
3072 static __inline__ vector unsigned short __ATTRS_o_ai
3073 vec_max(vector unsigned short __a, vector unsigned short __b) { in vec_max()
3077 static __inline__ vector unsigned short __ATTRS_o_ai
3078 vec_max(vector bool short __a, vector unsigned short __b) { in vec_max()
3079 return __builtin_altivec_vmaxuh((vector unsigned short)__a, __b); in vec_max()
3082 static __inline__ vector unsigned short __ATTRS_o_ai
3083 vec_max(vector unsigned short __a, vector bool short __b) { in vec_max()
3084 return __builtin_altivec_vmaxuh(__a, (vector unsigned short)__b); in vec_max()
3087 static __inline__ vector int __ATTRS_o_ai vec_max(vector int __a, in vec_max()
3088 vector int __b) { in vec_max()
3092 static __inline__ vector int __ATTRS_o_ai vec_max(vector bool int __a, in vec_max()
3093 vector int __b) { in vec_max()
3094 return __builtin_altivec_vmaxsw((vector int)__a, __b); in vec_max()
3097 static __inline__ vector int __ATTRS_o_ai vec_max(vector int __a, in vec_max()
3098 vector bool int __b) { in vec_max()
3099 return __builtin_altivec_vmaxsw(__a, (vector int)__b); in vec_max()
3102 static __inline__ vector unsigned int __ATTRS_o_ai
3103 vec_max(vector unsigned int __a, vector unsigned int __b) { in vec_max()
3107 static __inline__ vector unsigned int __ATTRS_o_ai
3108 vec_max(vector bool int __a, vector unsigned int __b) { in vec_max()
3109 return __builtin_altivec_vmaxuw((vector unsigned int)__a, __b); in vec_max()
3112 static __inline__ vector unsigned int __ATTRS_o_ai
3113 vec_max(vector unsigned int __a, vector bool int __b) { in vec_max()
3114 return __builtin_altivec_vmaxuw(__a, (vector unsigned int)__b); in vec_max()
3118 static __inline__ vector signed long long __ATTRS_o_ai
3119 vec_max(vector signed long long __a, vector signed long long __b) { in vec_max()
3123 static __inline__ vector signed long long __ATTRS_o_ai
3124 vec_max(vector bool long long __a, vector signed long long __b) { in vec_max()
3125 return __builtin_altivec_vmaxsd((vector signed long long)__a, __b); in vec_max()
3128 static __inline__ vector signed long long __ATTRS_o_ai
3129 vec_max(vector signed long long __a, vector bool long long __b) { in vec_max()
3130 return __builtin_altivec_vmaxsd(__a, (vector signed long long)__b); in vec_max()
3133 static __inline__ vector unsigned long long __ATTRS_o_ai
3134 vec_max(vector unsigned long long __a, vector unsigned long long __b) { in vec_max()
3138 static __inline__ vector unsigned long long __ATTRS_o_ai
3139 vec_max(vector bool long long __a, vector unsigned long long __b) { in vec_max()
3140 return __builtin_altivec_vmaxud((vector unsigned long long)__a, __b); in vec_max()
3143 static __inline__ vector unsigned long long __ATTRS_o_ai
3144 vec_max(vector unsigned long long __a, vector bool long long __b) { in vec_max()
3145 return __builtin_altivec_vmaxud(__a, (vector unsigned long long)__b); in vec_max()
3149 static __inline__ vector float __ATTRS_o_ai vec_max(vector float __a, in vec_max()
3150 vector float __b) { in vec_max()
3159 static __inline__ vector double __ATTRS_o_ai vec_max(vector double __a, in vec_max()
3160 vector double __b) { in vec_max()
3167 static __inline__ vector signed char __ATTRS_o_ai
3168 vec_vmaxsb(vector signed char __a, vector signed char __b) { in vec_vmaxsb()
3172 static __inline__ vector signed char __ATTRS_o_ai
3173 vec_vmaxsb(vector bool char __a, vector signed char __b) { in vec_vmaxsb()
3174 return __builtin_altivec_vmaxsb((vector signed char)__a, __b); in vec_vmaxsb()
3177 static __inline__ vector signed char __ATTRS_o_ai
3178 vec_vmaxsb(vector signed char __a, vector bool char __b) { in vec_vmaxsb()
3179 return __builtin_altivec_vmaxsb(__a, (vector signed char)__b); in vec_vmaxsb()
3184 static __inline__ vector unsigned char __ATTRS_o_ai
3185 vec_vmaxub(vector unsigned char __a, vector unsigned char __b) { in vec_vmaxub()
3189 static __inline__ vector unsigned char __ATTRS_o_ai
3190 vec_vmaxub(vector bool char __a, vector unsigned char __b) { in vec_vmaxub()
3191 return __builtin_altivec_vmaxub((vector unsigned char)__a, __b); in vec_vmaxub()
3194 static __inline__ vector unsigned char __ATTRS_o_ai
3195 vec_vmaxub(vector unsigned char __a, vector bool char __b) { in vec_vmaxub()
3196 return __builtin_altivec_vmaxub(__a, (vector unsigned char)__b); in vec_vmaxub()
3201 static __inline__ vector short __ATTRS_o_ai vec_vmaxsh(vector short __a, in vec_vmaxsh()
3202 vector short __b) { in vec_vmaxsh()
3206 static __inline__ vector short __ATTRS_o_ai vec_vmaxsh(vector bool short __a, in vec_vmaxsh()
3207 vector short __b) { in vec_vmaxsh()
3208 return __builtin_altivec_vmaxsh((vector short)__a, __b); in vec_vmaxsh()
3211 static __inline__ vector short __ATTRS_o_ai vec_vmaxsh(vector short __a, in vec_vmaxsh()
3212 vector bool short __b) { in vec_vmaxsh()
3213 return __builtin_altivec_vmaxsh(__a, (vector short)__b); in vec_vmaxsh()
3218 static __inline__ vector unsigned short __ATTRS_o_ai
3219 vec_vmaxuh(vector unsigned short __a, vector unsigned short __b) { in vec_vmaxuh()
3223 static __inline__ vector unsigned short __ATTRS_o_ai
3224 vec_vmaxuh(vector bool short __a, vector unsigned short __b) { in vec_vmaxuh()
3225 return __builtin_altivec_vmaxuh((vector unsigned short)__a, __b); in vec_vmaxuh()
3228 static __inline__ vector unsigned short __ATTRS_o_ai
3229 vec_vmaxuh(vector unsigned short __a, vector bool short __b) { in vec_vmaxuh()
3230 return __builtin_altivec_vmaxuh(__a, (vector unsigned short)__b); in vec_vmaxuh()
3235 static __inline__ vector int __ATTRS_o_ai vec_vmaxsw(vector int __a, in vec_vmaxsw()
3236 vector int __b) { in vec_vmaxsw()
3240 static __inline__ vector int __ATTRS_o_ai vec_vmaxsw(vector bool int __a, in vec_vmaxsw()
3241 vector int __b) { in vec_vmaxsw()
3242 return __builtin_altivec_vmaxsw((vector int)__a, __b); in vec_vmaxsw()
3245 static __inline__ vector int __ATTRS_o_ai vec_vmaxsw(vector int __a, in vec_vmaxsw()
3246 vector bool int __b) { in vec_vmaxsw()
3247 return __builtin_altivec_vmaxsw(__a, (vector int)__b); in vec_vmaxsw()
3252 static __inline__ vector unsigned int __ATTRS_o_ai
3253 vec_vmaxuw(vector unsigned int __a, vector unsigned int __b) { in vec_vmaxuw()
3257 static __inline__ vector unsigned int __ATTRS_o_ai
3258 vec_vmaxuw(vector bool int __a, vector unsigned int __b) { in vec_vmaxuw()
3259 return __builtin_altivec_vmaxuw((vector unsigned int)__a, __b); in vec_vmaxuw()
3262 static __inline__ vector unsigned int __ATTRS_o_ai
3263 vec_vmaxuw(vector unsigned int __a, vector bool int __b) { in vec_vmaxuw()
3264 return __builtin_altivec_vmaxuw(__a, (vector unsigned int)__b); in vec_vmaxuw()
3269 static __inline__ vector float __attribute__((__always_inline__))
3270 vec_vmaxfp(vector float __a, vector float __b) { in vec_vmaxfp()
3280 static __inline__ vector signed char __ATTRS_o_ai
3281 vec_mergeh(vector signed char __a, vector signed char __b) { in vec_mergeh()
3283 (vector unsigned char)(0x00, 0x10, 0x01, 0x11, 0x02, 0x12, in vec_mergeh()
3288 static __inline__ vector unsigned char __ATTRS_o_ai
3289 vec_mergeh(vector unsigned char __a, vector unsigned char __b) { in vec_mergeh()
3291 (vector unsigned char)(0x00, 0x10, 0x01, 0x11, 0x02, 0x12, in vec_mergeh()
3296 static __inline__ vector bool char __ATTRS_o_ai
3297 vec_mergeh(vector bool char __a, vector bool char __b) { in vec_mergeh()
3299 (vector unsigned char)(0x00, 0x10, 0x01, 0x11, 0x02, 0x12, in vec_mergeh()
3304 static __inline__ vector short __ATTRS_o_ai vec_mergeh(vector short __a, in vec_mergeh()
3305 vector short __b) { in vec_mergeh()
3307 (vector unsigned char)(0x00, 0x01, 0x10, 0x11, 0x02, 0x03, in vec_mergeh()
3312 static __inline__ vector unsigned short __ATTRS_o_ai
3313 vec_mergeh(vector unsigned short __a, vector unsigned short __b) { in vec_mergeh()
3315 (vector unsigned char)(0x00, 0x01, 0x10, 0x11, 0x02, 0x03, in vec_mergeh()
3320 static __inline__ vector bool short __ATTRS_o_ai
3321 vec_mergeh(vector bool short __a, vector bool short __b) { in vec_mergeh()
3323 (vector unsigned char)(0x00, 0x01, 0x10, 0x11, 0x02, 0x03, in vec_mergeh()
3328 static __inline__ vector pixel __ATTRS_o_ai vec_mergeh(vector pixel __a, in vec_mergeh()
3329 vector pixel __b) { in vec_mergeh()
3331 (vector unsigned char)(0x00, 0x01, 0x10, 0x11, 0x02, 0x03, in vec_mergeh()
3336 static __inline__ vector int __ATTRS_o_ai vec_mergeh(vector int __a, in vec_mergeh()
3337 vector int __b) { in vec_mergeh()
3339 (vector unsigned char)(0x00, 0x01, 0x02, 0x03, 0x10, 0x11, in vec_mergeh()
3344 static __inline__ vector unsigned int __ATTRS_o_ai
3345 vec_mergeh(vector unsigned int __a, vector unsigned int __b) { in vec_mergeh()
3347 (vector unsigned char)(0x00, 0x01, 0x02, 0x03, 0x10, 0x11, in vec_mergeh()
3352 static __inline__ vector bool int __ATTRS_o_ai vec_mergeh(vector bool int __a, in vec_mergeh()
3353 vector bool int __b) { in vec_mergeh()
3355 (vector unsigned char)(0x00, 0x01, 0x02, 0x03, 0x10, 0x11, in vec_mergeh()
3360 static __inline__ vector float __ATTRS_o_ai vec_mergeh(vector float __a, in vec_mergeh()
3361 vector float __b) { in vec_mergeh()
3363 (vector unsigned char)(0x00, 0x01, 0x02, 0x03, 0x10, 0x11, in vec_mergeh()
3369 static __inline__ vector signed long long __ATTRS_o_ai
3370 vec_mergeh(vector signed long long __a, vector signed long long __b) { in vec_mergeh()
3372 (vector unsigned char)(0x00, 0x01, 0x02, 0x03, 0x04, 0x05, in vec_mergeh()
3377 static __inline__ vector signed long long __ATTRS_o_ai
3378 vec_mergeh(vector signed long long __a, vector bool long long __b) { in vec_mergeh()
3379 return vec_perm(__a, (vector signed long long)__b, in vec_mergeh()
3380 (vector unsigned char)(0x00, 0x01, 0x02, 0x03, 0x04, 0x05, in vec_mergeh()
3385 static __inline__ vector signed long long __ATTRS_o_ai
3386 vec_mergeh(vector bool long long __a, vector signed long long __b) { in vec_mergeh()
3387 return vec_perm((vector signed long long)__a, __b, in vec_mergeh()
3388 (vector unsigned char)(0x00, 0x01, 0x02, 0x03, 0x04, 0x05, in vec_mergeh()
3393 static __inline__ vector unsigned long long __ATTRS_o_ai
3394 vec_mergeh(vector unsigned long long __a, vector unsigned long long __b) { in vec_mergeh()
3396 (vector unsigned char)(0x00, 0x01, 0x02, 0x03, 0x04, 0x05, in vec_mergeh()
3401 static __inline__ vector unsigned long long __ATTRS_o_ai
3402 vec_mergeh(vector unsigned long long __a, vector bool long long __b) { in vec_mergeh()
3403 return vec_perm(__a, (vector unsigned long long)__b, in vec_mergeh()
3404 (vector unsigned char)(0x00, 0x01, 0x02, 0x03, 0x04, 0x05, in vec_mergeh()
3409 static __inline__ vector unsigned long long __ATTRS_o_ai
3410 vec_mergeh(vector bool long long __a, vector unsigned long long __b) { in vec_mergeh()
3411 return vec_perm((vector unsigned long long)__a, __b, in vec_mergeh()
3412 (vector unsigned char)(0x00, 0x01, 0x02, 0x03, 0x04, 0x05, in vec_mergeh()
3417 static __inline__ vector bool long long __ATTRS_o_ai
3418 vec_mergeh(vector bool long long __a, vector bool long long __b) { in vec_mergeh()
3420 (vector unsigned char)(0x00, 0x01, 0x02, 0x03, 0x04, 0x05, in vec_mergeh()
3425 static __inline__ vector double __ATTRS_o_ai vec_mergeh(vector double __a, in vec_mergeh()
3426 vector double __b) { in vec_mergeh()
3428 (vector unsigned char)(0x00, 0x01, 0x02, 0x03, 0x04, 0x05, in vec_mergeh()
3432 static __inline__ vector double __ATTRS_o_ai
3433 vec_mergeh(vector double __a, vector bool long long __b) { in vec_mergeh()
3434 return vec_perm(__a, (vector double)__b, in vec_mergeh()
3435 (vector unsigned char)(0x00, 0x01, 0x02, 0x03, 0x04, 0x05, in vec_mergeh()
3439 static __inline__ vector double __ATTRS_o_ai
3440 vec_mergeh(vector bool long long __a, vector double __b) { in vec_mergeh()
3441 return vec_perm((vector double)__a, __b, in vec_mergeh()
3442 (vector unsigned char)(0x00, 0x01, 0x02, 0x03, 0x04, 0x05, in vec_mergeh()
3452 static __inline__ vector signed char __ATTRS_o_ai
3453 vec_vmrghb(vector signed char __a, vector signed char __b) { in vec_vmrghb()
3455 (vector unsigned char)(0x00, 0x10, 0x01, 0x11, 0x02, 0x12, in vec_vmrghb()
3460 static __inline__ vector unsigned char __ATTRS_o_ai
3461 vec_vmrghb(vector unsigned char __a, vector unsigned char __b) { in vec_vmrghb()
3463 (vector unsigned char)(0x00, 0x10, 0x01, 0x11, 0x02, 0x12, in vec_vmrghb()
3468 static __inline__ vector bool char __ATTRS_o_ai
3469 vec_vmrghb(vector bool char __a, vector bool char __b) { in vec_vmrghb()
3471 (vector unsigned char)(0x00, 0x10, 0x01, 0x11, 0x02, 0x12, in vec_vmrghb()
3480 static __inline__ vector short __ATTRS_o_ai vec_vmrghh(vector short __a, in vec_vmrghh()
3481 vector short __b) { in vec_vmrghh()
3483 (vector unsigned char)(0x00, 0x01, 0x10, 0x11, 0x02, 0x03, in vec_vmrghh()
3488 static __inline__ vector unsigned short __ATTRS_o_ai
3489 vec_vmrghh(vector unsigned short __a, vector unsigned short __b) { in vec_vmrghh()
3491 (vector unsigned char)(0x00, 0x01, 0x10, 0x11, 0x02, 0x03, in vec_vmrghh()
3496 static __inline__ vector bool short __ATTRS_o_ai
3497 vec_vmrghh(vector bool short __a, vector bool short __b) { in vec_vmrghh()
3499 (vector unsigned char)(0x00, 0x01, 0x10, 0x11, 0x02, 0x03, in vec_vmrghh()
3504 static __inline__ vector pixel __ATTRS_o_ai vec_vmrghh(vector pixel __a, in vec_vmrghh()
3505 vector pixel __b) { in vec_vmrghh()
3507 (vector unsigned char)(0x00, 0x01, 0x10, 0x11, 0x02, 0x03, in vec_vmrghh()
3516 static __inline__ vector int __ATTRS_o_ai vec_vmrghw(vector int __a, in vec_vmrghw()
3517 vector int __b) { in vec_vmrghw()
3519 (vector unsigned char)(0x00, 0x01, 0x02, 0x03, 0x10, 0x11, in vec_vmrghw()
3524 static __inline__ vector unsigned int __ATTRS_o_ai
3525 vec_vmrghw(vector unsigned int __a, vector unsigned int __b) { in vec_vmrghw()
3527 (vector unsigned char)(0x00, 0x01, 0x02, 0x03, 0x10, 0x11, in vec_vmrghw()
3532 static __inline__ vector bool int __ATTRS_o_ai vec_vmrghw(vector bool int __a, in vec_vmrghw()
3533 vector bool int __b) { in vec_vmrghw()
3535 (vector unsigned char)(0x00, 0x01, 0x02, 0x03, 0x10, 0x11, in vec_vmrghw()
3540 static __inline__ vector float __ATTRS_o_ai vec_vmrghw(vector float __a, in vec_vmrghw()
3541 vector float __b) { in vec_vmrghw()
3543 (vector unsigned char)(0x00, 0x01, 0x02, 0x03, 0x10, 0x11, in vec_vmrghw()
3550 static __inline__ vector signed char __ATTRS_o_ai
3551 vec_mergel(vector signed char __a, vector signed char __b) { in vec_mergel()
3553 (vector unsigned char)(0x08, 0x18, 0x09, 0x19, 0x0A, 0x1A, in vec_mergel()
3558 static __inline__ vector unsigned char __ATTRS_o_ai
3559 vec_mergel(vector unsigned char __a, vector unsigned char __b) { in vec_mergel()
3561 (vector unsigned char)(0x08, 0x18, 0x09, 0x19, 0x0A, 0x1A, in vec_mergel()
3566 static __inline__ vector bool char __ATTRS_o_ai
3567 vec_mergel(vector bool char __a, vector bool char __b) { in vec_mergel()
3569 (vector unsigned char)(0x08, 0x18, 0x09, 0x19, 0x0A, 0x1A, in vec_mergel()
3574 static __inline__ vector short __ATTRS_o_ai vec_mergel(vector short __a, in vec_mergel()
3575 vector short __b) { in vec_mergel()
3577 (vector unsigned char)(0x08, 0x09, 0x18, 0x19, 0x0A, 0x0B, in vec_mergel()
3582 static __inline__ vector unsigned short __ATTRS_o_ai
3583 vec_mergel(vector unsigned short __a, vector unsigned short __b) { in vec_mergel()
3585 (vector unsigned char)(0x08, 0x09, 0x18, 0x19, 0x0A, 0x0B, in vec_mergel()
3590 static __inline__ vector bool short __ATTRS_o_ai
3591 vec_mergel(vector bool short __a, vector bool short __b) { in vec_mergel()
3593 (vector unsigned char)(0x08, 0x09, 0x18, 0x19, 0x0A, 0x0B, in vec_mergel()
3598 static __inline__ vector pixel __ATTRS_o_ai vec_mergel(vector pixel __a, in vec_mergel()
3599 vector pixel __b) { in vec_mergel()
3601 (vector unsigned char)(0x08, 0x09, 0x18, 0x19, 0x0A, 0x0B, in vec_mergel()
3606 static __inline__ vector int __ATTRS_o_ai vec_mergel(vector int __a, in vec_mergel()
3607 vector int __b) { in vec_mergel()
3609 (vector unsigned char)(0x08, 0x09, 0x0A, 0x0B, 0x18, 0x19, in vec_mergel()
3614 static __inline__ vector unsigned int __ATTRS_o_ai
3615 vec_mergel(vector unsigned int __a, vector unsigned int __b) { in vec_mergel()
3617 (vector unsigned char)(0x08, 0x09, 0x0A, 0x0B, 0x18, 0x19, in vec_mergel()
3622 static __inline__ vector bool int __ATTRS_o_ai vec_mergel(vector bool int __a, in vec_mergel()
3623 vector bool int __b) { in vec_mergel()
3625 (vector unsigned char)(0x08, 0x09, 0x0A, 0x0B, 0x18, 0x19, in vec_mergel()
3630 static __inline__ vector float __ATTRS_o_ai vec_mergel(vector float __a, in vec_mergel()
3631 vector float __b) { in vec_mergel()
3633 (vector unsigned char)(0x08, 0x09, 0x0A, 0x0B, 0x18, 0x19, in vec_mergel()
3639 static __inline__ vector signed long long __ATTRS_o_ai
3640 vec_mergel(vector signed long long __a, vector signed long long __b) { in vec_mergel()
3642 (vector unsigned char)(0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, in vec_mergel()
3646 static __inline__ vector signed long long __ATTRS_o_ai
3647 vec_mergel(vector signed long long __a, vector bool long long __b) { in vec_mergel()
3648 return vec_perm(__a, (vector signed long long)__b, in vec_mergel()
3649 (vector unsigned char)(0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, in vec_mergel()
3653 static __inline__ vector signed long long __ATTRS_o_ai
3654 vec_mergel(vector bool long long __a, vector signed long long __b) { in vec_mergel()
3655 return vec_perm((vector signed long long)__a, __b, in vec_mergel()
3656 (vector unsigned char)(0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, in vec_mergel()
3660 static __inline__ vector unsigned long long __ATTRS_o_ai
3661 vec_mergel(vector unsigned long long __a, vector unsigned long long __b) { in vec_mergel()
3663 (vector unsigned char)(0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, in vec_mergel()
3667 static __inline__ vector unsigned long long __ATTRS_o_ai
3668 vec_mergel(vector unsigned long long __a, vector bool long long __b) { in vec_mergel()
3669 return vec_perm(__a, (vector unsigned long long)__b, in vec_mergel()
3670 (vector unsigned char)(0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, in vec_mergel()
3674 static __inline__ vector unsigned long long __ATTRS_o_ai
3675 vec_mergel(vector bool long long __a, vector unsigned long long __b) { in vec_mergel()
3676 return vec_perm((vector unsigned long long)__a, __b, in vec_mergel()
3677 (vector unsigned char)(0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, in vec_mergel()
3681 static __inline__ vector bool long long __ATTRS_o_ai
3682 vec_mergel(vector bool long long __a, vector bool long long __b) { in vec_mergel()
3684 (vector unsigned char)(0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, in vec_mergel()
3688 static __inline__ vector double __ATTRS_o_ai vec_mergel(vector double __a, in vec_mergel()
3689 vector double __b) { in vec_mergel()
3691 (vector unsigned char)(0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, in vec_mergel()
3695 static __inline__ vector double __ATTRS_o_ai
3696 vec_mergel(vector double __a, vector bool long long __b) { in vec_mergel()
3697 return vec_perm(__a, (vector double)__b, in vec_mergel()
3698 (vector unsigned char)(0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, in vec_mergel()
3702 static __inline__ vector double __ATTRS_o_ai
3703 vec_mergel(vector bool long long __a, vector double __b) { in vec_mergel()
3704 return vec_perm((vector double)__a, __b, in vec_mergel()
3705 (vector unsigned char)(0x08, 0x09, 0x0A, 0x0B, 0x0C, 0x0D, in vec_mergel()
3715 static __inline__ vector signed char __ATTRS_o_ai
3716 vec_vmrglb(vector signed char __a, vector signed char __b) { in vec_vmrglb()
3718 (vector unsigned char)(0x08, 0x18, 0x09, 0x19, 0x0A, 0x1A, in vec_vmrglb()
3723 static __inline__ vector unsigned char __ATTRS_o_ai
3724 vec_vmrglb(vector unsigned char __a, vector unsigned char __b) { in vec_vmrglb()
3726 (vector unsigned char)(0x08, 0x18, 0x09, 0x19, 0x0A, 0x1A, in vec_vmrglb()
3731 static __inline__ vector bool char __ATTRS_o_ai
3732 vec_vmrglb(vector bool char __a, vector bool char __b) { in vec_vmrglb()
3734 (vector unsigned char)(0x08, 0x18, 0x09, 0x19, 0x0A, 0x1A, in vec_vmrglb()
3743 static __inline__ vector short __ATTRS_o_ai vec_vmrglh(vector short __a, in vec_vmrglh()
3744 vector short __b) { in vec_vmrglh()
3746 (vector unsigned char)(0x08, 0x09, 0x18, 0x19, 0x0A, 0x0B, in vec_vmrglh()
3751 static __inline__ vector unsigned short __ATTRS_o_ai
3752 vec_vmrglh(vector unsigned short __a, vector unsigned short __b) { in vec_vmrglh()
3754 (vector unsigned char)(0x08, 0x09, 0x18, 0x19, 0x0A, 0x0B, in vec_vmrglh()
3759 static __inline__ vector bool short __ATTRS_o_ai
3760 vec_vmrglh(vector bool short __a, vector bool short __b) { in vec_vmrglh()
3762 (vector unsigned char)(0x08, 0x09, 0x18, 0x19, 0x0A, 0x0B, in vec_vmrglh()
3767 static __inline__ vector pixel __ATTRS_o_ai vec_vmrglh(vector pixel __a, in vec_vmrglh()
3768 vector pixel __b) { in vec_vmrglh()
3770 (vector unsigned char)(0x08, 0x09, 0x18, 0x19, 0x0A, 0x0B, in vec_vmrglh()
3779 static __inline__ vector int __ATTRS_o_ai vec_vmrglw(vector int __a, in vec_vmrglw()
3780 vector int __b) { in vec_vmrglw()
3782 (vector unsigned char)(0x08, 0x09, 0x0A, 0x0B, 0x18, 0x19, in vec_vmrglw()
3787 static __inline__ vector unsigned int __ATTRS_o_ai
3788 vec_vmrglw(vector unsigned int __a, vector unsigned int __b) { in vec_vmrglw()
3790 (vector unsigned char)(0x08, 0x09, 0x0A, 0x0B, 0x18, 0x19, in vec_vmrglw()
3795 static __inline__ vector bool int __ATTRS_o_ai vec_vmrglw(vector bool int __a, in vec_vmrglw()
3796 vector bool int __b) { in vec_vmrglw()
3798 (vector unsigned char)(0x08, 0x09, 0x0A, 0x0B, 0x18, 0x19, in vec_vmrglw()
3803 static __inline__ vector float __ATTRS_o_ai vec_vmrglw(vector float __a, in vec_vmrglw()
3804 vector float __b) { in vec_vmrglw()
3806 (vector unsigned char)(0x08, 0x09, 0x0A, 0x0B, 0x18, 0x19, in vec_vmrglw()
3814 static __inline__ vector bool int __ATTRS_o_ai vec_mergee(vector bool int __a, in vec_mergee()
3815 vector bool int __b) { in vec_mergee()
3817 (vector unsigned char)(0x00, 0x01, 0x02, 0x03, 0x10, 0x11, in vec_mergee()
3822 static __inline__ vector signed int __ATTRS_o_ai
3823 vec_mergee(vector signed int __a, vector signed int __b) { in vec_mergee()
3825 (vector unsigned char)(0x00, 0x01, 0x02, 0x03, 0x10, 0x11, in vec_mergee()
3830 static __inline__ vector unsigned int __ATTRS_o_ai
3831 vec_mergee(vector unsigned int __a, vector unsigned int __b) { in vec_mergee()
3833 (vector unsigned char)(0x00, 0x01, 0x02, 0x03, 0x10, 0x11, in vec_mergee()
3840 static __inline__ vector bool int __ATTRS_o_ai vec_mergeo(vector bool int __a, in vec_mergeo()
3841 vector bool int __b) { in vec_mergeo()
3843 (vector unsigned char)(0x04, 0x05, 0x06, 0x07, 0x14, 0x15, in vec_mergeo()
3848 static __inline__ vector signed int __ATTRS_o_ai
3849 vec_mergeo(vector signed int __a, vector signed int __b) { in vec_mergeo()
3851 (vector unsigned char)(0x04, 0x05, 0x06, 0x07, 0x14, 0x15, in vec_mergeo()
3856 static __inline__ vector unsigned int __ATTRS_o_ai
3857 vec_mergeo(vector unsigned int __a, vector unsigned int __b) { in vec_mergeo()
3859 (vector unsigned char)(0x04, 0x05, 0x06, 0x07, 0x14, 0x15, in vec_mergeo()
3868 static __inline__ vector unsigned short __attribute__((__always_inline__))
3875 static __inline__ vector signed char __ATTRS_o_ai
3876 vec_min(vector signed char __a, vector signed char __b) { in vec_min()
3880 static __inline__ vector signed char __ATTRS_o_ai
3881 vec_min(vector bool char __a, vector signed char __b) { in vec_min()
3882 return __builtin_altivec_vminsb((vector signed char)__a, __b); in vec_min()
3885 static __inline__ vector signed char __ATTRS_o_ai
3886 vec_min(vector signed char __a, vector bool char __b) { in vec_min()
3887 return __builtin_altivec_vminsb(__a, (vector signed char)__b); in vec_min()
3890 static __inline__ vector unsigned char __ATTRS_o_ai
3891 vec_min(vector unsigned char __a, vector unsigned char __b) { in vec_min()
3895 static __inline__ vector unsigned char __ATTRS_o_ai
3896 vec_min(vector bool char __a, vector unsigned char __b) { in vec_min()
3897 return __builtin_altivec_vminub((vector unsigned char)__a, __b); in vec_min()
3900 static __inline__ vector unsigned char __ATTRS_o_ai
3901 vec_min(vector unsigned char __a, vector bool char __b) { in vec_min()
3902 return __builtin_altivec_vminub(__a, (vector unsigned char)__b); in vec_min()
3905 static __inline__ vector short __ATTRS_o_ai vec_min(vector short __a, in vec_min()
3906 vector short __b) { in vec_min()
3910 static __inline__ vector short __ATTRS_o_ai vec_min(vector bool short __a, in vec_min()
3911 vector short __b) { in vec_min()
3912 return __builtin_altivec_vminsh((vector short)__a, __b); in vec_min()
3915 static __inline__ vector short __ATTRS_o_ai vec_min(vector short __a, in vec_min()
3916 vector bool short __b) { in vec_min()
3917 return __builtin_altivec_vminsh(__a, (vector short)__b); in vec_min()
3920 static __inline__ vector unsigned short __ATTRS_o_ai
3921 vec_min(vector unsigned short __a, vector unsigned short __b) { in vec_min()
3925 static __inline__ vector unsigned short __ATTRS_o_ai
3926 vec_min(vector bool short __a, vector unsigned short __b) { in vec_min()
3927 return __builtin_altivec_vminuh((vector unsigned short)__a, __b); in vec_min()
3930 static __inline__ vector unsigned short __ATTRS_o_ai
3931 vec_min(vector unsigned short __a, vector bool short __b) { in vec_min()
3932 return __builtin_altivec_vminuh(__a, (vector unsigned short)__b); in vec_min()
3935 static __inline__ vector int __ATTRS_o_ai vec_min(vector int __a, in vec_min()
3936 vector int __b) { in vec_min()
3940 static __inline__ vector int __ATTRS_o_ai vec_min(vector bool int __a, in vec_min()
3941 vector int __b) { in vec_min()
3942 return __builtin_altivec_vminsw((vector int)__a, __b); in vec_min()
3945 static __inline__ vector int __ATTRS_o_ai vec_min(vector int __a, in vec_min()
3946 vector bool int __b) { in vec_min()
3947 return __builtin_altivec_vminsw(__a, (vector int)__b); in vec_min()
3950 static __inline__ vector unsigned int __ATTRS_o_ai
3951 vec_min(vector unsigned int __a, vector unsigned int __b) { in vec_min()
3955 static __inline__ vector unsigned int __ATTRS_o_ai
3956 vec_min(vector bool int __a, vector unsigned int __b) { in vec_min()
3957 return __builtin_altivec_vminuw((vector unsigned int)__a, __b); in vec_min()
3960 static __inline__ vector unsigned int __ATTRS_o_ai
3961 vec_min(vector unsigned int __a, vector bool int __b) { in vec_min()
3962 return __builtin_altivec_vminuw(__a, (vector unsigned int)__b); in vec_min()
3966 static __inline__ vector signed long long __ATTRS_o_ai
3967 vec_min(vector signed long long __a, vector signed long long __b) { in vec_min()
3971 static __inline__ vector signed long long __ATTRS_o_ai
3972 vec_min(vector bool long long __a, vector signed long long __b) { in vec_min()
3973 return __builtin_altivec_vminsd((vector signed long long)__a, __b); in vec_min()
3976 static __inline__ vector signed long long __ATTRS_o_ai
3977 vec_min(vector signed long long __a, vector bool long long __b) { in vec_min()
3978 return __builtin_altivec_vminsd(__a, (vector signed long long)__b); in vec_min()
3981 static __inline__ vector unsigned long long __ATTRS_o_ai
3982 vec_min(vector unsigned long long __a, vector unsigned long long __b) { in vec_min()
3986 static __inline__ vector unsigned long long __ATTRS_o_ai
3987 vec_min(vector bool long long __a, vector unsigned long long __b) { in vec_min()
3988 return __builtin_altivec_vminud((vector unsigned long long)__a, __b); in vec_min()
3991 static __inline__ vector unsigned long long __ATTRS_o_ai
3992 vec_min(vector unsigned long long __a, vector bool long long __b) { in vec_min()
3993 return __builtin_altivec_vminud(__a, (vector unsigned long long)__b); in vec_min()
3997 static __inline__ vector float __ATTRS_o_ai vec_min(vector float __a, in vec_min()
3998 vector float __b) { in vec_min()
4007 static __inline__ vector double __ATTRS_o_ai vec_min(vector double __a, in vec_min()
4008 vector double __b) { in vec_min()
4015 static __inline__ vector signed char __ATTRS_o_ai
4016 vec_vminsb(vector signed char __a, vector signed char __b) { in vec_vminsb()
4020 static __inline__ vector signed char __ATTRS_o_ai
4021 vec_vminsb(vector bool char __a, vector signed char __b) { in vec_vminsb()
4022 return __builtin_altivec_vminsb((vector signed char)__a, __b); in vec_vminsb()
4025 static __inline__ vector signed char __ATTRS_o_ai
4026 vec_vminsb(vector signed char __a, vector bool char __b) { in vec_vminsb()
4027 return __builtin_altivec_vminsb(__a, (vector signed char)__b); in vec_vminsb()
4032 static __inline__ vector unsigned char __ATTRS_o_ai
4033 vec_vminub(vector unsigned char __a, vector unsigned char __b) { in vec_vminub()
4037 static __inline__ vector unsigned char __ATTRS_o_ai
4038 vec_vminub(vector bool char __a, vector unsigned char __b) { in vec_vminub()
4039 return __builtin_altivec_vminub((vector unsigned char)__a, __b); in vec_vminub()
4042 static __inline__ vector unsigned char __ATTRS_o_ai
4043 vec_vminub(vector unsigned char __a, vector bool char __b) { in vec_vminub()
4044 return __builtin_altivec_vminub(__a, (vector unsigned char)__b); in vec_vminub()
4049 static __inline__ vector short __ATTRS_o_ai vec_vminsh(vector short __a, in vec_vminsh()
4050 vector short __b) { in vec_vminsh()
4054 static __inline__ vector short __ATTRS_o_ai vec_vminsh(vector bool short __a, in vec_vminsh()
4055 vector short __b) { in vec_vminsh()
4056 return __builtin_altivec_vminsh((vector short)__a, __b); in vec_vminsh()
4059 static __inline__ vector short __ATTRS_o_ai vec_vminsh(vector short __a, in vec_vminsh()
4060 vector bool short __b) { in vec_vminsh()
4061 return __builtin_altivec_vminsh(__a, (vector short)__b); in vec_vminsh()
4066 static __inline__ vector unsigned short __ATTRS_o_ai
4067 vec_vminuh(vector unsigned short __a, vector unsigned short __b) { in vec_vminuh()
4071 static __inline__ vector unsigned short __ATTRS_o_ai
4072 vec_vminuh(vector bool short __a, vector unsigned short __b) { in vec_vminuh()
4073 return __builtin_altivec_vminuh((vector unsigned short)__a, __b); in vec_vminuh()
4076 static __inline__ vector unsigned short __ATTRS_o_ai
4077 vec_vminuh(vector unsigned short __a, vector bool short __b) { in vec_vminuh()
4078 return __builtin_altivec_vminuh(__a, (vector unsigned short)__b); in vec_vminuh()
4083 static __inline__ vector int __ATTRS_o_ai vec_vminsw(vector int __a, in vec_vminsw()
4084 vector int __b) { in vec_vminsw()
4088 static __inline__ vector int __ATTRS_o_ai vec_vminsw(vector bool int __a, in vec_vminsw()
4089 vector int __b) { in vec_vminsw()
4090 return __builtin_altivec_vminsw((vector int)__a, __b); in vec_vminsw()
4093 static __inline__ vector int __ATTRS_o_ai vec_vminsw(vector int __a, in vec_vminsw()
4094 vector bool int __b) { in vec_vminsw()
4095 return __builtin_altivec_vminsw(__a, (vector int)__b); in vec_vminsw()
4100 static __inline__ vector unsigned int __ATTRS_o_ai
4101 vec_vminuw(vector unsigned int __a, vector unsigned int __b) { in vec_vminuw()
4105 static __inline__ vector unsigned int __ATTRS_o_ai
4106 vec_vminuw(vector bool int __a, vector unsigned int __b) { in vec_vminuw()
4107 return __builtin_altivec_vminuw((vector unsigned int)__a, __b); in vec_vminuw()
4110 static __inline__ vector unsigned int __ATTRS_o_ai
4111 vec_vminuw(vector unsigned int __a, vector bool int __b) { in vec_vminuw()
4112 return __builtin_altivec_vminuw(__a, (vector unsigned int)__b); in vec_vminuw()
4117 static __inline__ vector float __attribute__((__always_inline__))
4118 vec_vminfp(vector float __a, vector float __b) { in vec_vminfp()
4130 static __inline__ vector short __ATTRS_o_ai vec_mladd(vector short __a, in vec_mladd()
4131 vector short __b, in vec_mladd()
4132 vector short __c) { in vec_mladd()
4136 static __inline__ vector short __ATTRS_o_ai vec_mladd( in vec_mladd()
4137 vector short __a, vector unsigned short __b, vector unsigned short __c) { in vec_mladd()
4138 return __a * (vector short)__b + (vector short)__c; in vec_mladd()
4141 static __inline__ vector short __ATTRS_o_ai vec_mladd(vector unsigned short __a, in vec_mladd()
4142 vector short __b, in vec_mladd()
4143 vector short __c) { in vec_mladd()
4144 return (vector short)__a * __b + __c; in vec_mladd()
4147 static __inline__ vector unsigned short __ATTRS_o_ai
4148 vec_mladd(vector unsigned short __a, vector unsigned short __b, in vec_mladd()
4149 vector unsigned short __c) { in vec_mladd()
4155 static __inline__ vector short __ATTRS_o_ai vec_vmladduhm(vector short __a, in vec_vmladduhm()
4156 vector short __b, in vec_vmladduhm()
4157 vector short __c) { in vec_vmladduhm()
4161 static __inline__ vector short __ATTRS_o_ai vec_vmladduhm( in vec_vmladduhm()
4162 vector short __a, vector unsigned short __b, vector unsigned short __c) { in vec_vmladduhm()
4163 return __a * (vector short)__b + (vector short)__c; in vec_vmladduhm()
4166 static __inline__ vector short __ATTRS_o_ai
4167 vec_vmladduhm(vector unsigned short __a, vector short __b, vector short __c) { in vec_vmladduhm()
4168 return (vector short)__a * __b + __c; in vec_vmladduhm()
4171 static __inline__ vector unsigned short __ATTRS_o_ai
4172 vec_vmladduhm(vector unsigned short __a, vector unsigned short __b, in vec_vmladduhm()
4173 vector unsigned short __c) { in vec_vmladduhm()
4179 static __inline__ vector short __attribute__((__always_inline__))
4180 vec_mradds(vector short __a, vector short __b, vector short __c) { in vec_mradds()
4186 static __inline__ vector short __attribute__((__always_inline__))
4187 vec_vmhraddshs(vector short __a, vector short __b, vector short __c) { in vec_vmhraddshs()
4193 static __inline__ vector int __ATTRS_o_ai vec_msum(vector signed char __a, in vec_msum()
4194 vector unsigned char __b, in vec_msum()
4195 vector int __c) { in vec_msum()
4199 static __inline__ vector unsigned int __ATTRS_o_ai
4200 vec_msum(vector unsigned char __a, vector unsigned char __b, in vec_msum()
4201 vector unsigned int __c) { in vec_msum()
4205 static __inline__ vector int __ATTRS_o_ai vec_msum(vector short __a, in vec_msum()
4206 vector short __b, in vec_msum()
4207 vector int __c) { in vec_msum()
4211 static __inline__ vector unsigned int __ATTRS_o_ai
4212 vec_msum(vector unsigned short __a, vector unsigned short __b, in vec_msum()
4213 vector unsigned int __c) { in vec_msum()
4219 static __inline__ vector int __attribute__((__always_inline__))
4220 vec_vmsummbm(vector signed char __a, vector unsigned char __b, vector int __c) { in vec_vmsummbm()
4226 static __inline__ vector unsigned int __attribute__((__always_inline__))
4227 vec_vmsumubm(vector unsigned char __a, vector unsigned char __b, in vec_vmsumubm()
4228 vector unsigned int __c) { in vec_vmsumubm()
4234 static __inline__ vector int __attribute__((__always_inline__))
4235 vec_vmsumshm(vector short __a, vector short __b, vector int __c) { in vec_vmsumshm()
4241 static __inline__ vector unsigned int __attribute__((__always_inline__))
4242 vec_vmsumuhm(vector unsigned short __a, vector unsigned short __b, in vec_vmsumuhm()
4243 vector unsigned int __c) { in vec_vmsumuhm()
4249 static __inline__ vector int __ATTRS_o_ai vec_msums(vector short __a, in vec_msums()
4250 vector short __b, in vec_msums()
4251 vector int __c) { in vec_msums()
4255 static __inline__ vector unsigned int __ATTRS_o_ai
4256 vec_msums(vector unsigned short __a, vector unsigned short __b, in vec_msums()
4257 vector unsigned int __c) { in vec_msums()
4263 static __inline__ vector int __attribute__((__always_inline__))
4264 vec_vmsumshs(vector short __a, vector short __b, vector int __c) { in vec_vmsumshs()
4270 static __inline__ vector unsigned int __attribute__((__always_inline__))
4271 vec_vmsumuhs(vector unsigned short __a, vector unsigned short __b, in vec_vmsumuhs()
4272 vector unsigned int __c) { in vec_vmsumuhs()
4278 static __inline__ void __ATTRS_o_ai vec_mtvscr(vector signed char __a) { in vec_mtvscr()
4279 __builtin_altivec_mtvscr((vector int)__a); in vec_mtvscr()
4282 static __inline__ void __ATTRS_o_ai vec_mtvscr(vector unsigned char __a) { in vec_mtvscr()
4283 __builtin_altivec_mtvscr((vector int)__a); in vec_mtvscr()
4286 static __inline__ void __ATTRS_o_ai vec_mtvscr(vector bool char __a) { in vec_mtvscr()
4287 __builtin_altivec_mtvscr((vector int)__a); in vec_mtvscr()
4290 static __inline__ void __ATTRS_o_ai vec_mtvscr(vector short __a) { in vec_mtvscr()
4291 __builtin_altivec_mtvscr((vector int)__a); in vec_mtvscr()
4294 static __inline__ void __ATTRS_o_ai vec_mtvscr(vector unsigned short __a) { in vec_mtvscr()
4295 __builtin_altivec_mtvscr((vector int)__a); in vec_mtvscr()
4298 static __inline__ void __ATTRS_o_ai vec_mtvscr(vector bool short __a) { in vec_mtvscr()
4299 __builtin_altivec_mtvscr((vector int)__a); in vec_mtvscr()
4302 static __inline__ void __ATTRS_o_ai vec_mtvscr(vector pixel __a) { in vec_mtvscr()
4303 __builtin_altivec_mtvscr((vector int)__a); in vec_mtvscr()
4306 static __inline__ void __ATTRS_o_ai vec_mtvscr(vector int __a) { in vec_mtvscr()
4307 __builtin_altivec_mtvscr((vector int)__a); in vec_mtvscr()
4310 static __inline__ void __ATTRS_o_ai vec_mtvscr(vector unsigned int __a) { in vec_mtvscr()
4311 __builtin_altivec_mtvscr((vector int)__a); in vec_mtvscr()
4314 static __inline__ void __ATTRS_o_ai vec_mtvscr(vector bool int __a) { in vec_mtvscr()
4315 __builtin_altivec_mtvscr((vector int)__a); in vec_mtvscr()
4318 static __inline__ void __ATTRS_o_ai vec_mtvscr(vector float __a) { in vec_mtvscr()
4319 __builtin_altivec_mtvscr((vector int)__a); in vec_mtvscr()
4328 static __inline__ vector signed char __ATTRS_o_ai
4329 vec_mul(vector signed char __a, vector signed char __b) { in vec_mul()
4333 static __inline__ vector unsigned char __ATTRS_o_ai
4334 vec_mul(vector unsigned char __a, vector unsigned char __b) { in vec_mul()
4338 static __inline__ vector signed short __ATTRS_o_ai
4339 vec_mul(vector signed short __a, vector signed short __b) { in vec_mul()
4343 static __inline__ vector unsigned short __ATTRS_o_ai
4344 vec_mul(vector unsigned short __a, vector unsigned short __b) { in vec_mul()
4348 static __inline__ vector signed int __ATTRS_o_ai
4349 vec_mul(vector signed int __a, vector signed int __b) { in vec_mul()
4353 static __inline__ vector unsigned int __ATTRS_o_ai
4354 vec_mul(vector unsigned int __a, vector unsigned int __b) { in vec_mul()
4359 static __inline__ vector signed long long __ATTRS_o_ai
4360 vec_mul(vector signed long long __a, vector signed long long __b) { in vec_mul()
4364 static __inline__ vector unsigned long long __ATTRS_o_ai
4365 vec_mul(vector unsigned long long __a, vector unsigned long long __b) { in vec_mul()
4370 static __inline__ vector float __ATTRS_o_ai vec_mul(vector float __a, in vec_mul()
4371 vector float __b) { in vec_mul()
4376 static __inline__ vector double __ATTRS_o_ai vec_mul(vector double __a, in vec_mul()
4377 vector double __b) { in vec_mul()
4387 static __inline__ vector short __ATTRS_o_ai vec_mule(vector signed char __a, in vec_mule()
4388 vector signed char __b) { in vec_mule()
4396 static __inline__ vector unsigned short __ATTRS_o_ai
4397 vec_mule(vector unsigned char __a, vector unsigned char __b) { in vec_mule()
4405 static __inline__ vector int __ATTRS_o_ai vec_mule(vector short __a, in vec_mule()
4406 vector short __b) { in vec_mule()
4414 static __inline__ vector unsigned int __ATTRS_o_ai
4415 vec_mule(vector unsigned short __a, vector unsigned short __b) { in vec_mule()
4424 static __inline__ vector signed long long __ATTRS_o_ai
4425 vec_mule(vector signed int __a, vector signed int __b) { in vec_mule()
4433 static __inline__ vector unsigned long long __ATTRS_o_ai
4434 vec_mule(vector unsigned int __a, vector unsigned int __b) { in vec_mule()
4445 static __inline__ vector short __attribute__((__always_inline__))
4446 vec_vmulesb(vector signed char __a, vector signed char __b) { in vec_vmulesb()
4456 static __inline__ vector unsigned short __attribute__((__always_inline__))
4457 vec_vmuleub(vector unsigned char __a, vector unsigned char __b) { in vec_vmuleub()
4467 static __inline__ vector int __attribute__((__always_inline__))
4468 vec_vmulesh(vector short __a, vector short __b) { in vec_vmulesh()
4478 static __inline__ vector unsigned int __attribute__((__always_inline__))
4479 vec_vmuleuh(vector unsigned short __a, vector unsigned short __b) { in vec_vmuleuh()
4489 static __inline__ vector short __ATTRS_o_ai vec_mulo(vector signed char __a, in vec_mulo()
4490 vector signed char __b) { in vec_mulo()
4498 static __inline__ vector unsigned short __ATTRS_o_ai
4499 vec_mulo(vector unsigned char __a, vector unsigned char __b) { in vec_mulo()
4507 static __inline__ vector int __ATTRS_o_ai vec_mulo(vector short __a, in vec_mulo()
4508 vector short __b) { in vec_mulo()
4516 static __inline__ vector unsigned int __ATTRS_o_ai
4517 vec_mulo(vector unsigned short __a, vector unsigned short __b) { in vec_mulo()
4526 static __inline__ vector signed long long __ATTRS_o_ai
4527 vec_mulo(vector signed int __a, vector signed int __b) { in vec_mulo()
4535 static __inline__ vector unsigned long long __ATTRS_o_ai
4536 vec_mulo(vector unsigned int __a, vector unsigned int __b) { in vec_mulo()
4547 static __inline__ vector short __attribute__((__always_inline__))
4548 vec_vmulosb(vector signed char __a, vector signed char __b) { in vec_vmulosb()
4558 static __inline__ vector unsigned short __attribute__((__always_inline__))
4559 vec_vmuloub(vector unsigned char __a, vector unsigned char __b) { in vec_vmuloub()
4569 static __inline__ vector int __attribute__((__always_inline__))
4570 vec_vmulosh(vector short __a, vector short __b) { in vec_vmulosh()
4580 static __inline__ vector unsigned int __attribute__((__always_inline__))
4581 vec_vmulouh(vector unsigned short __a, vector unsigned short __b) { in vec_vmulouh()
4592 static __inline__ vector signed char __ATTRS_o_ai
4593 vec_nand(vector signed char __a, vector signed char __b) { in vec_nand()
4597 static __inline__ vector signed char __ATTRS_o_ai
4598 vec_nand(vector signed char __a, vector bool char __b) { in vec_nand()
4602 static __inline__ vector signed char __ATTRS_o_ai
4603 vec_nand(vector bool char __a, vector signed char __b) { in vec_nand()
4607 static __inline__ vector unsigned char __ATTRS_o_ai
4608 vec_nand(vector unsigned char __a, vector unsigned char __b) { in vec_nand()
4612 static __inline__ vector unsigned char __ATTRS_o_ai
4613 vec_nand(vector unsigned char __a, vector bool char __b) { in vec_nand()
4617 static __inline__ vector unsigned char __ATTRS_o_ai
4618 vec_nand(vector bool char __a, vector unsigned char __b) { in vec_nand()
4622 static __inline__ vector bool char __ATTRS_o_ai vec_nand(vector bool char __a, in vec_nand()
4623 vector bool char __b) { in vec_nand()
4627 static __inline__ vector signed short __ATTRS_o_ai
4628 vec_nand(vector signed short __a, vector signed short __b) { in vec_nand()
4632 static __inline__ vector signed short __ATTRS_o_ai
4633 vec_nand(vector signed short __a, vector bool short __b) { in vec_nand()
4637 static __inline__ vector signed short __ATTRS_o_ai
4638 vec_nand(vector bool short __a, vector signed short __b) { in vec_nand()
4642 static __inline__ vector unsigned short __ATTRS_o_ai
4643 vec_nand(vector unsigned short __a, vector unsigned short __b) { in vec_nand()
4647 static __inline__ vector unsigned short __ATTRS_o_ai
4648 vec_nand(vector unsigned short __a, vector bool short __b) { in vec_nand()
4652 static __inline__ vector bool short __ATTRS_o_ai
4653 vec_nand(vector bool short __a, vector bool short __b) { in vec_nand()
4657 static __inline__ vector signed int __ATTRS_o_ai
4658 vec_nand(vector signed int __a, vector signed int __b) { in vec_nand()
4662 static __inline__ vector signed int __ATTRS_o_ai vec_nand(vector signed int __a, in vec_nand()
4663 vector bool int __b) { in vec_nand()
4667 static __inline__ vector signed int __ATTRS_o_ai
4668 vec_nand(vector bool int __a, vector signed int __b) { in vec_nand()
4672 static __inline__ vector unsigned int __ATTRS_o_ai
4673 vec_nand(vector unsigned int __a, vector unsigned int __b) { in vec_nand()
4677 static __inline__ vector unsigned int __ATTRS_o_ai
4678 vec_nand(vector unsigned int __a, vector bool int __b) { in vec_nand()
4682 static __inline__ vector unsigned int __ATTRS_o_ai
4683 vec_nand(vector bool int __a, vector unsigned int __b) { in vec_nand()
4687 static __inline__ vector bool int __ATTRS_o_ai vec_nand(vector bool int __a, in vec_nand()
4688 vector bool int __b) { in vec_nand()
4692 static __inline__ vector signed long long __ATTRS_o_ai
4693 vec_nand(vector signed long long __a, vector signed long long __b) { in vec_nand()
4697 static __inline__ vector signed long long __ATTRS_o_ai
4698 vec_nand(vector signed long long __a, vector bool long long __b) { in vec_nand()
4702 static __inline__ vector signed long long __ATTRS_o_ai
4703 vec_nand(vector bool long long __a, vector signed long long __b) { in vec_nand()
4707 static __inline__ vector unsigned long long __ATTRS_o_ai
4708 vec_nand(vector unsigned long long __a, vector unsigned long long __b) { in vec_nand()
4712 static __inline__ vector unsigned long long __ATTRS_o_ai
4713 vec_nand(vector unsigned long long __a, vector bool long long __b) { in vec_nand()
4717 static __inline__ vector unsigned long long __ATTRS_o_ai
4718 vec_nand(vector bool long long __a, vector unsigned long long __b) { in vec_nand()
4722 static __inline__ vector bool long long __ATTRS_o_ai
4723 vec_nand(vector bool long long __a, vector bool long long __b) { in vec_nand()
4732 static __inline__ vector float __ATTRS_o_ai vec_nmadd(vector float __a, in vec_nmadd()
4733 vector float __b, in vec_nmadd()
4734 vector float __c) { in vec_nmadd()
4738 static __inline__ vector double __ATTRS_o_ai vec_nmadd(vector double __a, in vec_nmadd()
4739 vector double __b, in vec_nmadd()
4740 vector double __c) { in vec_nmadd()
4747 static __inline__ vector float __ATTRS_o_ai vec_nmsub(vector float __a, in vec_nmsub()
4748 vector float __b, in vec_nmsub()
4749 vector float __c) { in vec_nmsub()
4758 static __inline__ vector double __ATTRS_o_ai vec_nmsub(vector double __a, in vec_nmsub()
4759 vector double __b, in vec_nmsub()
4760 vector double __c) { in vec_nmsub()
4767 static __inline__ vector float __attribute__((__always_inline__))
4768 vec_vnmsubfp(vector float __a, vector float __b, vector float __c) { in vec_vnmsubfp()
4776 static __inline__ vector signed char __ATTRS_o_ai
4777 vec_nor(vector signed char __a, vector signed char __b) { in vec_nor()
4781 static __inline__ vector unsigned char __ATTRS_o_ai
4782 vec_nor(vector unsigned char __a, vector unsigned char __b) { in vec_nor()
4786 static __inline__ vector bool char __ATTRS_o_ai vec_nor(vector bool char __a, in vec_nor()
4787 vector bool char __b) { in vec_nor()
4791 static __inline__ vector short __ATTRS_o_ai vec_nor(vector short __a, in vec_nor()
4792 vector short __b) { in vec_nor()
4796 static __inline__ vector unsigned short __ATTRS_o_ai
4797 vec_nor(vector unsigned short __a, vector unsigned short __b) { in vec_nor()
4801 static __inline__ vector bool short __ATTRS_o_ai
4802 vec_nor(vector bool short __a, vector bool short __b) { in vec_nor()
4806 static __inline__ vector int __ATTRS_o_ai vec_nor(vector int __a, in vec_nor()
4807 vector int __b) { in vec_nor()
4811 static __inline__ vector unsigned int __ATTRS_o_ai
4812 vec_nor(vector unsigned int __a, vector unsigned int __b) { in vec_nor()
4816 static __inline__ vector bool int __ATTRS_o_ai vec_nor(vector bool int __a, in vec_nor()
4817 vector bool int __b) { in vec_nor()
4821 static __inline__ vector float __ATTRS_o_ai vec_nor(vector float __a, in vec_nor()
4822 vector float __b) { in vec_nor()
4823 vector unsigned int __res = in vec_nor()
4824 ~((vector unsigned int)__a | (vector unsigned int)__b); in vec_nor()
4825 return (vector float)__res; in vec_nor()
4829 static __inline__ vector double __ATTRS_o_ai vec_nor(vector double __a, in vec_nor()
4830 vector double __b) { in vec_nor()
4831 vector unsigned long long __res = in vec_nor()
4832 ~((vector unsigned long long)__a | (vector unsigned long long)__b); in vec_nor()
4833 return (vector double)__res; in vec_nor()
4839 static __inline__ vector signed char __ATTRS_o_ai
4840 vec_vnor(vector signed char __a, vector signed char __b) { in vec_vnor()
4844 static __inline__ vector unsigned char __ATTRS_o_ai
4845 vec_vnor(vector unsigned char __a, vector unsigned char __b) { in vec_vnor()
4849 static __inline__ vector bool char __ATTRS_o_ai vec_vnor(vector bool char __a, in vec_vnor()
4850 vector bool char __b) { in vec_vnor()
4854 static __inline__ vector short __ATTRS_o_ai vec_vnor(vector short __a, in vec_vnor()
4855 vector short __b) { in vec_vnor()
4859 static __inline__ vector unsigned short __ATTRS_o_ai
4860 vec_vnor(vector unsigned short __a, vector unsigned short __b) { in vec_vnor()
4864 static __inline__ vector bool short __ATTRS_o_ai
4865 vec_vnor(vector bool short __a, vector bool short __b) { in vec_vnor()
4869 static __inline__ vector int __ATTRS_o_ai vec_vnor(vector int __a, in vec_vnor()
4870 vector int __b) { in vec_vnor()
4874 static __inline__ vector unsigned int __ATTRS_o_ai
4875 vec_vnor(vector unsigned int __a, vector unsigned int __b) { in vec_vnor()
4879 static __inline__ vector bool int __ATTRS_o_ai vec_vnor(vector bool int __a, in vec_vnor()
4880 vector bool int __b) { in vec_vnor()
4884 static __inline__ vector float __ATTRS_o_ai vec_vnor(vector float __a, in vec_vnor()
4885 vector float __b) { in vec_vnor()
4886 vector unsigned int __res = in vec_vnor()
4887 ~((vector unsigned int)__a | (vector unsigned int)__b); in vec_vnor()
4888 return (vector float)__res; in vec_vnor()
4892 static __inline__ vector signed long long __ATTRS_o_ai
4893 vec_nor(vector signed long long __a, vector signed long long __b) { in vec_nor()
4897 static __inline__ vector unsigned long long __ATTRS_o_ai
4898 vec_nor(vector unsigned long long __a, vector unsigned long long __b) { in vec_nor()
4902 static __inline__ vector bool long long __ATTRS_o_ai
4903 vec_nor(vector bool long long __a, vector bool long long __b) { in vec_nor()
4912 static __inline__ vector signed char __ATTRS_o_ai
4913 vec_or(vector signed char __a, vector signed char __b) { in vec_or()
4917 static __inline__ vector signed char __ATTRS_o_ai
4918 vec_or(vector bool char __a, vector signed char __b) { in vec_or()
4919 return (vector signed char)__a | __b; in vec_or()
4922 static __inline__ vector signed char __ATTRS_o_ai vec_or(vector signed char __a, in vec_or()
4923 vector bool char __b) { in vec_or()
4924 return __a | (vector signed char)__b; in vec_or()
4927 static __inline__ vector unsigned char __ATTRS_o_ai
4928 vec_or(vector unsigned char __a, vector unsigned char __b) { in vec_or()
4932 static __inline__ vector unsigned char __ATTRS_o_ai
4933 vec_or(vector bool char __a, vector unsigned char __b) { in vec_or()
4934 return (vector unsigned char)__a | __b; in vec_or()
4937 static __inline__ vector unsigned char __ATTRS_o_ai
4938 vec_or(vector unsigned char __a, vector bool char __b) { in vec_or()
4939 return __a | (vector unsigned char)__b; in vec_or()
4942 static __inline__ vector bool char __ATTRS_o_ai vec_or(vector bool char __a, in vec_or()
4943 vector bool char __b) { in vec_or()
4947 static __inline__ vector short __ATTRS_o_ai vec_or(vector short __a, in vec_or()
4948 vector short __b) { in vec_or()
4952 static __inline__ vector short __ATTRS_o_ai vec_or(vector bool short __a, in vec_or()
4953 vector short __b) { in vec_or()
4954 return (vector short)__a | __b; in vec_or()
4957 static __inline__ vector short __ATTRS_o_ai vec_or(vector short __a, in vec_or()
4958 vector bool short __b) { in vec_or()
4959 return __a | (vector short)__b; in vec_or()
4962 static __inline__ vector unsigned short __ATTRS_o_ai
4963 vec_or(vector unsigned short __a, vector unsigned short __b) { in vec_or()
4967 static __inline__ vector unsigned short __ATTRS_o_ai
4968 vec_or(vector bool short __a, vector unsigned short __b) { in vec_or()
4969 return (vector unsigned short)__a | __b; in vec_or()
4972 static __inline__ vector unsigned short __ATTRS_o_ai
4973 vec_or(vector unsigned short __a, vector bool short __b) { in vec_or()
4974 return __a | (vector unsigned short)__b; in vec_or()
4977 static __inline__ vector bool short __ATTRS_o_ai vec_or(vector bool short __a, in vec_or()
4978 vector bool short __b) { in vec_or()
4982 static __inline__ vector int __ATTRS_o_ai vec_or(vector int __a, in vec_or()
4983 vector int __b) { in vec_or()
4987 static __inline__ vector int __ATTRS_o_ai vec_or(vector bool int __a, in vec_or()
4988 vector int __b) { in vec_or()
4989 return (vector int)__a | __b; in vec_or()
4992 static __inline__ vector int __ATTRS_o_ai vec_or(vector int __a, in vec_or()
4993 vector bool int __b) { in vec_or()
4994 return __a | (vector int)__b; in vec_or()
4997 static __inline__ vector unsigned int __ATTRS_o_ai
4998 vec_or(vector unsigned int __a, vector unsigned int __b) { in vec_or()
5002 static __inline__ vector unsigned int __ATTRS_o_ai
5003 vec_or(vector bool int __a, vector unsigned int __b) { in vec_or()
5004 return (vector unsigned int)__a | __b; in vec_or()
5007 static __inline__ vector unsigned int __ATTRS_o_ai
5008 vec_or(vector unsigned int __a, vector bool int __b) { in vec_or()
5009 return __a | (vector unsigned int)__b; in vec_or()
5012 static __inline__ vector bool int __ATTRS_o_ai vec_or(vector bool int __a, in vec_or()
5013 vector bool int __b) { in vec_or()
5017 static __inline__ vector float __ATTRS_o_ai vec_or(vector float __a, in vec_or()
5018 vector float __b) { in vec_or()
5019 vector unsigned int __res = in vec_or()
5020 (vector unsigned int)__a | (vector unsigned int)__b; in vec_or()
5021 return (vector float)__res; in vec_or()
5024 static __inline__ vector float __ATTRS_o_ai vec_or(vector bool int __a, in vec_or()
5025 vector float __b) { in vec_or()
5026 vector unsigned int __res = in vec_or()
5027 (vector unsigned int)__a | (vector unsigned int)__b; in vec_or()
5028 return (vector float)__res; in vec_or()
5031 static __inline__ vector float __ATTRS_o_ai vec_or(vector float __a, in vec_or()
5032 vector bool int __b) { in vec_or()
5033 vector unsigned int __res = in vec_or()
5034 (vector unsigned int)__a | (vector unsigned int)__b; in vec_or()
5035 return (vector float)__res; in vec_or()
5039 static __inline__ vector double __ATTRS_o_ai vec_or(vector bool long long __a, in vec_or()
5040 vector double __b) { in vec_or()
5041 return (vector unsigned long long)__a | (vector unsigned long long)__b; in vec_or()
5044 static __inline__ vector double __ATTRS_o_ai vec_or(vector double __a, in vec_or()
5045 vector bool long long __b) { in vec_or()
5046 return (vector unsigned long long)__a | (vector unsigned long long)__b; in vec_or()
5049 static __inline__ vector double __ATTRS_o_ai vec_or(vector double __a, in vec_or()
5050 vector double __b) { in vec_or()
5051 vector unsigned long long __res = in vec_or()
5052 (vector unsigned long long)__a | (vector unsigned long long)__b; in vec_or()
5053 return (vector double)__res; in vec_or()
5056 static __inline__ vector signed long long __ATTRS_o_ai
5057 vec_or(vector signed long long __a, vector signed long long __b) { in vec_or()
5061 static __inline__ vector signed long long __ATTRS_o_ai
5062 vec_or(vector bool long long __a, vector signed long long __b) { in vec_or()
5063 return (vector signed long long)__a | __b; in vec_or()
5066 static __inline__ vector signed long long __ATTRS_o_ai
5067 vec_or(vector signed long long __a, vector bool long long __b) { in vec_or()
5068 return __a | (vector signed long long)__b; in vec_or()
5071 static __inline__ vector unsigned long long __ATTRS_o_ai
5072 vec_or(vector unsigned long long __a, vector unsigned long long __b) { in vec_or()
5076 static __inline__ vector unsigned long long __ATTRS_o_ai
5077 vec_or(vector bool long long __a, vector unsigned long long __b) { in vec_or()
5078 return (vector unsigned long long)__a | __b; in vec_or()
5081 static __inline__ vector unsigned long long __ATTRS_o_ai
5082 vec_or(vector unsigned long long __a, vector bool long long __b) { in vec_or()
5083 return __a | (vector unsigned long long)__b; in vec_or()
5086 static __inline__ vector bool long long __ATTRS_o_ai
5087 vec_or(vector bool long long __a, vector bool long long __b) { in vec_or()
5093 static __inline__ vector signed char __ATTRS_o_ai
5094 vec_orc(vector signed char __a, vector signed char __b) { in vec_orc()
5098 static __inline__ vector signed char __ATTRS_o_ai
5099 vec_orc(vector signed char __a, vector bool char __b) { in vec_orc()
5103 static __inline__ vector signed char __ATTRS_o_ai
5104 vec_orc(vector bool char __a, vector signed char __b) { in vec_orc()
5108 static __inline__ vector unsigned char __ATTRS_o_ai
5109 vec_orc(vector unsigned char __a, vector unsigned char __b) { in vec_orc()
5113 static __inline__ vector unsigned char __ATTRS_o_ai
5114 vec_orc(vector unsigned char __a, vector bool char __b) { in vec_orc()
5118 static __inline__ vector unsigned char __ATTRS_o_ai
5119 vec_orc(vector bool char __a, vector unsigned char __b) { in vec_orc()
5123 static __inline__ vector bool char __ATTRS_o_ai vec_orc(vector bool char __a, in vec_orc()
5124 vector bool char __b) { in vec_orc()
5128 static __inline__ vector signed short __ATTRS_o_ai
5129 vec_orc(vector signed short __a, vector signed short __b) { in vec_orc()
5133 static __inline__ vector signed short __ATTRS_o_ai
5134 vec_orc(vector signed short __a, vector bool short __b) { in vec_orc()
5138 static __inline__ vector signed short __ATTRS_o_ai
5139 vec_orc(vector bool short __a, vector signed short __b) { in vec_orc()
5143 static __inline__ vector unsigned short __ATTRS_o_ai
5144 vec_orc(vector unsigned short __a, vector unsigned short __b) { in vec_orc()
5148 static __inline__ vector unsigned short __ATTRS_o_ai
5149 vec_orc(vector unsigned short __a, vector bool short __b) { in vec_orc()
5153 static __inline__ vector unsigned short __ATTRS_o_ai
5154 vec_orc(vector bool short __a, vector unsigned short __b) { in vec_orc()
5158 static __inline__ vector bool short __ATTRS_o_ai
5159 vec_orc(vector bool short __a, vector bool short __b) { in vec_orc()
5163 static __inline__ vector signed int __ATTRS_o_ai
5164 vec_orc(vector signed int __a, vector signed int __b) { in vec_orc()
5168 static __inline__ vector signed int __ATTRS_o_ai vec_orc(vector signed int __a, in vec_orc()
5169 vector bool int __b) { in vec_orc()
5173 static __inline__ vector signed int __ATTRS_o_ai
5174 vec_orc(vector bool int __a, vector signed int __b) { in vec_orc()
5178 static __inline__ vector unsigned int __ATTRS_o_ai
5179 vec_orc(vector unsigned int __a, vector unsigned int __b) { in vec_orc()
5183 static __inline__ vector unsigned int __ATTRS_o_ai
5184 vec_orc(vector unsigned int __a, vector bool int __b) { in vec_orc()
5188 static __inline__ vector unsigned int __ATTRS_o_ai
5189 vec_orc(vector bool int __a, vector unsigned int __b) { in vec_orc()
5193 static __inline__ vector bool int __ATTRS_o_ai vec_orc(vector bool int __a, in vec_orc()
5194 vector bool int __b) { in vec_orc()
5198 static __inline__ vector signed long long __ATTRS_o_ai
5199 vec_orc(vector signed long long __a, vector signed long long __b) { in vec_orc()
5203 static __inline__ vector signed long long __ATTRS_o_ai
5204 vec_orc(vector signed long long __a, vector bool long long __b) { in vec_orc()
5208 static __inline__ vector signed long long __ATTRS_o_ai
5209 vec_orc(vector bool long long __a, vector signed long long __b) { in vec_orc()
5213 static __inline__ vector unsigned long long __ATTRS_o_ai
5214 vec_orc(vector unsigned long long __a, vector unsigned long long __b) { in vec_orc()
5218 static __inline__ vector unsigned long long __ATTRS_o_ai
5219 vec_orc(vector unsigned long long __a, vector bool long long __b) { in vec_orc()
5223 static __inline__ vector unsigned long long __ATTRS_o_ai
5224 vec_orc(vector bool long long __a, vector unsigned long long __b) { in vec_orc()
5228 static __inline__ vector bool long long __ATTRS_o_ai
5229 vec_orc(vector bool long long __a, vector bool long long __b) { in vec_orc()
5236 static __inline__ vector signed char __ATTRS_o_ai
5237 vec_vor(vector signed char __a, vector signed char __b) { in vec_vor()
5241 static __inline__ vector signed char __ATTRS_o_ai
5242 vec_vor(vector bool char __a, vector signed char __b) { in vec_vor()
5243 return (vector signed char)__a | __b; in vec_vor()
5246 static __inline__ vector signed char __ATTRS_o_ai
5247 vec_vor(vector signed char __a, vector bool char __b) { in vec_vor()
5248 return __a | (vector signed char)__b; in vec_vor()
5251 static __inline__ vector unsigned char __ATTRS_o_ai
5252 vec_vor(vector unsigned char __a, vector unsigned char __b) { in vec_vor()
5256 static __inline__ vector unsigned char __ATTRS_o_ai
5257 vec_vor(vector bool char __a, vector unsigned char __b) { in vec_vor()
5258 return (vector unsigned char)__a | __b; in vec_vor()
5261 static __inline__ vector unsigned char __ATTRS_o_ai
5262 vec_vor(vector unsigned char __a, vector bool char __b) { in vec_vor()
5263 return __a | (vector unsigned char)__b; in vec_vor()
5266 static __inline__ vector bool char __ATTRS_o_ai vec_vor(vector bool char __a, in vec_vor()
5267 vector bool char __b) { in vec_vor()
5271 static __inline__ vector short __ATTRS_o_ai vec_vor(vector short __a, in vec_vor()
5272 vector short __b) { in vec_vor()
5276 static __inline__ vector short __ATTRS_o_ai vec_vor(vector bool short __a, in vec_vor()
5277 vector short __b) { in vec_vor()
5278 return (vector short)__a | __b; in vec_vor()
5281 static __inline__ vector short __ATTRS_o_ai vec_vor(vector short __a, in vec_vor()
5282 vector bool short __b) { in vec_vor()
5283 return __a | (vector short)__b; in vec_vor()
5286 static __inline__ vector unsigned short __ATTRS_o_ai
5287 vec_vor(vector unsigned short __a, vector unsigned short __b) { in vec_vor()
5291 static __inline__ vector unsigned short __ATTRS_o_ai
5292 vec_vor(vector bool short __a, vector unsigned short __b) { in vec_vor()
5293 return (vector unsigned short)__a | __b; in vec_vor()
5296 static __inline__ vector unsigned short __ATTRS_o_ai
5297 vec_vor(vector unsigned short __a, vector bool short __b) { in vec_vor()
5298 return __a | (vector unsigned short)__b; in vec_vor()
5301 static __inline__ vector bool short __ATTRS_o_ai
5302 vec_vor(vector bool short __a, vector bool short __b) { in vec_vor()
5306 static __inline__ vector int __ATTRS_o_ai vec_vor(vector int __a, in vec_vor()
5307 vector int __b) { in vec_vor()
5311 static __inline__ vector int __ATTRS_o_ai vec_vor(vector bool int __a, in vec_vor()
5312 vector int __b) { in vec_vor()
5313 return (vector int)__a | __b; in vec_vor()
5316 static __inline__ vector int __ATTRS_o_ai vec_vor(vector int __a, in vec_vor()
5317 vector bool int __b) { in vec_vor()
5318 return __a | (vector int)__b; in vec_vor()
5321 static __inline__ vector unsigned int __ATTRS_o_ai
5322 vec_vor(vector unsigned int __a, vector unsigned int __b) { in vec_vor()
5326 static __inline__ vector unsigned int __ATTRS_o_ai
5327 vec_vor(vector bool int __a, vector unsigned int __b) { in vec_vor()
5328 return (vector unsigned int)__a | __b; in vec_vor()
5331 static __inline__ vector unsigned int __ATTRS_o_ai
5332 vec_vor(vector unsigned int __a, vector bool int __b) { in vec_vor()
5333 return __a | (vector unsigned int)__b; in vec_vor()
5336 static __inline__ vector bool int __ATTRS_o_ai vec_vor(vector bool int __a, in vec_vor()
5337 vector bool int __b) { in vec_vor()
5341 static __inline__ vector float __ATTRS_o_ai vec_vor(vector float __a, in vec_vor()
5342 vector float __b) { in vec_vor()
5343 vector unsigned int __res = in vec_vor()
5344 (vector unsigned int)__a | (vector unsigned int)__b; in vec_vor()
5345 return (vector float)__res; in vec_vor()
5348 static __inline__ vector float __ATTRS_o_ai vec_vor(vector bool int __a, in vec_vor()
5349 vector float __b) { in vec_vor()
5350 vector unsigned int __res = in vec_vor()
5351 (vector unsigned int)__a | (vector unsigned int)__b; in vec_vor()
5352 return (vector float)__res; in vec_vor()
5355 static __inline__ vector float __ATTRS_o_ai vec_vor(vector float __a, in vec_vor()
5356 vector bool int __b) { in vec_vor()
5357 vector unsigned int __res = in vec_vor()
5358 (vector unsigned int)__a | (vector unsigned int)__b; in vec_vor()
5359 return (vector float)__res; in vec_vor()
5363 static __inline__ vector signed long long __ATTRS_o_ai
5364 vec_vor(vector signed long long __a, vector signed long long __b) { in vec_vor()
5368 static __inline__ vector signed long long __ATTRS_o_ai
5369 vec_vor(vector bool long long __a, vector signed long long __b) { in vec_vor()
5370 return (vector signed long long)__a | __b; in vec_vor()
5373 static __inline__ vector signed long long __ATTRS_o_ai
5374 vec_vor(vector signed long long __a, vector bool long long __b) { in vec_vor()
5375 return __a | (vector signed long long)__b; in vec_vor()
5378 static __inline__ vector unsigned long long __ATTRS_o_ai
5379 vec_vor(vector unsigned long long __a, vector unsigned long long __b) { in vec_vor()
5383 static __inline__ vector unsigned long long __ATTRS_o_ai
5384 vec_vor(vector bool long long __a, vector unsigned long long __b) { in vec_vor()
5385 return (vector unsigned long long)__a | __b; in vec_vor()
5388 static __inline__ vector unsigned long long __ATTRS_o_ai
5389 vec_vor(vector unsigned long long __a, vector bool long long __b) { in vec_vor()
5390 return __a | (vector unsigned long long)__b; in vec_vor()
5393 static __inline__ vector bool long long __ATTRS_o_ai
5394 vec_vor(vector bool long long __a, vector bool long long __b) { in vec_vor()
5404 static __inline__ vector signed char __ATTRS_o_ai
5405 vec_pack(vector signed short __a, vector signed short __b) { in vec_pack()
5407 return (vector signed char)vec_perm( in vec_pack()
5409 (vector unsigned char)(0x00, 0x02, 0x04, 0x06, 0x08, 0x0A, 0x0C, 0x0E, in vec_pack()
5412 return (vector signed char)vec_perm( in vec_pack()
5414 (vector unsigned char)(0x01, 0x03, 0x05, 0x07, 0x09, 0x0B, 0x0D, 0x0F, in vec_pack()
5419 static __inline__ vector unsigned char __ATTRS_o_ai
5420 vec_pack(vector unsigned short __a, vector unsigned short __b) { in vec_pack()
5422 return (vector unsigned char)vec_perm( in vec_pack()
5424 (vector unsigned char)(0x00, 0x02, 0x04, 0x06, 0x08, 0x0A, 0x0C, 0x0E, in vec_pack()
5427 return (vector unsigned char)vec_perm( in vec_pack()
5429 (vector unsigned char)(0x01, 0x03, 0x05, 0x07, 0x09, 0x0B, 0x0D, 0x0F, in vec_pack()
5434 static __inline__ vector bool char __ATTRS_o_ai
5435 vec_pack(vector bool short __a, vector bool short __b) { in vec_pack()
5437 return (vector bool char)vec_perm( in vec_pack()
5439 (vector unsigned char)(0x00, 0x02, 0x04, 0x06, 0x08, 0x0A, 0x0C, 0x0E, in vec_pack()
5442 return (vector bool char)vec_perm( in vec_pack()
5444 (vector unsigned char)(0x01, 0x03, 0x05, 0x07, 0x09, 0x0B, 0x0D, 0x0F, in vec_pack()
5449 static __inline__ vector short __ATTRS_o_ai vec_pack(vector int __a, in vec_pack()
5450 vector int __b) { in vec_pack()
5452 return (vector short)vec_perm( in vec_pack()
5454 (vector unsigned char)(0x00, 0x01, 0x04, 0x05, 0x08, 0x09, 0x0C, 0x0D, in vec_pack()
5457 return (vector short)vec_perm( in vec_pack()
5459 (vector unsigned char)(0x02, 0x03, 0x06, 0x07, 0x0A, 0x0B, 0x0E, 0x0F, in vec_pack()
5464 static __inline__ vector unsigned short __ATTRS_o_ai
5465 vec_pack(vector unsigned int __a, vector unsigned int __b) { in vec_pack()
5467 return (vector unsigned short)vec_perm( in vec_pack()
5469 (vector unsigned char)(0x00, 0x01, 0x04, 0x05, 0x08, 0x09, 0x0C, 0x0D, in vec_pack()
5472 return (vector unsigned short)vec_perm( in vec_pack()
5474 (vector unsigned char)(0x02, 0x03, 0x06, 0x07, 0x0A, 0x0B, 0x0E, 0x0F, in vec_pack()
5479 static __inline__ vector bool short __ATTRS_o_ai vec_pack(vector bool int __a, in vec_pack()
5480 vector bool int __b) { in vec_pack()
5482 return (vector bool short)vec_perm( in vec_pack()
5484 (vector unsigned char)(0x00, 0x01, 0x04, 0x05, 0x08, 0x09, 0x0C, 0x0D, in vec_pack()
5487 return (vector bool short)vec_perm( in vec_pack()
5489 (vector unsigned char)(0x02, 0x03, 0x06, 0x07, 0x0A, 0x0B, 0x0E, 0x0F, in vec_pack()
5495 static __inline__ vector signed int __ATTRS_o_ai
5496 vec_pack(vector signed long long __a, vector signed long long __b) { in vec_pack()
5498 return (vector signed int)vec_perm( in vec_pack()
5500 (vector unsigned char)(0x00, 0x01, 0x02, 0x03, 0x08, 0x09, 0x0A, 0x0B, in vec_pack()
5503 return (vector signed int)vec_perm( in vec_pack()
5505 (vector unsigned char)(0x04, 0x05, 0x06, 0x07, 0x0C, 0x0D, 0x0E, 0x0F, in vec_pack()
5509 static __inline__ vector unsigned int __ATTRS_o_ai
5510 vec_pack(vector unsigned long long __a, vector unsigned long long __b) { in vec_pack()
5512 return (vector unsigned int)vec_perm( in vec_pack()
5514 (vector unsigned char)(0x00, 0x01, 0x02, 0x03, 0x08, 0x09, 0x0A, 0x0B, in vec_pack()
5517 return (vector unsigned int)vec_perm( in vec_pack()
5519 (vector unsigned char)(0x04, 0x05, 0x06, 0x07, 0x0C, 0x0D, 0x0E, 0x0F, in vec_pack()
5524 static __inline__ vector bool int __ATTRS_o_ai
5525 vec_pack(vector bool long long __a, vector bool long long __b) { in vec_pack()
5527 return (vector bool int)vec_perm( in vec_pack()
5529 (vector unsigned char)(0x00, 0x01, 0x02, 0x03, 0x08, 0x09, 0x0A, 0x0B, in vec_pack()
5532 return (vector bool int)vec_perm( in vec_pack()
5534 (vector unsigned char)(0x04, 0x05, 0x06, 0x07, 0x0C, 0x0D, 0x0E, 0x0F, in vec_pack()
5545 static __inline__ vector signed char __ATTRS_o_ai
5546 vec_vpkuhum(vector signed short __a, vector signed short __b) { in vec_vpkuhum()
5548 return (vector signed char)vec_perm( in vec_vpkuhum()
5550 (vector unsigned char)(0x00, 0x02, 0x04, 0x06, 0x08, 0x0A, 0x0C, 0x0E, in vec_vpkuhum()
5553 return (vector signed char)vec_perm( in vec_vpkuhum()
5555 (vector unsigned char)(0x01, 0x03, 0x05, 0x07, 0x09, 0x0B, 0x0D, 0x0F, in vec_vpkuhum()
5560 static __inline__ vector unsigned char __ATTRS_o_ai
5561 vec_vpkuhum(vector unsigned short __a, vector unsigned short __b) { in vec_vpkuhum()
5563 return (vector unsigned char)vec_perm( in vec_vpkuhum()
5565 (vector unsigned char)(0x00, 0x02, 0x04, 0x06, 0x08, 0x0A, 0x0C, 0x0E, in vec_vpkuhum()
5568 return (vector unsigned char)vec_perm( in vec_vpkuhum()
5570 (vector unsigned char)(0x01, 0x03, 0x05, 0x07, 0x09, 0x0B, 0x0D, 0x0F, in vec_vpkuhum()
5575 static __inline__ vector bool char __ATTRS_o_ai
5576 vec_vpkuhum(vector bool short __a, vector bool short __b) { in vec_vpkuhum()
5578 return (vector bool char)vec_perm( in vec_vpkuhum()
5580 (vector unsigned char)(0x00, 0x02, 0x04, 0x06, 0x08, 0x0A, 0x0C, 0x0E, in vec_vpkuhum()
5583 return (vector bool char)vec_perm( in vec_vpkuhum()
5585 (vector unsigned char)(0x01, 0x03, 0x05, 0x07, 0x09, 0x0B, 0x0D, 0x0F, in vec_vpkuhum()
5594 static __inline__ vector short __ATTRS_o_ai vec_vpkuwum(vector int __a, in vec_vpkuwum()
5595 vector int __b) { in vec_vpkuwum()
5597 return (vector short)vec_perm( in vec_vpkuwum()
5599 (vector unsigned char)(0x00, 0x01, 0x04, 0x05, 0x08, 0x09, 0x0C, 0x0D, in vec_vpkuwum()
5602 return (vector short)vec_perm( in vec_vpkuwum()
5604 (vector unsigned char)(0x02, 0x03, 0x06, 0x07, 0x0A, 0x0B, 0x0E, 0x0F, in vec_vpkuwum()
5609 static __inline__ vector unsigned short __ATTRS_o_ai
5610 vec_vpkuwum(vector unsigned int __a, vector unsigned int __b) { in vec_vpkuwum()
5612 return (vector unsigned short)vec_perm( in vec_vpkuwum()
5614 (vector unsigned char)(0x00, 0x01, 0x04, 0x05, 0x08, 0x09, 0x0C, 0x0D, in vec_vpkuwum()
5617 return (vector unsigned short)vec_perm( in vec_vpkuwum()
5619 (vector unsigned char)(0x02, 0x03, 0x06, 0x07, 0x0A, 0x0B, 0x0E, 0x0F, in vec_vpkuwum()
5624 static __inline__ vector bool short __ATTRS_o_ai
5625 vec_vpkuwum(vector bool int __a, vector bool int __b) { in vec_vpkuwum()
5627 return (vector bool short)vec_perm( in vec_vpkuwum()
5629 (vector unsigned char)(0x00, 0x01, 0x04, 0x05, 0x08, 0x09, 0x0C, 0x0D, in vec_vpkuwum()
5632 return (vector bool short)vec_perm( in vec_vpkuwum()
5634 (vector unsigned char)(0x02, 0x03, 0x06, 0x07, 0x0A, 0x0B, 0x0E, 0x0F, in vec_vpkuwum()
5644 static __inline__ vector int __ATTRS_o_ai vec_vpkudum(vector long long __a, in vec_vpkudum()
5645 vector long long __b) { in vec_vpkudum()
5647 return (vector int)vec_perm( in vec_vpkudum()
5649 (vector unsigned char)(0x00, 0x01, 0x02, 0x03, 0x08, 0x09, 0x0A, 0x0B, in vec_vpkudum()
5652 return (vector int)vec_perm( in vec_vpkudum()
5654 (vector unsigned char)(0x04, 0x05, 0x06, 0x07, 0x0C, 0x0D, 0x0E, 0x0F, in vec_vpkudum()
5659 static __inline__ vector unsigned int __ATTRS_o_ai
5660 vec_vpkudum(vector unsigned long long __a, vector unsigned long long __b) { in vec_vpkudum()
5662 return (vector unsigned int)vec_perm( in vec_vpkudum()
5664 (vector unsigned char)(0x00, 0x01, 0x02, 0x03, 0x08, 0x09, 0x0A, 0x0B, in vec_vpkudum()
5667 return (vector unsigned int)vec_perm( in vec_vpkudum()
5669 (vector unsigned char)(0x04, 0x05, 0x06, 0x07, 0x0C, 0x0D, 0x0E, 0x0F, in vec_vpkudum()
5674 static __inline__ vector bool int __ATTRS_o_ai
5675 vec_vpkudum(vector bool long long __a, vector bool long long __b) { in vec_vpkudum()
5677 return (vector bool int)vec_perm( in vec_vpkudum()
5678 (vector long long)__a, (vector long long)__b, in vec_vpkudum()
5679 (vector unsigned char)(0x00, 0x01, 0x02, 0x03, 0x08, 0x09, 0x0A, 0x0B, in vec_vpkudum()
5682 return (vector bool int)vec_perm( in vec_vpkudum()
5683 (vector long long)__a, (vector long long)__b, in vec_vpkudum()
5684 (vector unsigned char)(0x04, 0x05, 0x06, 0x07, 0x0C, 0x0D, 0x0E, 0x0F, in vec_vpkudum()
5692 static __inline__ vector pixel __attribute__((__always_inline__))
5693 vec_packpx(vector unsigned int __a, vector unsigned int __b) { in vec_packpx()
5695 return (vector pixel)__builtin_altivec_vpkpx(__b, __a); in vec_packpx()
5697 return (vector pixel)__builtin_altivec_vpkpx(__a, __b); in vec_packpx()
5703 static __inline__ vector pixel __attribute__((__always_inline__))
5704 vec_vpkpx(vector unsigned int __a, vector unsigned int __b) { in vec_vpkpx()
5706 return (vector pixel)__builtin_altivec_vpkpx(__b, __a); in vec_vpkpx()
5708 return (vector pixel)__builtin_altivec_vpkpx(__a, __b); in vec_vpkpx()
5714 static __inline__ vector signed char __ATTRS_o_ai vec_packs(vector short __a, in vec_packs()
5715 vector short __b) { in vec_packs()
5723 static __inline__ vector unsigned char __ATTRS_o_ai
5724 vec_packs(vector unsigned short __a, vector unsigned short __b) { in vec_packs()
5732 static __inline__ vector signed short __ATTRS_o_ai vec_packs(vector int __a, in vec_packs()
5733 vector int __b) { in vec_packs()
5741 static __inline__ vector unsigned short __ATTRS_o_ai
5742 vec_packs(vector unsigned int __a, vector unsigned int __b) { in vec_packs()
5751 static __inline__ vector int __ATTRS_o_ai vec_packs(vector long long __a, in vec_packs()
5752 vector long long __b) { in vec_packs()
5760 static __inline__ vector unsigned int __ATTRS_o_ai
5761 vec_packs(vector unsigned long long __a, vector unsigned long long __b) { in vec_packs()
5772 static __inline__ vector signed char __attribute__((__always_inline__))
5773 vec_vpkshss(vector short __a, vector short __b) { in vec_vpkshss()
5784 static __inline__ vector int __ATTRS_o_ai vec_vpksdss(vector long long __a, in vec_vpksdss()
5785 vector long long __b) { in vec_vpksdss()
5796 static __inline__ vector unsigned char __attribute__((__always_inline__))
5797 vec_vpkuhus(vector unsigned short __a, vector unsigned short __b) { in vec_vpkuhus()
5808 static __inline__ vector unsigned int __attribute__((__always_inline__))
5809 vec_vpkudus(vector unsigned long long __a, vector unsigned long long __b) { in vec_vpkudus()
5820 static __inline__ vector signed short __attribute__((__always_inline__))
5821 vec_vpkswss(vector int __a, vector int __b) { in vec_vpkswss()
5831 static __inline__ vector unsigned short __attribute__((__always_inline__))
5832 vec_vpkuwus(vector unsigned int __a, vector unsigned int __b) { in vec_vpkuwus()
5842 static __inline__ vector unsigned char __ATTRS_o_ai
5843 vec_packsu(vector short __a, vector short __b) { in vec_packsu()
5851 static __inline__ vector unsigned char __ATTRS_o_ai
5852 vec_packsu(vector unsigned short __a, vector unsigned short __b) { in vec_packsu()
5860 static __inline__ vector unsigned short __ATTRS_o_ai
5861 vec_packsu(vector int __a, vector int __b) { in vec_packsu()
5869 static __inline__ vector unsigned short __ATTRS_o_ai
5870 vec_packsu(vector unsigned int __a, vector unsigned int __b) { in vec_packsu()
5879 static __inline__ vector unsigned int __ATTRS_o_ai
5880 vec_packsu(vector long long __a, vector long long __b) { in vec_packsu()
5888 static __inline__ vector unsigned int __ATTRS_o_ai
5889 vec_packsu(vector unsigned long long __a, vector unsigned long long __b) { in vec_packsu()
5900 static __inline__ vector unsigned char __ATTRS_o_ai
5901 vec_vpkshus(vector short __a, vector short __b) { in vec_vpkshus()
5909 static __inline__ vector unsigned char __ATTRS_o_ai
5910 vec_vpkshus(vector unsigned short __a, vector unsigned short __b) { in vec_vpkshus()
5920 static __inline__ vector unsigned short __ATTRS_o_ai
5921 vec_vpkswus(vector int __a, vector int __b) { in vec_vpkswus()
5929 static __inline__ vector unsigned short __ATTRS_o_ai
5930 vec_vpkswus(vector unsigned int __a, vector unsigned int __b) { in vec_vpkswus()
5941 static __inline__ vector unsigned int __ATTRS_o_ai
5942 vec_vpksdus(vector long long __a, vector long long __b) { in vec_vpksdus()
5961 static __inline__ vector signed char __ATTRS_o_ai vec_perm( in vec_perm()
5962 vector signed char __a, vector signed char __b, vector unsigned char __c) { in vec_perm()
5964 vector unsigned char __d = {255, 255, 255, 255, 255, 255, 255, 255, in vec_perm()
5967 return (vector signed char)__builtin_altivec_vperm_4si((vector int)__b, in vec_perm()
5968 (vector int)__a, __d); in vec_perm()
5970 return (vector signed char)__builtin_altivec_vperm_4si((vector int)__a, in vec_perm()
5971 (vector int)__b, __c); in vec_perm()
5975 static __inline__ vector unsigned char __ATTRS_o_ai
5976 vec_perm(vector unsigned char __a, vector unsigned char __b, in vec_perm()
5977 vector unsigned char __c) { in vec_perm()
5979 vector unsigned char __d = {255, 255, 255, 255, 255, 255, 255, 255, in vec_perm()
5982 return (vector unsigned char)__builtin_altivec_vperm_4si( in vec_perm()
5983 (vector int)__b, (vector int)__a, __d); in vec_perm()
5985 return (vector unsigned char)__builtin_altivec_vperm_4si( in vec_perm()
5986 (vector int)__a, (vector int)__b, __c); in vec_perm()
5990 static __inline__ vector bool char __ATTRS_o_ai
5991 vec_perm(vector bool char __a, vector bool char __b, vector unsigned char __c) { in vec_perm()
5993 vector unsigned char __d = {255, 255, 255, 255, 255, 255, 255, 255, in vec_perm()
5996 return (vector bool char)__builtin_altivec_vperm_4si((vector int)__b, in vec_perm()
5997 (vector int)__a, __d); in vec_perm()
5999 return (vector bool char)__builtin_altivec_vperm_4si((vector int)__a, in vec_perm()
6000 (vector int)__b, __c); in vec_perm()
6004 static __inline__ vector short __ATTRS_o_ai vec_perm(vector signed short __a, in vec_perm()
6005 vector signed short __b, in vec_perm()
6006 vector unsigned char __c) { in vec_perm()
6008 vector unsigned char __d = {255, 255, 255, 255, 255, 255, 255, 255, in vec_perm()
6011 return (vector signed short)__builtin_altivec_vperm_4si((vector int)__b, in vec_perm()
6012 (vector int)__a, __d); in vec_perm()
6014 return (vector signed short)__builtin_altivec_vperm_4si((vector int)__a, in vec_perm()
6015 (vector int)__b, __c); in vec_perm()
6019 static __inline__ vector unsigned short __ATTRS_o_ai
6020 vec_perm(vector unsigned short __a, vector unsigned short __b, in vec_perm()
6021 vector unsigned char __c) { in vec_perm()
6023 vector unsigned char __d = {255, 255, 255, 255, 255, 255, 255, 255, in vec_perm()
6026 return (vector unsigned short)__builtin_altivec_vperm_4si( in vec_perm()
6027 (vector int)__b, (vector int)__a, __d); in vec_perm()
6029 return (vector unsigned short)__builtin_altivec_vperm_4si( in vec_perm()
6030 (vector int)__a, (vector int)__b, __c); in vec_perm()
6034 static __inline__ vector bool short __ATTRS_o_ai vec_perm( in vec_perm()
6035 vector bool short __a, vector bool short __b, vector unsigned char __c) { in vec_perm()
6037 vector unsigned char __d = {255, 255, 255, 255, 255, 255, 255, 255, in vec_perm()
6040 return (vector bool short)__builtin_altivec_vperm_4si((vector int)__b, in vec_perm()
6041 (vector int)__a, __d); in vec_perm()
6043 return (vector bool short)__builtin_altivec_vperm_4si((vector int)__a, in vec_perm()
6044 (vector int)__b, __c); in vec_perm()
6048 static __inline__ vector pixel __ATTRS_o_ai vec_perm(vector pixel __a, in vec_perm()
6049 vector pixel __b, in vec_perm()
6050 vector unsigned char __c) { in vec_perm()
6052 vector unsigned char __d = {255, 255, 255, 255, 255, 255, 255, 255, in vec_perm()
6055 return (vector pixel)__builtin_altivec_vperm_4si((vector int)__b, in vec_perm()
6056 (vector int)__a, __d); in vec_perm()
6058 return (vector pixel)__builtin_altivec_vperm_4si((vector int)__a, in vec_perm()
6059 (vector int)__b, __c); in vec_perm()
6063 static __inline__ vector int __ATTRS_o_ai vec_perm(vector signed int __a, in vec_perm()
6064 vector signed int __b, in vec_perm()
6065 vector unsigned char __c) { in vec_perm()
6067 vector unsigned char __d = {255, 255, 255, 255, 255, 255, 255, 255, in vec_perm()
6070 return (vector signed int)__builtin_altivec_vperm_4si(__b, __a, __d); in vec_perm()
6072 return (vector signed int)__builtin_altivec_vperm_4si(__a, __b, __c); in vec_perm()
6076 static __inline__ vector unsigned int __ATTRS_o_ai
6077 vec_perm(vector unsigned int __a, vector unsigned int __b, in vec_perm()
6078 vector unsigned char __c) { in vec_perm()
6080 vector unsigned char __d = {255, 255, 255, 255, 255, 255, 255, 255, in vec_perm()
6083 return (vector unsigned int)__builtin_altivec_vperm_4si((vector int)__b, in vec_perm()
6084 (vector int)__a, __d); in vec_perm()
6086 return (vector unsigned int)__builtin_altivec_vperm_4si((vector int)__a, in vec_perm()
6087 (vector int)__b, __c); in vec_perm()
6091 static __inline__ vector bool int __ATTRS_o_ai
6092 vec_perm(vector bool int __a, vector bool int __b, vector unsigned char __c) { in vec_perm()
6094 vector unsigned char __d = {255, 255, 255, 255, 255, 255, 255, 255, in vec_perm()
6097 return (vector bool int)__builtin_altivec_vperm_4si((vector int)__b, in vec_perm()
6098 (vector int)__a, __d); in vec_perm()
6100 return (vector bool int)__builtin_altivec_vperm_4si((vector int)__a, in vec_perm()
6101 (vector int)__b, __c); in vec_perm()
6105 static __inline__ vector float __ATTRS_o_ai vec_perm(vector float __a, in vec_perm()
6106 vector float __b, in vec_perm()
6107 vector unsigned char __c) { in vec_perm()
6109 vector unsigned char __d = {255, 255, 255, 255, 255, 255, 255, 255, in vec_perm()
6112 return (vector float)__builtin_altivec_vperm_4si((vector int)__b, in vec_perm()
6113 (vector int)__a, __d); in vec_perm()
6115 return (vector float)__builtin_altivec_vperm_4si((vector int)__a, in vec_perm()
6116 (vector int)__b, __c); in vec_perm()
6121 static __inline__ vector long long __ATTRS_o_ai
6122 vec_perm(vector signed long long __a, vector signed long long __b, in vec_perm()
6123 vector unsigned char __c) { in vec_perm()
6125 vector unsigned char __d = {255, 255, 255, 255, 255, 255, 255, 255, in vec_perm()
6128 return (vector signed long long)__builtin_altivec_vperm_4si( in vec_perm()
6129 (vector int)__b, (vector int)__a, __d); in vec_perm()
6131 return (vector signed long long)__builtin_altivec_vperm_4si( in vec_perm()
6132 (vector int)__a, (vector int)__b, __c); in vec_perm()
6136 static __inline__ vector unsigned long long __ATTRS_o_ai
6137 vec_perm(vector unsigned long long __a, vector unsigned long long __b, in vec_perm()
6138 vector unsigned char __c) { in vec_perm()
6140 vector unsigned char __d = {255, 255, 255, 255, 255, 255, 255, 255, in vec_perm()
6143 return (vector unsigned long long)__builtin_altivec_vperm_4si( in vec_perm()
6144 (vector int)__b, (vector int)__a, __d); in vec_perm()
6146 return (vector unsigned long long)__builtin_altivec_vperm_4si( in vec_perm()
6147 (vector int)__a, (vector int)__b, __c); in vec_perm()
6151 static __inline__ vector bool long long __ATTRS_o_ai
6152 vec_perm(vector bool long long __a, vector bool long long __b, in vec_perm()
6153 vector unsigned char __c) { in vec_perm()
6155 vector unsigned char __d = {255, 255, 255, 255, 255, 255, 255, 255, in vec_perm()
6158 return (vector bool long long)__builtin_altivec_vperm_4si( in vec_perm()
6159 (vector int)__b, (vector int)__a, __d); in vec_perm()
6161 return (vector bool long long)__builtin_altivec_vperm_4si( in vec_perm()
6162 (vector int)__a, (vector int)__b, __c); in vec_perm()
6166 static __inline__ vector double __ATTRS_o_ai
6167 vec_perm(vector double __a, vector double __b, vector unsigned char __c) { in vec_perm()
6169 vector unsigned char __d = {255, 255, 255, 255, 255, 255, 255, 255, in vec_perm()
6172 return (vector double)__builtin_altivec_vperm_4si((vector int)__b, in vec_perm()
6173 (vector int)__a, __d); in vec_perm()
6175 return (vector double)__builtin_altivec_vperm_4si((vector int)__a, in vec_perm()
6176 (vector int)__b, __c); in vec_perm()
6183 static __inline__ vector signed char __ATTRS_o_ai vec_vperm( in vec_vperm()
6184 vector signed char __a, vector signed char __b, vector unsigned char __c) { in vec_vperm()
6188 static __inline__ vector unsigned char __ATTRS_o_ai
6189 vec_vperm(vector unsigned char __a, vector unsigned char __b, in vec_vperm()
6190 vector unsigned char __c) { in vec_vperm()
6194 static __inline__ vector bool char __ATTRS_o_ai vec_vperm( in vec_vperm()
6195 vector bool char __a, vector bool char __b, vector unsigned char __c) { in vec_vperm()
6199 static __inline__ vector short __ATTRS_o_ai
6200 vec_vperm(vector short __a, vector short __b, vector unsigned char __c) { in vec_vperm()
6204 static __inline__ vector unsigned short __ATTRS_o_ai
6205 vec_vperm(vector unsigned short __a, vector unsigned short __b, in vec_vperm()
6206 vector unsigned char __c) { in vec_vperm()
6210 static __inline__ vector bool short __ATTRS_o_ai vec_vperm( in vec_vperm()
6211 vector bool short __a, vector bool short __b, vector unsigned char __c) { in vec_vperm()
6215 static __inline__ vector pixel __ATTRS_o_ai
6216 vec_vperm(vector pixel __a, vector pixel __b, vector unsigned char __c) { in vec_vperm()
6220 static __inline__ vector int __ATTRS_o_ai vec_vperm(vector int __a, in vec_vperm()
6221 vector int __b, in vec_vperm()
6222 vector unsigned char __c) { in vec_vperm()
6226 static __inline__ vector unsigned int __ATTRS_o_ai
6227 vec_vperm(vector unsigned int __a, vector unsigned int __b, in vec_vperm()
6228 vector unsigned char __c) { in vec_vperm()
6232 static __inline__ vector bool int __ATTRS_o_ai
6233 vec_vperm(vector bool int __a, vector bool int __b, vector unsigned char __c) { in vec_vperm()
6237 static __inline__ vector float __ATTRS_o_ai
6238 vec_vperm(vector float __a, vector float __b, vector unsigned char __c) { in vec_vperm()
6243 static __inline__ vector long long __ATTRS_o_ai vec_vperm( in vec_vperm()
6244 vector long long __a, vector long long __b, vector unsigned char __c) { in vec_vperm()
6248 static __inline__ vector unsigned long long __ATTRS_o_ai
6249 vec_vperm(vector unsigned long long __a, vector unsigned long long __b, in vec_vperm()
6250 vector unsigned char __c) { in vec_vperm()
6254 static __inline__ vector double __ATTRS_o_ai
6255 vec_vperm(vector double __a, vector double __b, vector unsigned char __c) { in vec_vperm()
6262 static __inline__ vector float __ATTRS_o_ai vec_re(vector float __a) { in vec_re()
6271 static __inline__ vector double __ATTRS_o_ai vec_re(vector double __a) { in vec_re()
6278 static __inline__ vector float __attribute__((__always_inline__))
6279 vec_vrefp(vector float __a) { in vec_vrefp()
6285 static __inline__ vector signed char __ATTRS_o_ai
6286 vec_rl(vector signed char __a, vector unsigned char __b) { in vec_rl()
6287 return (vector signed char)__builtin_altivec_vrlb((vector char)__a, __b); in vec_rl()
6290 static __inline__ vector unsigned char __ATTRS_o_ai
6291 vec_rl(vector unsigned char __a, vector unsigned char __b) { in vec_rl()
6292 return (vector unsigned char)__builtin_altivec_vrlb((vector char)__a, __b); in vec_rl()
6295 static __inline__ vector short __ATTRS_o_ai vec_rl(vector short __a, in vec_rl()
6296 vector unsigned short __b) { in vec_rl()
6300 static __inline__ vector unsigned short __ATTRS_o_ai
6301 vec_rl(vector unsigned short __a, vector unsigned short __b) { in vec_rl()
6302 return (vector unsigned short)__builtin_altivec_vrlh((vector short)__a, __b); in vec_rl()
6305 static __inline__ vector int __ATTRS_o_ai vec_rl(vector int __a, in vec_rl()
6306 vector unsigned int __b) { in vec_rl()
6310 static __inline__ vector unsigned int __ATTRS_o_ai
6311 vec_rl(vector unsigned int __a, vector unsigned int __b) { in vec_rl()
6312 return (vector unsigned int)__builtin_altivec_vrlw((vector int)__a, __b); in vec_rl()
6316 static __inline__ vector signed long long __ATTRS_o_ai
6317 vec_rl(vector signed long long __a, vector unsigned long long __b) { in vec_rl()
6321 static __inline__ vector unsigned long long __ATTRS_o_ai
6322 vec_rl(vector unsigned long long __a, vector unsigned long long __b) { in vec_rl()
6329 static __inline__ vector signed char __ATTRS_o_ai
6330 vec_vrlb(vector signed char __a, vector unsigned char __b) { in vec_vrlb()
6331 return (vector signed char)__builtin_altivec_vrlb((vector char)__a, __b); in vec_vrlb()
6334 static __inline__ vector unsigned char __ATTRS_o_ai
6335 vec_vrlb(vector unsigned char __a, vector unsigned char __b) { in vec_vrlb()
6336 return (vector unsigned char)__builtin_altivec_vrlb((vector char)__a, __b); in vec_vrlb()
6341 static __inline__ vector short __ATTRS_o_ai
6342 vec_vrlh(vector short __a, vector unsigned short __b) { in vec_vrlh()
6346 static __inline__ vector unsigned short __ATTRS_o_ai
6347 vec_vrlh(vector unsigned short __a, vector unsigned short __b) { in vec_vrlh()
6348 return (vector unsigned short)__builtin_altivec_vrlh((vector short)__a, __b); in vec_vrlh()
6353 static __inline__ vector int __ATTRS_o_ai vec_vrlw(vector int __a, in vec_vrlw()
6354 vector unsigned int __b) { in vec_vrlw()
6358 static __inline__ vector unsigned int __ATTRS_o_ai
6359 vec_vrlw(vector unsigned int __a, vector unsigned int __b) { in vec_vrlw()
6360 return (vector unsigned int)__builtin_altivec_vrlw((vector int)__a, __b); in vec_vrlw()
6365 static __inline__ vector float __ATTRS_o_ai vec_round(vector float __a) { in vec_round()
6374 static __inline__ vector double __ATTRS_o_ai vec_round(vector double __a) { in vec_round()
6380 static __inline__ vector float __ATTRS_o_ai vec_rint(vector float __a) { in vec_rint()
6384 static __inline__ vector double __ATTRS_o_ai vec_rint(vector double __a) { in vec_rint()
6390 static __inline__ vector float __ATTRS_o_ai vec_nearbyint(vector float __a) { in vec_nearbyint()
6394 static __inline__ vector double __ATTRS_o_ai vec_nearbyint(vector double __a) { in vec_nearbyint()
6401 static __inline__ vector float __attribute__((__always_inline__))
6402 vec_vrfin(vector float __a) { in vec_vrfin()
6409 static __inline__ vector float __ATTRS_o_ai vec_sqrt(vector float __a) { in vec_sqrt()
6413 static __inline__ vector double __ATTRS_o_ai vec_sqrt(vector double __a) { in vec_sqrt()
6420 static __inline__ vector float __ATTRS_o_ai vec_rsqrte(vector float __a) { in vec_rsqrte()
6429 static __inline__ vector double __ATTRS_o_ai vec_rsqrte(vector double __a) { in vec_rsqrte()
6437 vec_vrsqrtefp(vector float __a) { in vec_vrsqrtefp()
6445 static __inline__ vector signed char __ATTRS_o_ai vec_sel( in vec_sel()
6446 vector signed char __a, vector signed char __b, vector unsigned char __c) { in vec_sel()
6447 return (__a & ~(vector signed char)__c) | (__b & (vector signed char)__c); in vec_sel()
6450 static __inline__ vector signed char __ATTRS_o_ai
6451 vec_sel(vector signed char __a, vector signed char __b, vector bool char __c) { in vec_sel()
6452 return (__a & ~(vector signed char)__c) | (__b & (vector signed char)__c); in vec_sel()
6455 static __inline__ vector unsigned char __ATTRS_o_ai
6456 vec_sel(vector unsigned char __a, vector unsigned char __b, in vec_sel()
6457 vector unsigned char __c) { in vec_sel()
6461 static __inline__ vector unsigned char __ATTRS_o_ai vec_sel( in vec_sel()
6462 vector unsigned char __a, vector unsigned char __b, vector bool char __c) { in vec_sel()
6463 return (__a & ~(vector unsigned char)__c) | (__b & (vector unsigned char)__c); in vec_sel()
6466 static __inline__ vector bool char __ATTRS_o_ai
6467 vec_sel(vector bool char __a, vector bool char __b, vector unsigned char __c) { in vec_sel()
6468 return (__a & ~(vector bool char)__c) | (__b & (vector bool char)__c); in vec_sel()
6471 static __inline__ vector bool char __ATTRS_o_ai vec_sel(vector bool char __a, in vec_sel()
6472 vector bool char __b, in vec_sel()
6473 vector bool char __c) { in vec_sel()
6477 static __inline__ vector short __ATTRS_o_ai vec_sel(vector short __a, in vec_sel()
6478 vector short __b, in vec_sel()
6479 vector unsigned short __c) { in vec_sel()
6480 return (__a & ~(vector short)__c) | (__b & (vector short)__c); in vec_sel()
6483 static __inline__ vector short __ATTRS_o_ai vec_sel(vector short __a, in vec_sel()
6484 vector short __b, in vec_sel()
6485 vector bool short __c) { in vec_sel()
6486 return (__a & ~(vector short)__c) | (__b & (vector short)__c); in vec_sel()
6489 static __inline__ vector unsigned short __ATTRS_o_ai
6490 vec_sel(vector unsigned short __a, vector unsigned short __b, in vec_sel()
6491 vector unsigned short __c) { in vec_sel()
6495 static __inline__ vector unsigned short __ATTRS_o_ai
6496 vec_sel(vector unsigned short __a, vector unsigned short __b, in vec_sel()
6497 vector bool short __c) { in vec_sel()
6498 return (__a & ~(vector unsigned short)__c) | in vec_sel()
6499 (__b & (vector unsigned short)__c); in vec_sel()
6502 static __inline__ vector bool short __ATTRS_o_ai vec_sel( in vec_sel()
6503 vector bool short __a, vector bool short __b, vector unsigned short __c) { in vec_sel()
6504 return (__a & ~(vector bool short)__c) | (__b & (vector bool short)__c); in vec_sel()
6507 static __inline__ vector bool short __ATTRS_o_ai
6508 vec_sel(vector bool short __a, vector bool short __b, vector bool short __c) { in vec_sel()
6512 static __inline__ vector int __ATTRS_o_ai vec_sel(vector int __a, in vec_sel()
6513 vector int __b, in vec_sel()
6514 vector unsigned int __c) { in vec_sel()
6515 return (__a & ~(vector int)__c) | (__b & (vector int)__c); in vec_sel()
6518 static __inline__ vector int __ATTRS_o_ai vec_sel(vector int __a, in vec_sel()
6519 vector int __b, in vec_sel()
6520 vector bool int __c) { in vec_sel()
6521 return (__a & ~(vector int)__c) | (__b & (vector int)__c); in vec_sel()
6524 static __inline__ vector unsigned int __ATTRS_o_ai vec_sel( in vec_sel()
6525 vector unsigned int __a, vector unsigned int __b, vector unsigned int __c) { in vec_sel()
6529 static __inline__ vector unsigned int __ATTRS_o_ai
6530 vec_sel(vector unsigned int __a, vector unsigned int __b, vector bool int __c) { in vec_sel()
6531 return (__a & ~(vector unsigned int)__c) | (__b & (vector unsigned int)__c); in vec_sel()
6534 static __inline__ vector bool int __ATTRS_o_ai
6535 vec_sel(vector bool int __a, vector bool int __b, vector unsigned int __c) { in vec_sel()
6536 return (__a & ~(vector bool int)__c) | (__b & (vector bool int)__c); in vec_sel()
6539 static __inline__ vector bool int __ATTRS_o_ai vec_sel(vector bool int __a, in vec_sel()
6540 vector bool int __b, in vec_sel()
6541 vector bool int __c) { in vec_sel()
6545 static __inline__ vector float __ATTRS_o_ai vec_sel(vector float __a, in vec_sel()
6546 vector float __b, in vec_sel()
6547 vector unsigned int __c) { in vec_sel()
6548 vector int __res = ((vector int)__a & ~(vector int)__c) | in vec_sel()
6549 ((vector int)__b & (vector int)__c); in vec_sel()
6550 return (vector float)__res; in vec_sel()
6553 static __inline__ vector float __ATTRS_o_ai vec_sel(vector float __a, in vec_sel()
6554 vector float __b, in vec_sel()
6555 vector bool int __c) { in vec_sel()
6556 vector int __res = ((vector int)__a & ~(vector int)__c) | in vec_sel()
6557 ((vector int)__b & (vector int)__c); in vec_sel()
6558 return (vector float)__res; in vec_sel()
6562 static __inline__ vector double __ATTRS_o_ai
6563 vec_sel(vector double __a, vector double __b, vector bool long long __c) { in vec_sel()
6564 vector long long __res = ((vector long long)__a & ~(vector long long)__c) | in vec_sel()
6565 ((vector long long)__b & (vector long long)__c); in vec_sel()
6566 return (vector double)__res; in vec_sel()
6569 static __inline__ vector double __ATTRS_o_ai
6570 vec_sel(vector double __a, vector double __b, vector unsigned long long __c) { in vec_sel()
6571 vector long long __res = ((vector long long)__a & ~(vector long long)__c) | in vec_sel()
6572 ((vector long long)__b & (vector long long)__c); in vec_sel()
6573 return (vector double)__res; in vec_sel()
6579 static __inline__ vector signed char __ATTRS_o_ai vec_vsel( in vec_vsel()
6580 vector signed char __a, vector signed char __b, vector unsigned char __c) { in vec_vsel()
6581 return (__a & ~(vector signed char)__c) | (__b & (vector signed char)__c); in vec_vsel()
6584 static __inline__ vector signed char __ATTRS_o_ai
6585 vec_vsel(vector signed char __a, vector signed char __b, vector bool char __c) { in vec_vsel()
6586 return (__a & ~(vector signed char)__c) | (__b & (vector signed char)__c); in vec_vsel()
6589 static __inline__ vector unsigned char __ATTRS_o_ai
6590 vec_vsel(vector unsigned char __a, vector unsigned char __b, in vec_vsel()
6591 vector unsigned char __c) { in vec_vsel()
6595 static __inline__ vector unsigned char __ATTRS_o_ai vec_vsel( in vec_vsel()
6596 vector unsigned char __a, vector unsigned char __b, vector bool char __c) { in vec_vsel()
6597 return (__a & ~(vector unsigned char)__c) | (__b & (vector unsigned char)__c); in vec_vsel()
6600 static __inline__ vector bool char __ATTRS_o_ai
6601 vec_vsel(vector bool char __a, vector bool char __b, vector unsigned char __c) { in vec_vsel()
6602 return (__a & ~(vector bool char)__c) | (__b & (vector bool char)__c); in vec_vsel()
6605 static __inline__ vector bool char __ATTRS_o_ai vec_vsel(vector bool char __a, in vec_vsel()
6606 vector bool char __b, in vec_vsel()
6607 vector bool char __c) { in vec_vsel()
6611 static __inline__ vector short __ATTRS_o_ai
6612 vec_vsel(vector short __a, vector short __b, vector unsigned short __c) { in vec_vsel()
6613 return (__a & ~(vector short)__c) | (__b & (vector short)__c); in vec_vsel()
6616 static __inline__ vector short __ATTRS_o_ai vec_vsel(vector short __a, in vec_vsel()
6617 vector short __b, in vec_vsel()
6618 vector bool short __c) { in vec_vsel()
6619 return (__a & ~(vector short)__c) | (__b & (vector short)__c); in vec_vsel()
6622 static __inline__ vector unsigned short __ATTRS_o_ai
6623 vec_vsel(vector unsigned short __a, vector unsigned short __b, in vec_vsel()
6624 vector unsigned short __c) { in vec_vsel()
6628 static __inline__ vector unsigned short __ATTRS_o_ai
6629 vec_vsel(vector unsigned short __a, vector unsigned short __b, in vec_vsel()
6630 vector bool short __c) { in vec_vsel()
6631 return (__a & ~(vector unsigned short)__c) | in vec_vsel()
6632 (__b & (vector unsigned short)__c); in vec_vsel()
6635 static __inline__ vector bool short __ATTRS_o_ai vec_vsel( in vec_vsel()
6636 vector bool short __a, vector bool short __b, vector unsigned short __c) { in vec_vsel()
6637 return (__a & ~(vector bool short)__c) | (__b & (vector bool short)__c); in vec_vsel()
6640 static __inline__ vector bool short __ATTRS_o_ai
6641 vec_vsel(vector bool short __a, vector bool short __b, vector bool short __c) { in vec_vsel()
6645 static __inline__ vector int __ATTRS_o_ai vec_vsel(vector int __a, in vec_vsel()
6646 vector int __b, in vec_vsel()
6647 vector unsigned int __c) { in vec_vsel()
6648 return (__a & ~(vector int)__c) | (__b & (vector int)__c); in vec_vsel()
6651 static __inline__ vector int __ATTRS_o_ai vec_vsel(vector int __a, in vec_vsel()
6652 vector int __b, in vec_vsel()
6653 vector bool int __c) { in vec_vsel()
6654 return (__a & ~(vector int)__c) | (__b & (vector int)__c); in vec_vsel()
6657 static __inline__ vector unsigned int __ATTRS_o_ai vec_vsel( in vec_vsel()
6658 vector unsigned int __a, vector unsigned int __b, vector unsigned int __c) { in vec_vsel()
6662 static __inline__ vector unsigned int __ATTRS_o_ai vec_vsel( in vec_vsel()
6663 vector unsigned int __a, vector unsigned int __b, vector bool int __c) { in vec_vsel()
6664 return (__a & ~(vector unsigned int)__c) | (__b & (vector unsigned int)__c); in vec_vsel()
6667 static __inline__ vector bool int __ATTRS_o_ai
6668 vec_vsel(vector bool int __a, vector bool int __b, vector unsigned int __c) { in vec_vsel()
6669 return (__a & ~(vector bool int)__c) | (__b & (vector bool int)__c); in vec_vsel()
6672 static __inline__ vector bool int __ATTRS_o_ai vec_vsel(vector bool int __a, in vec_vsel()
6673 vector bool int __b, in vec_vsel()
6674 vector bool int __c) { in vec_vsel()
6678 static __inline__ vector float __ATTRS_o_ai vec_vsel(vector float __a, in vec_vsel()
6679 vector float __b, in vec_vsel()
6680 vector unsigned int __c) { in vec_vsel()
6681 vector int __res = ((vector int)__a & ~(vector int)__c) | in vec_vsel()
6682 ((vector int)__b & (vector int)__c); in vec_vsel()
6683 return (vector float)__res; in vec_vsel()
6686 static __inline__ vector float __ATTRS_o_ai vec_vsel(vector float __a, in vec_vsel()
6687 vector float __b, in vec_vsel()
6688 vector bool int __c) { in vec_vsel()
6689 vector int __res = ((vector int)__a & ~(vector int)__c) | in vec_vsel()
6690 ((vector int)__b & (vector int)__c); in vec_vsel()
6691 return (vector float)__res; in vec_vsel()
6696 static __inline__ vector signed char __ATTRS_o_ai
6697 vec_sl(vector signed char __a, vector unsigned char __b) { in vec_sl()
6698 return __a << (vector signed char)__b; in vec_sl()
6701 static __inline__ vector unsigned char __ATTRS_o_ai
6702 vec_sl(vector unsigned char __a, vector unsigned char __b) { in vec_sl()
6706 static __inline__ vector short __ATTRS_o_ai vec_sl(vector short __a, in vec_sl()
6707 vector unsigned short __b) { in vec_sl()
6708 return __a << (vector short)__b; in vec_sl()
6711 static __inline__ vector unsigned short __ATTRS_o_ai
6712 vec_sl(vector unsigned short __a, vector unsigned short __b) { in vec_sl()
6716 static __inline__ vector int __ATTRS_o_ai vec_sl(vector int __a, in vec_sl()
6717 vector unsigned int __b) { in vec_sl()
6718 return __a << (vector int)__b; in vec_sl()
6721 static __inline__ vector unsigned int __ATTRS_o_ai
6722 vec_sl(vector unsigned int __a, vector unsigned int __b) { in vec_sl()
6727 static __inline__ vector signed long long __ATTRS_o_ai
6728 vec_sl(vector signed long long __a, vector unsigned long long __b) { in vec_sl()
6729 return __a << (vector long long)__b; in vec_sl()
6732 static __inline__ vector unsigned long long __ATTRS_o_ai
6733 vec_sl(vector unsigned long long __a, vector unsigned long long __b) { in vec_sl()
6742 static __inline__ vector signed char __ATTRS_o_ai
6743 vec_vslb(vector signed char __a, vector unsigned char __b) { in vec_vslb()
6747 static __inline__ vector unsigned char __ATTRS_o_ai
6748 vec_vslb(vector unsigned char __a, vector unsigned char __b) { in vec_vslb()
6756 static __inline__ vector short __ATTRS_o_ai
6757 vec_vslh(vector short __a, vector unsigned short __b) { in vec_vslh()
6761 static __inline__ vector unsigned short __ATTRS_o_ai
6762 vec_vslh(vector unsigned short __a, vector unsigned short __b) { in vec_vslh()
6770 static __inline__ vector int __ATTRS_o_ai vec_vslw(vector int __a, in vec_vslw()
6771 vector unsigned int __b) { in vec_vslw()
6775 static __inline__ vector unsigned int __ATTRS_o_ai
6776 vec_vslw(vector unsigned int __a, vector unsigned int __b) { in vec_vslw()
6784 static __inline__ vector signed char __ATTRS_o_ai vec_sld( in vec_sld()
6785 vector signed char __a, vector signed char __b, unsigned const int __c) { in vec_sld()
6789 __b, __a, (vector unsigned char)(16 - __d, 17 - __d, 18 - __d, 19 - __d, in vec_sld()
6796 (vector unsigned char)(__d, __d + 1, __d + 2, __d + 3, __d + 4, __d + 5, in vec_sld()
6802 static __inline__ vector unsigned char __ATTRS_o_ai
6803 vec_sld(vector unsigned char __a, vector unsigned char __b, in vec_sld()
6808 __b, __a, (vector unsigned char)(16 - __d, 17 - __d, 18 - __d, 19 - __d, in vec_sld()
6815 (vector unsigned char)(__d, __d + 1, __d + 2, __d + 3, __d + 4, __d + 5, in vec_sld()
6821 static __inline__ vector bool char __ATTRS_o_ai
6822 vec_sld(vector bool char __a, vector bool char __b, unsigned const int __c) { in vec_sld()
6826 __b, __a, (vector unsigned char)(16 - __d, 17 - __d, 18 - __d, 19 - __d, in vec_sld()
6833 (vector unsigned char)(__d, __d + 1, __d + 2, __d + 3, __d + 4, __d + 5, in vec_sld()
6839 static __inline__ vector signed short __ATTRS_o_ai vec_sld( in vec_sld()
6840 vector signed short __a, vector signed short __b, unsigned const int __c) { in vec_sld()
6844 __b, __a, (vector unsigned char)(16 - __d, 17 - __d, 18 - __d, 19 - __d, in vec_sld()
6851 (vector unsigned char)(__d, __d + 1, __d + 2, __d + 3, __d + 4, __d + 5, in vec_sld()
6857 static __inline__ vector unsigned short __ATTRS_o_ai
6858 vec_sld(vector unsigned short __a, vector unsigned short __b, in vec_sld()
6863 __b, __a, (vector unsigned char)(16 - __d, 17 - __d, 18 - __d, 19 - __d, in vec_sld()
6870 (vector unsigned char)(__d, __d + 1, __d + 2, __d + 3, __d + 4, __d + 5, in vec_sld()
6876 static __inline__ vector bool short __ATTRS_o_ai
6877 vec_sld(vector bool short __a, vector bool short __b, unsigned const int __c) { in vec_sld()
6881 __b, __a, (vector unsigned char)(16 - __d, 17 - __d, 18 - __d, 19 - __d, in vec_sld()
6888 (vector unsigned char)(__d, __d + 1, __d + 2, __d + 3, __d + 4, __d + 5, in vec_sld()
6894 static __inline__ vector pixel __ATTRS_o_ai vec_sld(vector pixel __a, in vec_sld()
6895 vector pixel __b, in vec_sld()
6900 __b, __a, (vector unsigned char)(16 - __d, 17 - __d, 18 - __d, 19 - __d, in vec_sld()
6907 (vector unsigned char)(__d, __d + 1, __d + 2, __d + 3, __d + 4, __d + 5, in vec_sld()
6913 static __inline__ vector signed int __ATTRS_o_ai
6914 vec_sld(vector signed int __a, vector signed int __b, unsigned const int __c) { in vec_sld()
6918 __b, __a, (vector unsigned char)(16 - __d, 17 - __d, 18 - __d, 19 - __d, in vec_sld()
6925 (vector unsigned char)(__d, __d + 1, __d + 2, __d + 3, __d + 4, __d + 5, in vec_sld()
6931 static __inline__ vector unsigned int __ATTRS_o_ai vec_sld( in vec_sld()
6932 vector unsigned int __a, vector unsigned int __b, unsigned const int __c) { in vec_sld()
6936 __b, __a, (vector unsigned char)(16 - __d, 17 - __d, 18 - __d, 19 - __d, in vec_sld()
6943 (vector unsigned char)(__d, __d + 1, __d + 2, __d + 3, __d + 4, __d + 5, in vec_sld()
6949 static __inline__ vector bool int __ATTRS_o_ai vec_sld(vector bool int __a, in vec_sld()
6950 vector bool int __b, in vec_sld()
6955 __b, __a, (vector unsigned char)(16 - __d, 17 - __d, 18 - __d, 19 - __d, in vec_sld()
6962 (vector unsigned char)(__d, __d + 1, __d + 2, __d + 3, __d + 4, __d + 5, in vec_sld()
6968 static __inline__ vector float __ATTRS_o_ai vec_sld(vector float __a, in vec_sld()
6969 vector float __b, in vec_sld()
6974 __b, __a, (vector unsigned char)(16 - __d, 17 - __d, 18 - __d, 19 - __d, in vec_sld()
6981 (vector unsigned char)(__d, __d + 1, __d + 2, __d + 3, __d + 4, __d + 5, in vec_sld()
6989 static __inline__ vector signed char __ATTRS_o_ai
6990 vec_vsldoi(vector signed char __a, vector signed char __b, unsigned char __c) { in vec_vsldoi()
6994 __b, __a, (vector unsigned char)(16 - __d, 17 - __d, 18 - __d, 19 - __d, in vec_vsldoi()
7001 (vector unsigned char)(__d, __d + 1, __d + 2, __d + 3, __d + 4, __d + 5, in vec_vsldoi()
7007 static __inline__ vector unsigned char __ATTRS_o_ai vec_vsldoi( in vec_vsldoi()
7008 vector unsigned char __a, vector unsigned char __b, unsigned char __c) { in vec_vsldoi()
7012 __b, __a, (vector unsigned char)(16 - __d, 17 - __d, 18 - __d, 19 - __d, in vec_vsldoi()
7019 (vector unsigned char)(__d, __d + 1, __d + 2, __d + 3, __d + 4, __d + 5, in vec_vsldoi()
7025 static __inline__ vector short __ATTRS_o_ai vec_vsldoi(vector short __a, in vec_vsldoi()
7026 vector short __b, in vec_vsldoi()
7031 __b, __a, (vector unsigned char)(16 - __d, 17 - __d, 18 - __d, 19 - __d, in vec_vsldoi()
7038 (vector unsigned char)(__d, __d + 1, __d + 2, __d + 3, __d + 4, __d + 5, in vec_vsldoi()
7044 static __inline__ vector unsigned short __ATTRS_o_ai vec_vsldoi( in vec_vsldoi()
7045 vector unsigned short __a, vector unsigned short __b, unsigned char __c) { in vec_vsldoi()
7049 __b, __a, (vector unsigned char)(16 - __d, 17 - __d, 18 - __d, 19 - __d, in vec_vsldoi()
7056 (vector unsigned char)(__d, __d + 1, __d + 2, __d + 3, __d + 4, __d + 5, in vec_vsldoi()
7062 static __inline__ vector pixel __ATTRS_o_ai vec_vsldoi(vector pixel __a, in vec_vsldoi()
7063 vector pixel __b, in vec_vsldoi()
7068 __b, __a, (vector unsigned char)(16 - __d, 17 - __d, 18 - __d, 19 - __d, in vec_vsldoi()
7075 (vector unsigned char)(__d, __d + 1, __d + 2, __d + 3, __d + 4, __d + 5, in vec_vsldoi()
7081 static __inline__ vector int __ATTRS_o_ai vec_vsldoi(vector int __a, in vec_vsldoi()
7082 vector int __b, in vec_vsldoi()
7087 __b, __a, (vector unsigned char)(16 - __d, 17 - __d, 18 - __d, 19 - __d, in vec_vsldoi()
7094 (vector unsigned char)(__d, __d + 1, __d + 2, __d + 3, __d + 4, __d + 5, in vec_vsldoi()
7100 static __inline__ vector unsigned int __ATTRS_o_ai vec_vsldoi( in vec_vsldoi()
7101 vector unsigned int __a, vector unsigned int __b, unsigned char __c) { in vec_vsldoi()
7105 __b, __a, (vector unsigned char)(16 - __d, 17 - __d, 18 - __d, 19 - __d, in vec_vsldoi()
7112 (vector unsigned char)(__d, __d + 1, __d + 2, __d + 3, __d + 4, __d + 5, in vec_vsldoi()
7118 static __inline__ vector float __ATTRS_o_ai vec_vsldoi(vector float __a, in vec_vsldoi()
7119 vector float __b, in vec_vsldoi()
7124 __b, __a, (vector unsigned char)(16 - __d, 17 - __d, 18 - __d, 19 - __d, in vec_vsldoi()
7131 (vector unsigned char)(__d, __d + 1, __d + 2, __d + 3, __d + 4, __d + 5, in vec_vsldoi()
7139 static __inline__ vector signed char __ATTRS_o_ai
7140 vec_sll(vector signed char __a, vector unsigned char __b) { in vec_sll()
7141 return (vector signed char)__builtin_altivec_vsl((vector int)__a, in vec_sll()
7142 (vector int)__b); in vec_sll()
7145 static __inline__ vector signed char __ATTRS_o_ai
7146 vec_sll(vector signed char __a, vector unsigned short __b) { in vec_sll()
7147 return (vector signed char)__builtin_altivec_vsl((vector int)__a, in vec_sll()
7148 (vector int)__b); in vec_sll()
7151 static __inline__ vector signed char __ATTRS_o_ai
7152 vec_sll(vector signed char __a, vector unsigned int __b) { in vec_sll()
7153 return (vector signed char)__builtin_altivec_vsl((vector int)__a, in vec_sll()
7154 (vector int)__b); in vec_sll()
7157 static __inline__ vector unsigned char __ATTRS_o_ai
7158 vec_sll(vector unsigned char __a, vector unsigned char __b) { in vec_sll()
7159 return (vector unsigned char)__builtin_altivec_vsl((vector int)__a, in vec_sll()
7160 (vector int)__b); in vec_sll()
7163 static __inline__ vector unsigned char __ATTRS_o_ai
7164 vec_sll(vector unsigned char __a, vector unsigned short __b) { in vec_sll()
7165 return (vector unsigned char)__builtin_altivec_vsl((vector int)__a, in vec_sll()
7166 (vector int)__b); in vec_sll()
7169 static __inline__ vector unsigned char __ATTRS_o_ai
7170 vec_sll(vector unsigned char __a, vector unsigned int __b) { in vec_sll()
7171 return (vector unsigned char)__builtin_altivec_vsl((vector int)__a, in vec_sll()
7172 (vector int)__b); in vec_sll()
7175 static __inline__ vector bool char __ATTRS_o_ai
7176 vec_sll(vector bool char __a, vector unsigned char __b) { in vec_sll()
7177 return (vector bool char)__builtin_altivec_vsl((vector int)__a, in vec_sll()
7178 (vector int)__b); in vec_sll()
7181 static __inline__ vector bool char __ATTRS_o_ai
7182 vec_sll(vector bool char __a, vector unsigned short __b) { in vec_sll()
7183 return (vector bool char)__builtin_altivec_vsl((vector int)__a, in vec_sll()
7184 (vector int)__b); in vec_sll()
7187 static __inline__ vector bool char __ATTRS_o_ai
7188 vec_sll(vector bool char __a, vector unsigned int __b) { in vec_sll()
7189 return (vector bool char)__builtin_altivec_vsl((vector int)__a, in vec_sll()
7190 (vector int)__b); in vec_sll()
7193 static __inline__ vector short __ATTRS_o_ai vec_sll(vector short __a, in vec_sll()
7194 vector unsigned char __b) { in vec_sll()
7195 return (vector short)__builtin_altivec_vsl((vector int)__a, (vector int)__b); in vec_sll()
7198 static __inline__ vector short __ATTRS_o_ai vec_sll(vector short __a, in vec_sll()
7199 vector unsigned short __b) { in vec_sll()
7200 return (vector short)__builtin_altivec_vsl((vector int)__a, (vector int)__b); in vec_sll()
7203 static __inline__ vector short __ATTRS_o_ai vec_sll(vector short __a, in vec_sll()
7204 vector unsigned int __b) { in vec_sll()
7205 return (vector short)__builtin_altivec_vsl((vector int)__a, (vector int)__b); in vec_sll()
7208 static __inline__ vector unsigned short __ATTRS_o_ai
7209 vec_sll(vector unsigned short __a, vector unsigned char __b) { in vec_sll()
7210 return (vector unsigned short)__builtin_altivec_vsl((vector int)__a, in vec_sll()
7211 (vector int)__b); in vec_sll()
7214 static __inline__ vector unsigned short __ATTRS_o_ai
7215 vec_sll(vector unsigned short __a, vector unsigned short __b) { in vec_sll()
7216 return (vector unsigned short)__builtin_altivec_vsl((vector int)__a, in vec_sll()
7217 (vector int)__b); in vec_sll()
7220 static __inline__ vector unsigned short __ATTRS_o_ai
7221 vec_sll(vector unsigned short __a, vector unsigned int __b) { in vec_sll()
7222 return (vector unsigned short)__builtin_altivec_vsl((vector int)__a, in vec_sll()
7223 (vector int)__b); in vec_sll()
7226 static __inline__ vector bool short __ATTRS_o_ai
7227 vec_sll(vector bool short __a, vector unsigned char __b) { in vec_sll()
7228 return (vector bool short)__builtin_altivec_vsl((vector int)__a, in vec_sll()
7229 (vector int)__b); in vec_sll()
7232 static __inline__ vector bool short __ATTRS_o_ai
7233 vec_sll(vector bool short __a, vector unsigned short __b) { in vec_sll()
7234 return (vector bool short)__builtin_altivec_vsl((vector int)__a, in vec_sll()
7235 (vector int)__b); in vec_sll()
7238 static __inline__ vector bool short __ATTRS_o_ai
7239 vec_sll(vector bool short __a, vector unsigned int __b) { in vec_sll()
7240 return (vector bool short)__builtin_altivec_vsl((vector int)__a, in vec_sll()
7241 (vector int)__b); in vec_sll()
7244 static __inline__ vector pixel __ATTRS_o_ai vec_sll(vector pixel __a, in vec_sll()
7245 vector unsigned char __b) { in vec_sll()
7246 return (vector pixel)__builtin_altivec_vsl((vector int)__a, (vector int)__b); in vec_sll()
7249 static __inline__ vector pixel __ATTRS_o_ai vec_sll(vector pixel __a, in vec_sll()
7250 vector unsigned short __b) { in vec_sll()
7251 return (vector pixel)__builtin_altivec_vsl((vector int)__a, (vector int)__b); in vec_sll()
7254 static __inline__ vector pixel __ATTRS_o_ai vec_sll(vector pixel __a, in vec_sll()
7255 vector unsigned int __b) { in vec_sll()
7256 return (vector pixel)__builtin_altivec_vsl((vector int)__a, (vector int)__b); in vec_sll()
7259 static __inline__ vector int __ATTRS_o_ai vec_sll(vector int __a, in vec_sll()
7260 vector unsigned char __b) { in vec_sll()
7261 return (vector int)__builtin_altivec_vsl(__a, (vector int)__b); in vec_sll()
7264 static __inline__ vector int __ATTRS_o_ai vec_sll(vector int __a, in vec_sll()
7265 vector unsigned short __b) { in vec_sll()
7266 return (vector int)__builtin_altivec_vsl(__a, (vector int)__b); in vec_sll()
7269 static __inline__ vector int __ATTRS_o_ai vec_sll(vector int __a, in vec_sll()
7270 vector unsigned int __b) { in vec_sll()
7271 return (vector int)__builtin_altivec_vsl(__a, (vector int)__b); in vec_sll()
7274 static __inline__ vector unsigned int __ATTRS_o_ai
7275 vec_sll(vector unsigned int __a, vector unsigned char __b) { in vec_sll()
7276 return (vector unsigned int)__builtin_altivec_vsl((vector int)__a, in vec_sll()
7277 (vector int)__b); in vec_sll()
7280 static __inline__ vector unsigned int __ATTRS_o_ai
7281 vec_sll(vector unsigned int __a, vector unsigned short __b) { in vec_sll()
7282 return (vector unsigned int)__builtin_altivec_vsl((vector int)__a, in vec_sll()
7283 (vector int)__b); in vec_sll()
7286 static __inline__ vector unsigned int __ATTRS_o_ai
7287 vec_sll(vector unsigned int __a, vector unsigned int __b) { in vec_sll()
7288 return (vector unsigned int)__builtin_altivec_vsl((vector int)__a, in vec_sll()
7289 (vector int)__b); in vec_sll()
7292 static __inline__ vector bool int __ATTRS_o_ai
7293 vec_sll(vector bool int __a, vector unsigned char __b) { in vec_sll()
7294 return (vector bool int)__builtin_altivec_vsl((vector int)__a, in vec_sll()
7295 (vector int)__b); in vec_sll()
7298 static __inline__ vector bool int __ATTRS_o_ai
7299 vec_sll(vector bool int __a, vector unsigned short __b) { in vec_sll()
7300 return (vector bool int)__builtin_altivec_vsl((vector int)__a, in vec_sll()
7301 (vector int)__b); in vec_sll()
7304 static __inline__ vector bool int __ATTRS_o_ai
7305 vec_sll(vector bool int __a, vector unsigned int __b) { in vec_sll()
7306 return (vector bool int)__builtin_altivec_vsl((vector int)__a, in vec_sll()
7307 (vector int)__b); in vec_sll()
7312 static __inline__ vector signed char __ATTRS_o_ai
7313 vec_vsl(vector signed char __a, vector unsigned char __b) { in vec_vsl()
7314 return (vector signed char)__builtin_altivec_vsl((vector int)__a, in vec_vsl()
7315 (vector int)__b); in vec_vsl()
7318 static __inline__ vector signed char __ATTRS_o_ai
7319 vec_vsl(vector signed char __a, vector unsigned short __b) { in vec_vsl()
7320 return (vector signed char)__builtin_altivec_vsl((vector int)__a, in vec_vsl()
7321 (vector int)__b); in vec_vsl()
7324 static __inline__ vector signed char __ATTRS_o_ai
7325 vec_vsl(vector signed char __a, vector unsigned int __b) { in vec_vsl()
7326 return (vector signed char)__builtin_altivec_vsl((vector int)__a, in vec_vsl()
7327 (vector int)__b); in vec_vsl()
7330 static __inline__ vector unsigned char __ATTRS_o_ai
7331 vec_vsl(vector unsigned char __a, vector unsigned char __b) { in vec_vsl()
7332 return (vector unsigned char)__builtin_altivec_vsl((vector int)__a, in vec_vsl()
7333 (vector int)__b); in vec_vsl()
7336 static __inline__ vector unsigned char __ATTRS_o_ai
7337 vec_vsl(vector unsigned char __a, vector unsigned short __b) { in vec_vsl()
7338 return (vector unsigned char)__builtin_altivec_vsl((vector int)__a, in vec_vsl()
7339 (vector int)__b); in vec_vsl()
7342 static __inline__ vector unsigned char __ATTRS_o_ai
7343 vec_vsl(vector unsigned char __a, vector unsigned int __b) { in vec_vsl()
7344 return (vector unsigned char)__builtin_altivec_vsl((vector int)__a, in vec_vsl()
7345 (vector int)__b); in vec_vsl()
7348 static __inline__ vector bool char __ATTRS_o_ai
7349 vec_vsl(vector bool char __a, vector unsigned char __b) { in vec_vsl()
7350 return (vector bool char)__builtin_altivec_vsl((vector int)__a, in vec_vsl()
7351 (vector int)__b); in vec_vsl()
7354 static __inline__ vector bool char __ATTRS_o_ai
7355 vec_vsl(vector bool char __a, vector unsigned short __b) { in vec_vsl()
7356 return (vector bool char)__builtin_altivec_vsl((vector int)__a, in vec_vsl()
7357 (vector int)__b); in vec_vsl()
7360 static __inline__ vector bool char __ATTRS_o_ai
7361 vec_vsl(vector bool char __a, vector unsigned int __b) { in vec_vsl()
7362 return (vector bool char)__builtin_altivec_vsl((vector int)__a, in vec_vsl()
7363 (vector int)__b); in vec_vsl()
7366 static __inline__ vector short __ATTRS_o_ai vec_vsl(vector short __a, in vec_vsl()
7367 vector unsigned char __b) { in vec_vsl()
7368 return (vector short)__builtin_altivec_vsl((vector int)__a, (vector int)__b); in vec_vsl()
7371 static __inline__ vector short __ATTRS_o_ai vec_vsl(vector short __a, in vec_vsl()
7372 vector unsigned short __b) { in vec_vsl()
7373 return (vector short)__builtin_altivec_vsl((vector int)__a, (vector int)__b); in vec_vsl()
7376 static __inline__ vector short __ATTRS_o_ai vec_vsl(vector short __a, in vec_vsl()
7377 vector unsigned int __b) { in vec_vsl()
7378 return (vector short)__builtin_altivec_vsl((vector int)__a, (vector int)__b); in vec_vsl()
7381 static __inline__ vector unsigned short __ATTRS_o_ai
7382 vec_vsl(vector unsigned short __a, vector unsigned char __b) { in vec_vsl()
7383 return (vector unsigned short)__builtin_altivec_vsl((vector int)__a, in vec_vsl()
7384 (vector int)__b); in vec_vsl()
7387 static __inline__ vector unsigned short __ATTRS_o_ai
7388 vec_vsl(vector unsigned short __a, vector unsigned short __b) { in vec_vsl()
7389 return (vector unsigned short)__builtin_altivec_vsl((vector int)__a, in vec_vsl()
7390 (vector int)__b); in vec_vsl()
7393 static __inline__ vector unsigned short __ATTRS_o_ai
7394 vec_vsl(vector unsigned short __a, vector unsigned int __b) { in vec_vsl()
7395 return (vector unsigned short)__builtin_altivec_vsl((vector int)__a, in vec_vsl()
7396 (vector int)__b); in vec_vsl()
7399 static __inline__ vector bool short __ATTRS_o_ai
7400 vec_vsl(vector bool short __a, vector unsigned char __b) { in vec_vsl()
7401 return (vector bool short)__builtin_altivec_vsl((vector int)__a, in vec_vsl()
7402 (vector int)__b); in vec_vsl()
7405 static __inline__ vector bool short __ATTRS_o_ai
7406 vec_vsl(vector bool short __a, vector unsigned short __b) { in vec_vsl()
7407 return (vector bool short)__builtin_altivec_vsl((vector int)__a, in vec_vsl()
7408 (vector int)__b); in vec_vsl()
7411 static __inline__ vector bool short __ATTRS_o_ai
7412 vec_vsl(vector bool short __a, vector unsigned int __b) { in vec_vsl()
7413 return (vector bool short)__builtin_altivec_vsl((vector int)__a, in vec_vsl()
7414 (vector int)__b); in vec_vsl()
7417 static __inline__ vector pixel __ATTRS_o_ai vec_vsl(vector pixel __a, in vec_vsl()
7418 vector unsigned char __b) { in vec_vsl()
7419 return (vector pixel)__builtin_altivec_vsl((vector int)__a, (vector int)__b); in vec_vsl()
7422 static __inline__ vector pixel __ATTRS_o_ai vec_vsl(vector pixel __a, in vec_vsl()
7423 vector unsigned short __b) { in vec_vsl()
7424 return (vector pixel)__builtin_altivec_vsl((vector int)__a, (vector int)__b); in vec_vsl()
7427 static __inline__ vector pixel __ATTRS_o_ai vec_vsl(vector pixel __a, in vec_vsl()
7428 vector unsigned int __b) { in vec_vsl()
7429 return (vector pixel)__builtin_altivec_vsl((vector int)__a, (vector int)__b); in vec_vsl()
7432 static __inline__ vector int __ATTRS_o_ai vec_vsl(vector int __a, in vec_vsl()
7433 vector unsigned char __b) { in vec_vsl()
7434 return (vector int)__builtin_altivec_vsl(__a, (vector int)__b); in vec_vsl()
7437 static __inline__ vector int __ATTRS_o_ai vec_vsl(vector int __a, in vec_vsl()
7438 vector unsigned short __b) { in vec_vsl()
7439 return (vector int)__builtin_altivec_vsl(__a, (vector int)__b); in vec_vsl()
7442 static __inline__ vector int __ATTRS_o_ai vec_vsl(vector int __a, in vec_vsl()
7443 vector unsigned int __b) { in vec_vsl()
7444 return (vector int)__builtin_altivec_vsl(__a, (vector int)__b); in vec_vsl()
7447 static __inline__ vector unsigned int __ATTRS_o_ai
7448 vec_vsl(vector unsigned int __a, vector unsigned char __b) { in vec_vsl()
7449 return (vector unsigned int)__builtin_altivec_vsl((vector int)__a, in vec_vsl()
7450 (vector int)__b); in vec_vsl()
7453 static __inline__ vector unsigned int __ATTRS_o_ai
7454 vec_vsl(vector unsigned int __a, vector unsigned short __b) { in vec_vsl()
7455 return (vector unsigned int)__builtin_altivec_vsl((vector int)__a, in vec_vsl()
7456 (vector int)__b); in vec_vsl()
7459 static __inline__ vector unsigned int __ATTRS_o_ai
7460 vec_vsl(vector unsigned int __a, vector unsigned int __b) { in vec_vsl()
7461 return (vector unsigned int)__builtin_altivec_vsl((vector int)__a, in vec_vsl()
7462 (vector int)__b); in vec_vsl()
7465 static __inline__ vector bool int __ATTRS_o_ai
7466 vec_vsl(vector bool int __a, vector unsigned char __b) { in vec_vsl()
7467 return (vector bool int)__builtin_altivec_vsl((vector int)__a, in vec_vsl()
7468 (vector int)__b); in vec_vsl()
7471 static __inline__ vector bool int __ATTRS_o_ai
7472 vec_vsl(vector bool int __a, vector unsigned short __b) { in vec_vsl()
7473 return (vector bool int)__builtin_altivec_vsl((vector int)__a, in vec_vsl()
7474 (vector int)__b); in vec_vsl()
7477 static __inline__ vector bool int __ATTRS_o_ai
7478 vec_vsl(vector bool int __a, vector unsigned int __b) { in vec_vsl()
7479 return (vector bool int)__builtin_altivec_vsl((vector int)__a, in vec_vsl()
7480 (vector int)__b); in vec_vsl()
7485 static __inline__ vector signed char __ATTRS_o_ai
7486 vec_slo(vector signed char __a, vector signed char __b) { in vec_slo()
7487 return (vector signed char)__builtin_altivec_vslo((vector int)__a, in vec_slo()
7488 (vector int)__b); in vec_slo()
7491 static __inline__ vector signed char __ATTRS_o_ai
7492 vec_slo(vector signed char __a, vector unsigned char __b) { in vec_slo()
7493 return (vector signed char)__builtin_altivec_vslo((vector int)__a, in vec_slo()
7494 (vector int)__b); in vec_slo()
7497 static __inline__ vector unsigned char __ATTRS_o_ai
7498 vec_slo(vector unsigned char __a, vector signed char __b) { in vec_slo()
7499 return (vector unsigned char)__builtin_altivec_vslo((vector int)__a, in vec_slo()
7500 (vector int)__b); in vec_slo()
7503 static __inline__ vector unsigned char __ATTRS_o_ai
7504 vec_slo(vector unsigned char __a, vector unsigned char __b) { in vec_slo()
7505 return (vector unsigned char)__builtin_altivec_vslo((vector int)__a, in vec_slo()
7506 (vector int)__b); in vec_slo()
7509 static __inline__ vector short __ATTRS_o_ai vec_slo(vector short __a, in vec_slo()
7510 vector signed char __b) { in vec_slo()
7511 return (vector short)__builtin_altivec_vslo((vector int)__a, (vector int)__b); in vec_slo()
7514 static __inline__ vector short __ATTRS_o_ai vec_slo(vector short __a, in vec_slo()
7515 vector unsigned char __b) { in vec_slo()
7516 return (vector short)__builtin_altivec_vslo((vector int)__a, (vector int)__b); in vec_slo()
7519 static __inline__ vector unsigned short __ATTRS_o_ai
7520 vec_slo(vector unsigned short __a, vector signed char __b) { in vec_slo()
7521 return (vector unsigned short)__builtin_altivec_vslo((vector int)__a, in vec_slo()
7522 (vector int)__b); in vec_slo()
7525 static __inline__ vector unsigned short __ATTRS_o_ai
7526 vec_slo(vector unsigned short __a, vector unsigned char __b) { in vec_slo()
7527 return (vector unsigned short)__builtin_altivec_vslo((vector int)__a, in vec_slo()
7528 (vector int)__b); in vec_slo()
7531 static __inline__ vector pixel __ATTRS_o_ai vec_slo(vector pixel __a, in vec_slo()
7532 vector signed char __b) { in vec_slo()
7533 return (vector pixel)__builtin_altivec_vslo((vector int)__a, (vector int)__b); in vec_slo()
7536 static __inline__ vector pixel __ATTRS_o_ai vec_slo(vector pixel __a, in vec_slo()
7537 vector unsigned char __b) { in vec_slo()
7538 return (vector pixel)__builtin_altivec_vslo((vector int)__a, (vector int)__b); in vec_slo()
7541 static __inline__ vector int __ATTRS_o_ai vec_slo(vector int __a, in vec_slo()
7542 vector signed char __b) { in vec_slo()
7543 return (vector int)__builtin_altivec_vslo(__a, (vector int)__b); in vec_slo()
7546 static __inline__ vector int __ATTRS_o_ai vec_slo(vector int __a, in vec_slo()
7547 vector unsigned char __b) { in vec_slo()
7548 return (vector int)__builtin_altivec_vslo(__a, (vector int)__b); in vec_slo()
7551 static __inline__ vector unsigned int __ATTRS_o_ai
7552 vec_slo(vector unsigned int __a, vector signed char __b) { in vec_slo()
7553 return (vector unsigned int)__builtin_altivec_vslo((vector int)__a, in vec_slo()
7554 (vector int)__b); in vec_slo()
7557 static __inline__ vector unsigned int __ATTRS_o_ai
7558 vec_slo(vector unsigned int __a, vector unsigned char __b) { in vec_slo()
7559 return (vector unsigned int)__builtin_altivec_vslo((vector int)__a, in vec_slo()
7560 (vector int)__b); in vec_slo()
7563 static __inline__ vector float __ATTRS_o_ai vec_slo(vector float __a, in vec_slo()
7564 vector signed char __b) { in vec_slo()
7565 return (vector float)__builtin_altivec_vslo((vector int)__a, (vector int)__b); in vec_slo()
7568 static __inline__ vector float __ATTRS_o_ai vec_slo(vector float __a, in vec_slo()
7569 vector unsigned char __b) { in vec_slo()
7570 return (vector float)__builtin_altivec_vslo((vector int)__a, (vector int)__b); in vec_slo()
7575 static __inline__ vector signed char __ATTRS_o_ai
7576 vec_vslo(vector signed char __a, vector signed char __b) { in vec_vslo()
7577 return (vector signed char)__builtin_altivec_vslo((vector int)__a, in vec_vslo()
7578 (vector int)__b); in vec_vslo()
7581 static __inline__ vector signed char __ATTRS_o_ai
7582 vec_vslo(vector signed char __a, vector unsigned char __b) { in vec_vslo()
7583 return (vector signed char)__builtin_altivec_vslo((vector int)__a, in vec_vslo()
7584 (vector int)__b); in vec_vslo()
7587 static __inline__ vector unsigned char __ATTRS_o_ai
7588 vec_vslo(vector unsigned char __a, vector signed char __b) { in vec_vslo()
7589 return (vector unsigned char)__builtin_altivec_vslo((vector int)__a, in vec_vslo()
7590 (vector int)__b); in vec_vslo()
7593 static __inline__ vector unsigned char __ATTRS_o_ai
7594 vec_vslo(vector unsigned char __a, vector unsigned char __b) { in vec_vslo()
7595 return (vector unsigned char)__builtin_altivec_vslo((vector int)__a, in vec_vslo()
7596 (vector int)__b); in vec_vslo()
7599 static __inline__ vector short __ATTRS_o_ai vec_vslo(vector short __a, in vec_vslo()
7600 vector signed char __b) { in vec_vslo()
7601 return (vector short)__builtin_altivec_vslo((vector int)__a, (vector int)__b); in vec_vslo()
7604 static __inline__ vector short __ATTRS_o_ai vec_vslo(vector short __a, in vec_vslo()
7605 vector unsigned char __b) { in vec_vslo()
7606 return (vector short)__builtin_altivec_vslo((vector int)__a, (vector int)__b); in vec_vslo()
7609 static __inline__ vector unsigned short __ATTRS_o_ai
7610 vec_vslo(vector unsigned short __a, vector signed char __b) { in vec_vslo()
7611 return (vector unsigned short)__builtin_altivec_vslo((vector int)__a, in vec_vslo()
7612 (vector int)__b); in vec_vslo()
7615 static __inline__ vector unsigned short __ATTRS_o_ai
7616 vec_vslo(vector unsigned short __a, vector unsigned char __b) { in vec_vslo()
7617 return (vector unsigned short)__builtin_altivec_vslo((vector int)__a, in vec_vslo()
7618 (vector int)__b); in vec_vslo()
7621 static __inline__ vector pixel __ATTRS_o_ai vec_vslo(vector pixel __a, in vec_vslo()
7622 vector signed char __b) { in vec_vslo()
7623 return (vector pixel)__builtin_altivec_vslo((vector int)__a, (vector int)__b); in vec_vslo()
7626 static __inline__ vector pixel __ATTRS_o_ai vec_vslo(vector pixel __a, in vec_vslo()
7627 vector unsigned char __b) { in vec_vslo()
7628 return (vector pixel)__builtin_altivec_vslo((vector int)__a, (vector int)__b); in vec_vslo()
7631 static __inline__ vector int __ATTRS_o_ai vec_vslo(vector int __a, in vec_vslo()
7632 vector signed char __b) { in vec_vslo()
7633 return (vector int)__builtin_altivec_vslo(__a, (vector int)__b); in vec_vslo()
7636 static __inline__ vector int __ATTRS_o_ai vec_vslo(vector int __a, in vec_vslo()
7637 vector unsigned char __b) { in vec_vslo()
7638 return (vector int)__builtin_altivec_vslo(__a, (vector int)__b); in vec_vslo()
7641 static __inline__ vector unsigned int __ATTRS_o_ai
7642 vec_vslo(vector unsigned int __a, vector signed char __b) { in vec_vslo()
7643 return (vector unsigned int)__builtin_altivec_vslo((vector int)__a, in vec_vslo()
7644 (vector int)__b); in vec_vslo()
7647 static __inline__ vector unsigned int __ATTRS_o_ai
7648 vec_vslo(vector unsigned int __a, vector unsigned char __b) { in vec_vslo()
7649 return (vector unsigned int)__builtin_altivec_vslo((vector int)__a, in vec_vslo()
7650 (vector int)__b); in vec_vslo()
7653 static __inline__ vector float __ATTRS_o_ai vec_vslo(vector float __a, in vec_vslo()
7654 vector signed char __b) { in vec_vslo()
7655 return (vector float)__builtin_altivec_vslo((vector int)__a, (vector int)__b); in vec_vslo()
7658 static __inline__ vector float __ATTRS_o_ai vec_vslo(vector float __a, in vec_vslo()
7659 vector unsigned char __b) { in vec_vslo()
7660 return (vector float)__builtin_altivec_vslo((vector int)__a, (vector int)__b); in vec_vslo()
7665 static __inline__ vector signed char __ATTRS_o_ai
7666 vec_splat(vector signed char __a, unsigned const int __b) { in vec_splat()
7667 return vec_perm(__a, __a, (vector unsigned char)(__b & 0x0F)); in vec_splat()
7670 static __inline__ vector unsigned char __ATTRS_o_ai
7671 vec_splat(vector unsigned char __a, unsigned const int __b) { in vec_splat()
7672 return vec_perm(__a, __a, (vector unsigned char)(__b & 0x0F)); in vec_splat()
7675 static __inline__ vector bool char __ATTRS_o_ai
7676 vec_splat(vector bool char __a, unsigned const int __b) { in vec_splat()
7677 return vec_perm(__a, __a, (vector unsigned char)(__b & 0x0F)); in vec_splat()
7680 static __inline__ vector signed short __ATTRS_o_ai
7681 vec_splat(vector signed short __a, unsigned const int __b) { in vec_splat()
7685 (vector unsigned char)(b0, b1, b0, b1, b0, b1, b0, b1, b0, b1, in vec_splat()
7689 static __inline__ vector unsigned short __ATTRS_o_ai
7690 vec_splat(vector unsigned short __a, unsigned const int __b) { in vec_splat()
7694 (vector unsigned char)(b0, b1, b0, b1, b0, b1, b0, b1, b0, b1, in vec_splat()
7698 static __inline__ vector bool short __ATTRS_o_ai
7699 vec_splat(vector bool short __a, unsigned const int __b) { in vec_splat()
7703 (vector unsigned char)(b0, b1, b0, b1, b0, b1, b0, b1, b0, b1, in vec_splat()
7707 static __inline__ vector pixel __ATTRS_o_ai vec_splat(vector pixel __a, in vec_splat()
7712 (vector unsigned char)(b0, b1, b0, b1, b0, b1, b0, b1, b0, b1, in vec_splat()
7716 static __inline__ vector signed int __ATTRS_o_ai
7717 vec_splat(vector signed int __a, unsigned const int __b) { in vec_splat()
7721 (vector unsigned char)(b0, b1, b2, b3, b0, b1, b2, b3, b0, b1, in vec_splat()
7725 static __inline__ vector unsigned int __ATTRS_o_ai
7726 vec_splat(vector unsigned int __a, unsigned const int __b) { in vec_splat()
7730 (vector unsigned char)(b0, b1, b2, b3, b0, b1, b2, b3, b0, b1, in vec_splat()
7734 static __inline__ vector bool int __ATTRS_o_ai
7735 vec_splat(vector bool int __a, unsigned const int __b) { in vec_splat()
7739 (vector unsigned char)(b0, b1, b2, b3, b0, b1, b2, b3, b0, b1, in vec_splat()
7743 static __inline__ vector float __ATTRS_o_ai vec_splat(vector float __a, in vec_splat()
7748 (vector unsigned char)(b0, b1, b2, b3, b0, b1, b2, b3, b0, b1, in vec_splat()
7753 static __inline__ vector double __ATTRS_o_ai vec_splat(vector double __a, in vec_splat()
7759 (vector unsigned char)(b0, b1, b2, b3, b4, b5, b6, b7, b0, b1, in vec_splat()
7762 static __inline__ vector bool long long __ATTRS_o_ai
7763 vec_splat(vector bool long long __a, unsigned const int __b) { in vec_splat()
7768 (vector unsigned char)(b0, b1, b2, b3, b4, b5, b6, b7, b0, b1, in vec_splat()
7771 static __inline__ vector signed long long __ATTRS_o_ai
7772 vec_splat(vector signed long long __a, unsigned const int __b) { in vec_splat()
7777 (vector unsigned char)(b0, b1, b2, b3, b4, b5, b6, b7, b0, b1, in vec_splat()
7780 static __inline__ vector unsigned long long __ATTRS_o_ai
7781 vec_splat(vector unsigned long long __a, unsigned const int __b) { in vec_splat()
7786 (vector unsigned char)(b0, b1, b2, b3, b4, b5, b6, b7, b0, b1, in vec_splat()
7795 static __inline__ vector signed char __ATTRS_o_ai
7796 vec_vspltb(vector signed char __a, unsigned char __b) { in vec_vspltb()
7797 return vec_perm(__a, __a, (vector unsigned char)(__b)); in vec_vspltb()
7800 static __inline__ vector unsigned char __ATTRS_o_ai
7801 vec_vspltb(vector unsigned char __a, unsigned char __b) { in vec_vspltb()
7802 return vec_perm(__a, __a, (vector unsigned char)(__b)); in vec_vspltb()
7805 static __inline__ vector bool char __ATTRS_o_ai vec_vspltb(vector bool char __a, in vec_vspltb()
7807 return vec_perm(__a, __a, (vector unsigned char)(__b)); in vec_vspltb()
7814 static __inline__ vector short __ATTRS_o_ai vec_vsplth(vector short __a, in vec_vsplth()
7819 (vector unsigned char)(__b, b1, __b, b1, __b, b1, __b, b1, in vec_vsplth()
7823 static __inline__ vector unsigned short __ATTRS_o_ai
7824 vec_vsplth(vector unsigned short __a, unsigned char __b) { in vec_vsplth()
7828 (vector unsigned char)(__b, b1, __b, b1, __b, b1, __b, b1, in vec_vsplth()
7832 static __inline__ vector bool short __ATTRS_o_ai
7833 vec_vsplth(vector bool short __a, unsigned char __b) { in vec_vsplth()
7837 (vector unsigned char)(__b, b1, __b, b1, __b, b1, __b, b1, in vec_vsplth()
7841 static __inline__ vector pixel __ATTRS_o_ai vec_vsplth(vector pixel __a, in vec_vsplth()
7846 (vector unsigned char)(__b, b1, __b, b1, __b, b1, __b, b1, in vec_vsplth()
7854 static __inline__ vector int __ATTRS_o_ai vec_vspltw(vector int __a, in vec_vspltw()
7859 (vector unsigned char)(__b, b1, b2, b3, __b, b1, b2, b3, __b, in vec_vspltw()
7863 static __inline__ vector unsigned int __ATTRS_o_ai
7864 vec_vspltw(vector unsigned int __a, unsigned char __b) { in vec_vspltw()
7868 (vector unsigned char)(__b, b1, b2, b3, __b, b1, b2, b3, __b, in vec_vspltw()
7872 static __inline__ vector bool int __ATTRS_o_ai vec_vspltw(vector bool int __a, in vec_vspltw()
7877 (vector unsigned char)(__b, b1, b2, b3, __b, b1, b2, b3, __b, in vec_vspltw()
7881 static __inline__ vector float __ATTRS_o_ai vec_vspltw(vector float __a, in vec_vspltw()
7886 (vector unsigned char)(__b, b1, b2, b3, __b, b1, b2, b3, __b, in vec_vspltw()
7895 static __inline__ vector signed char __ATTRS_o_ai
7897 return (vector signed char)(__a); in vec_splat_s8()
7903 static __inline__ vector signed char __ATTRS_o_ai
7905 return (vector signed char)(__a); in vec_vspltisb()
7913 static __inline__ vector short __ATTRS_o_ai vec_splat_s16(signed char __a) { in vec_splat_s16()
7914 return (vector short)(__a); in vec_splat_s16()
7920 static __inline__ vector short __ATTRS_o_ai vec_vspltish(signed char __a) { in vec_vspltish()
7921 return (vector short)(__a); in vec_vspltish()
7929 static __inline__ vector int __ATTRS_o_ai vec_splat_s32(signed char __a) { in vec_splat_s32()
7930 return (vector int)(__a); in vec_splat_s32()
7936 static __inline__ vector int __ATTRS_o_ai vec_vspltisw(signed char __a) { in vec_vspltisw()
7937 return (vector int)(__a); in vec_vspltisw()
7943 static __inline__ vector unsigned char __ATTRS_o_ai
7945 return (vector unsigned char)(__a); in vec_splat_u8()
7951 static __inline__ vector unsigned short __ATTRS_o_ai
7953 return (vector unsigned short)(__a); in vec_splat_u16()
7959 static __inline__ vector unsigned int __ATTRS_o_ai
7961 return (vector unsigned int)(__a); in vec_splat_u32()
7966 static __inline__ vector signed char __ATTRS_o_ai
7967 vec_sr(vector signed char __a, vector unsigned char __b) { in vec_sr()
7968 vector unsigned char __res = (vector unsigned char)__a >> __b; in vec_sr()
7969 return (vector signed char)__res; in vec_sr()
7972 static __inline__ vector unsigned char __ATTRS_o_ai
7973 vec_sr(vector unsigned char __a, vector unsigned char __b) { in vec_sr()
7977 static __inline__ vector signed short __ATTRS_o_ai
7978 vec_sr(vector signed short __a, vector unsigned short __b) { in vec_sr()
7979 vector unsigned short __res = (vector unsigned short)__a >> __b; in vec_sr()
7980 return (vector signed short)__res; in vec_sr()
7983 static __inline__ vector unsigned short __ATTRS_o_ai
7984 vec_sr(vector unsigned short __a, vector unsigned short __b) { in vec_sr()
7988 static __inline__ vector signed int __ATTRS_o_ai
7989 vec_sr(vector signed int __a, vector unsigned int __b) { in vec_sr()
7990 vector unsigned int __res = (vector unsigned int)__a >> __b; in vec_sr()
7991 return (vector signed int)__res; in vec_sr()
7994 static __inline__ vector unsigned int __ATTRS_o_ai
7995 vec_sr(vector unsigned int __a, vector unsigned int __b) { in vec_sr()
8000 static __inline__ vector signed long long __ATTRS_o_ai
8001 vec_sr(vector signed long long __a, vector unsigned long long __b) { in vec_sr()
8002 vector unsigned long long __res = (vector unsigned long long)__a >> __b; in vec_sr()
8003 return (vector signed long long)__res; in vec_sr()
8006 static __inline__ vector unsigned long long __ATTRS_o_ai
8007 vec_sr(vector unsigned long long __a, vector unsigned long long __b) { in vec_sr()
8016 static __inline__ vector signed char __ATTRS_o_ai
8017 vec_vsrb(vector signed char __a, vector unsigned char __b) { in vec_vsrb()
8018 return __a >> (vector signed char)__b; in vec_vsrb()
8021 static __inline__ vector unsigned char __ATTRS_o_ai
8022 vec_vsrb(vector unsigned char __a, vector unsigned char __b) { in vec_vsrb()
8030 static __inline__ vector short __ATTRS_o_ai
8031 vec_vsrh(vector short __a, vector unsigned short __b) { in vec_vsrh()
8032 return __a >> (vector short)__b; in vec_vsrh()
8035 static __inline__ vector unsigned short __ATTRS_o_ai
8036 vec_vsrh(vector unsigned short __a, vector unsigned short __b) { in vec_vsrh()
8044 static __inline__ vector int __ATTRS_o_ai vec_vsrw(vector int __a, in vec_vsrw()
8045 vector unsigned int __b) { in vec_vsrw()
8046 return __a >> (vector int)__b; in vec_vsrw()
8049 static __inline__ vector unsigned int __ATTRS_o_ai
8050 vec_vsrw(vector unsigned int __a, vector unsigned int __b) { in vec_vsrw()
8056 static __inline__ vector signed char __ATTRS_o_ai
8057 vec_sra(vector signed char __a, vector unsigned char __b) { in vec_sra()
8058 return (vector signed char)__builtin_altivec_vsrab((vector char)__a, __b); in vec_sra()
8061 static __inline__ vector unsigned char __ATTRS_o_ai
8062 vec_sra(vector unsigned char __a, vector unsigned char __b) { in vec_sra()
8063 return (vector unsigned char)__builtin_altivec_vsrab((vector char)__a, __b); in vec_sra()
8066 static __inline__ vector short __ATTRS_o_ai vec_sra(vector short __a, in vec_sra()
8067 vector unsigned short __b) { in vec_sra()
8068 return __builtin_altivec_vsrah(__a, (vector unsigned short)__b); in vec_sra()
8071 static __inline__ vector unsigned short __ATTRS_o_ai
8072 vec_sra(vector unsigned short __a, vector unsigned short __b) { in vec_sra()
8073 return (vector unsigned short)__builtin_altivec_vsrah((vector short)__a, __b); in vec_sra()
8076 static __inline__ vector int __ATTRS_o_ai vec_sra(vector int __a, in vec_sra()
8077 vector unsigned int __b) { in vec_sra()
8081 static __inline__ vector unsigned int __ATTRS_o_ai
8082 vec_sra(vector unsigned int __a, vector unsigned int __b) { in vec_sra()
8083 return (vector unsigned int)__builtin_altivec_vsraw((vector int)__a, __b); in vec_sra()
8087 static __inline__ vector signed long long __ATTRS_o_ai
8088 vec_sra(vector signed long long __a, vector unsigned long long __b) { in vec_sra()
8092 static __inline__ vector unsigned long long __ATTRS_o_ai
8093 vec_sra(vector unsigned long long __a, vector unsigned long long __b) { in vec_sra()
8094 return (vector unsigned long long)((vector signed long long)__a >> __b); in vec_sra()
8100 static __inline__ vector signed char __ATTRS_o_ai
8101 vec_vsrab(vector signed char __a, vector unsigned char __b) { in vec_vsrab()
8102 return (vector signed char)__builtin_altivec_vsrab((vector char)__a, __b); in vec_vsrab()
8105 static __inline__ vector unsigned char __ATTRS_o_ai
8106 vec_vsrab(vector unsigned char __a, vector unsigned char __b) { in vec_vsrab()
8107 return (vector unsigned char)__builtin_altivec_vsrab((vector char)__a, __b); in vec_vsrab()
8112 static __inline__ vector short __ATTRS_o_ai
8113 vec_vsrah(vector short __a, vector unsigned short __b) { in vec_vsrah()
8114 return __builtin_altivec_vsrah(__a, (vector unsigned short)__b); in vec_vsrah()
8117 static __inline__ vector unsigned short __ATTRS_o_ai
8118 vec_vsrah(vector unsigned short __a, vector unsigned short __b) { in vec_vsrah()
8119 return (vector unsigned short)__builtin_altivec_vsrah((vector short)__a, __b); in vec_vsrah()
8124 static __inline__ vector int __ATTRS_o_ai vec_vsraw(vector int __a, in vec_vsraw()
8125 vector unsigned int __b) { in vec_vsraw()
8129 static __inline__ vector unsigned int __ATTRS_o_ai
8130 vec_vsraw(vector unsigned int __a, vector unsigned int __b) { in vec_vsraw()
8131 return (vector unsigned int)__builtin_altivec_vsraw((vector int)__a, __b); in vec_vsraw()
8136 static __inline__ vector signed char __ATTRS_o_ai
8137 vec_srl(vector signed char __a, vector unsigned char __b) { in vec_srl()
8138 return (vector signed char)__builtin_altivec_vsr((vector int)__a, in vec_srl()
8139 (vector int)__b); in vec_srl()
8142 static __inline__ vector signed char __ATTRS_o_ai
8143 vec_srl(vector signed char __a, vector unsigned short __b) { in vec_srl()
8144 return (vector signed char)__builtin_altivec_vsr((vector int)__a, in vec_srl()
8145 (vector int)__b); in vec_srl()
8148 static __inline__ vector signed char __ATTRS_o_ai
8149 vec_srl(vector signed char __a, vector unsigned int __b) { in vec_srl()
8150 return (vector signed char)__builtin_altivec_vsr((vector int)__a, in vec_srl()
8151 (vector int)__b); in vec_srl()
8154 static __inline__ vector unsigned char __ATTRS_o_ai
8155 vec_srl(vector unsigned char __a, vector unsigned char __b) { in vec_srl()
8156 return (vector unsigned char)__builtin_altivec_vsr((vector int)__a, in vec_srl()
8157 (vector int)__b); in vec_srl()
8160 static __inline__ vector unsigned char __ATTRS_o_ai
8161 vec_srl(vector unsigned char __a, vector unsigned short __b) { in vec_srl()
8162 return (vector unsigned char)__builtin_altivec_vsr((vector int)__a, in vec_srl()
8163 (vector int)__b); in vec_srl()
8166 static __inline__ vector unsigned char __ATTRS_o_ai
8167 vec_srl(vector unsigned char __a, vector unsigned int __b) { in vec_srl()
8168 return (vector unsigned char)__builtin_altivec_vsr((vector int)__a, in vec_srl()
8169 (vector int)__b); in vec_srl()
8172 static __inline__ vector bool char __ATTRS_o_ai
8173 vec_srl(vector bool char __a, vector unsigned char __b) { in vec_srl()
8174 return (vector bool char)__builtin_altivec_vsr((vector int)__a, in vec_srl()
8175 (vector int)__b); in vec_srl()
8178 static __inline__ vector bool char __ATTRS_o_ai
8179 vec_srl(vector bool char __a, vector unsigned short __b) { in vec_srl()
8180 return (vector bool char)__builtin_altivec_vsr((vector int)__a, in vec_srl()
8181 (vector int)__b); in vec_srl()
8184 static __inline__ vector bool char __ATTRS_o_ai
8185 vec_srl(vector bool char __a, vector unsigned int __b) { in vec_srl()
8186 return (vector bool char)__builtin_altivec_vsr((vector int)__a, in vec_srl()
8187 (vector int)__b); in vec_srl()
8190 static __inline__ vector short __ATTRS_o_ai vec_srl(vector short __a, in vec_srl()
8191 vector unsigned char __b) { in vec_srl()
8192 return (vector short)__builtin_altivec_vsr((vector int)__a, (vector int)__b); in vec_srl()
8195 static __inline__ vector short __ATTRS_o_ai vec_srl(vector short __a, in vec_srl()
8196 vector unsigned short __b) { in vec_srl()
8197 return (vector short)__builtin_altivec_vsr((vector int)__a, (vector int)__b); in vec_srl()
8200 static __inline__ vector short __ATTRS_o_ai vec_srl(vector short __a, in vec_srl()
8201 vector unsigned int __b) { in vec_srl()
8202 return (vector short)__builtin_altivec_vsr((vector int)__a, (vector int)__b); in vec_srl()
8205 static __inline__ vector unsigned short __ATTRS_o_ai
8206 vec_srl(vector unsigned short __a, vector unsigned char __b) { in vec_srl()
8207 return (vector unsigned short)__builtin_altivec_vsr((vector int)__a, in vec_srl()
8208 (vector int)__b); in vec_srl()
8211 static __inline__ vector unsigned short __ATTRS_o_ai
8212 vec_srl(vector unsigned short __a, vector unsigned short __b) { in vec_srl()
8213 return (vector unsigned short)__builtin_altivec_vsr((vector int)__a, in vec_srl()
8214 (vector int)__b); in vec_srl()
8217 static __inline__ vector unsigned short __ATTRS_o_ai
8218 vec_srl(vector unsigned short __a, vector unsigned int __b) { in vec_srl()
8219 return (vector unsigned short)__builtin_altivec_vsr((vector int)__a, in vec_srl()
8220 (vector int)__b); in vec_srl()
8223 static __inline__ vector bool short __ATTRS_o_ai
8224 vec_srl(vector bool short __a, vector unsigned char __b) { in vec_srl()
8225 return (vector bool short)__builtin_altivec_vsr((vector int)__a, in vec_srl()
8226 (vector int)__b); in vec_srl()
8229 static __inline__ vector bool short __ATTRS_o_ai
8230 vec_srl(vector bool short __a, vector unsigned short __b) { in vec_srl()
8231 return (vector bool short)__builtin_altivec_vsr((vector int)__a, in vec_srl()
8232 (vector int)__b); in vec_srl()
8235 static __inline__ vector bool short __ATTRS_o_ai
8236 vec_srl(vector bool short __a, vector unsigned int __b) { in vec_srl()
8237 return (vector bool short)__builtin_altivec_vsr((vector int)__a, in vec_srl()
8238 (vector int)__b); in vec_srl()
8241 static __inline__ vector pixel __ATTRS_o_ai vec_srl(vector pixel __a, in vec_srl()
8242 vector unsigned char __b) { in vec_srl()
8243 return (vector pixel)__builtin_altivec_vsr((vector int)__a, (vector int)__b); in vec_srl()
8246 static __inline__ vector pixel __ATTRS_o_ai vec_srl(vector pixel __a, in vec_srl()
8247 vector unsigned short __b) { in vec_srl()
8248 return (vector pixel)__builtin_altivec_vsr((vector int)__a, (vector int)__b); in vec_srl()
8251 static __inline__ vector pixel __ATTRS_o_ai vec_srl(vector pixel __a, in vec_srl()
8252 vector unsigned int __b) { in vec_srl()
8253 return (vector pixel)__builtin_altivec_vsr((vector int)__a, (vector int)__b); in vec_srl()
8256 static __inline__ vector int __ATTRS_o_ai vec_srl(vector int __a, in vec_srl()
8257 vector unsigned char __b) { in vec_srl()
8258 return (vector int)__builtin_altivec_vsr(__a, (vector int)__b); in vec_srl()
8261 static __inline__ vector int __ATTRS_o_ai vec_srl(vector int __a, in vec_srl()
8262 vector unsigned short __b) { in vec_srl()
8263 return (vector int)__builtin_altivec_vsr(__a, (vector int)__b); in vec_srl()
8266 static __inline__ vector int __ATTRS_o_ai vec_srl(vector int __a, in vec_srl()
8267 vector unsigned int __b) { in vec_srl()
8268 return (vector int)__builtin_altivec_vsr(__a, (vector int)__b); in vec_srl()
8271 static __inline__ vector unsigned int __ATTRS_o_ai
8272 vec_srl(vector unsigned int __a, vector unsigned char __b) { in vec_srl()
8273 return (vector unsigned int)__builtin_altivec_vsr((vector int)__a, in vec_srl()
8274 (vector int)__b); in vec_srl()
8277 static __inline__ vector unsigned int __ATTRS_o_ai
8278 vec_srl(vector unsigned int __a, vector unsigned short __b) { in vec_srl()
8279 return (vector unsigned int)__builtin_altivec_vsr((vector int)__a, in vec_srl()
8280 (vector int)__b); in vec_srl()
8283 static __inline__ vector unsigned int __ATTRS_o_ai
8284 vec_srl(vector unsigned int __a, vector unsigned int __b) { in vec_srl()
8285 return (vector unsigned int)__builtin_altivec_vsr((vector int)__a, in vec_srl()
8286 (vector int)__b); in vec_srl()
8289 static __inline__ vector bool int __ATTRS_o_ai
8290 vec_srl(vector bool int __a, vector unsigned char __b) { in vec_srl()
8291 return (vector bool int)__builtin_altivec_vsr((vector int)__a, in vec_srl()
8292 (vector int)__b); in vec_srl()
8295 static __inline__ vector bool int __ATTRS_o_ai
8296 vec_srl(vector bool int __a, vector unsigned short __b) { in vec_srl()
8297 return (vector bool int)__builtin_altivec_vsr((vector int)__a, in vec_srl()
8298 (vector int)__b); in vec_srl()
8301 static __inline__ vector bool int __ATTRS_o_ai
8302 vec_srl(vector bool int __a, vector unsigned int __b) { in vec_srl()
8303 return (vector bool int)__builtin_altivec_vsr((vector int)__a, in vec_srl()
8304 (vector int)__b); in vec_srl()
8309 static __inline__ vector signed char __ATTRS_o_ai
8310 vec_vsr(vector signed char __a, vector unsigned char __b) { in vec_vsr()
8311 return (vector signed char)__builtin_altivec_vsr((vector int)__a, in vec_vsr()
8312 (vector int)__b); in vec_vsr()
8315 static __inline__ vector signed char __ATTRS_o_ai
8316 vec_vsr(vector signed char __a, vector unsigned short __b) { in vec_vsr()
8317 return (vector signed char)__builtin_altivec_vsr((vector int)__a, in vec_vsr()
8318 (vector int)__b); in vec_vsr()
8321 static __inline__ vector signed char __ATTRS_o_ai
8322 vec_vsr(vector signed char __a, vector unsigned int __b) { in vec_vsr()
8323 return (vector signed char)__builtin_altivec_vsr((vector int)__a, in vec_vsr()
8324 (vector int)__b); in vec_vsr()
8327 static __inline__ vector unsigned char __ATTRS_o_ai
8328 vec_vsr(vector unsigned char __a, vector unsigned char __b) { in vec_vsr()
8329 return (vector unsigned char)__builtin_altivec_vsr((vector int)__a, in vec_vsr()
8330 (vector int)__b); in vec_vsr()
8333 static __inline__ vector unsigned char __ATTRS_o_ai
8334 vec_vsr(vector unsigned char __a, vector unsigned short __b) { in vec_vsr()
8335 return (vector unsigned char)__builtin_altivec_vsr((vector int)__a, in vec_vsr()
8336 (vector int)__b); in vec_vsr()
8339 static __inline__ vector unsigned char __ATTRS_o_ai
8340 vec_vsr(vector unsigned char __a, vector unsigned int __b) { in vec_vsr()
8341 return (vector unsigned char)__builtin_altivec_vsr((vector int)__a, in vec_vsr()
8342 (vector int)__b); in vec_vsr()
8345 static __inline__ vector bool char __ATTRS_o_ai
8346 vec_vsr(vector bool char __a, vector unsigned char __b) { in vec_vsr()
8347 return (vector bool char)__builtin_altivec_vsr((vector int)__a, in vec_vsr()
8348 (vector int)__b); in vec_vsr()
8351 static __inline__ vector bool char __ATTRS_o_ai
8352 vec_vsr(vector bool char __a, vector unsigned short __b) { in vec_vsr()
8353 return (vector bool char)__builtin_altivec_vsr((vector int)__a, in vec_vsr()
8354 (vector int)__b); in vec_vsr()
8357 static __inline__ vector bool char __ATTRS_o_ai
8358 vec_vsr(vector bool char __a, vector unsigned int __b) { in vec_vsr()
8359 return (vector bool char)__builtin_altivec_vsr((vector int)__a, in vec_vsr()
8360 (vector int)__b); in vec_vsr()
8363 static __inline__ vector short __ATTRS_o_ai vec_vsr(vector short __a, in vec_vsr()
8364 vector unsigned char __b) { in vec_vsr()
8365 return (vector short)__builtin_altivec_vsr((vector int)__a, (vector int)__b); in vec_vsr()
8368 static __inline__ vector short __ATTRS_o_ai vec_vsr(vector short __a, in vec_vsr()
8369 vector unsigned short __b) { in vec_vsr()
8370 return (vector short)__builtin_altivec_vsr((vector int)__a, (vector int)__b); in vec_vsr()
8373 static __inline__ vector short __ATTRS_o_ai vec_vsr(vector short __a, in vec_vsr()
8374 vector unsigned int __b) { in vec_vsr()
8375 return (vector short)__builtin_altivec_vsr((vector int)__a, (vector int)__b); in vec_vsr()
8378 static __inline__ vector unsigned short __ATTRS_o_ai
8379 vec_vsr(vector unsigned short __a, vector unsigned char __b) { in vec_vsr()
8380 return (vector unsigned short)__builtin_altivec_vsr((vector int)__a, in vec_vsr()
8381 (vector int)__b); in vec_vsr()
8384 static __inline__ vector unsigned short __ATTRS_o_ai
8385 vec_vsr(vector unsigned short __a, vector unsigned short __b) { in vec_vsr()
8386 return (vector unsigned short)__builtin_altivec_vsr((vector int)__a, in vec_vsr()
8387 (vector int)__b); in vec_vsr()
8390 static __inline__ vector unsigned short __ATTRS_o_ai
8391 vec_vsr(vector unsigned short __a, vector unsigned int __b) { in vec_vsr()
8392 return (vector unsigned short)__builtin_altivec_vsr((vector int)__a, in vec_vsr()
8393 (vector int)__b); in vec_vsr()
8396 static __inline__ vector bool short __ATTRS_o_ai
8397 vec_vsr(vector bool short __a, vector unsigned char __b) { in vec_vsr()
8398 return (vector bool short)__builtin_altivec_vsr((vector int)__a, in vec_vsr()
8399 (vector int)__b); in vec_vsr()
8402 static __inline__ vector bool short __ATTRS_o_ai
8403 vec_vsr(vector bool short __a, vector unsigned short __b) { in vec_vsr()
8404 return (vector bool short)__builtin_altivec_vsr((vector int)__a, in vec_vsr()
8405 (vector int)__b); in vec_vsr()
8408 static __inline__ vector bool short __ATTRS_o_ai
8409 vec_vsr(vector bool short __a, vector unsigned int __b) { in vec_vsr()
8410 return (vector bool short)__builtin_altivec_vsr((vector int)__a, in vec_vsr()
8411 (vector int)__b); in vec_vsr()
8414 static __inline__ vector pixel __ATTRS_o_ai vec_vsr(vector pixel __a, in vec_vsr()
8415 vector unsigned char __b) { in vec_vsr()
8416 return (vector pixel)__builtin_altivec_vsr((vector int)__a, (vector int)__b); in vec_vsr()
8419 static __inline__ vector pixel __ATTRS_o_ai vec_vsr(vector pixel __a, in vec_vsr()
8420 vector unsigned short __b) { in vec_vsr()
8421 return (vector pixel)__builtin_altivec_vsr((vector int)__a, (vector int)__b); in vec_vsr()
8424 static __inline__ vector pixel __ATTRS_o_ai vec_vsr(vector pixel __a, in vec_vsr()
8425 vector unsigned int __b) { in vec_vsr()
8426 return (vector pixel)__builtin_altivec_vsr((vector int)__a, (vector int)__b); in vec_vsr()
8429 static __inline__ vector int __ATTRS_o_ai vec_vsr(vector int __a, in vec_vsr()
8430 vector unsigned char __b) { in vec_vsr()
8431 return (vector int)__builtin_altivec_vsr(__a, (vector int)__b); in vec_vsr()
8434 static __inline__ vector int __ATTRS_o_ai vec_vsr(vector int __a, in vec_vsr()
8435 vector unsigned short __b) { in vec_vsr()
8436 return (vector int)__builtin_altivec_vsr(__a, (vector int)__b); in vec_vsr()
8439 static __inline__ vector int __ATTRS_o_ai vec_vsr(vector int __a, in vec_vsr()
8440 vector unsigned int __b) { in vec_vsr()
8441 return (vector int)__builtin_altivec_vsr(__a, (vector int)__b); in vec_vsr()
8444 static __inline__ vector unsigned int __ATTRS_o_ai
8445 vec_vsr(vector unsigned int __a, vector unsigned char __b) { in vec_vsr()
8446 return (vector unsigned int)__builtin_altivec_vsr((vector int)__a, in vec_vsr()
8447 (vector int)__b); in vec_vsr()
8450 static __inline__ vector unsigned int __ATTRS_o_ai
8451 vec_vsr(vector unsigned int __a, vector unsigned short __b) { in vec_vsr()
8452 return (vector unsigned int)__builtin_altivec_vsr((vector int)__a, in vec_vsr()
8453 (vector int)__b); in vec_vsr()
8456 static __inline__ vector unsigned int __ATTRS_o_ai
8457 vec_vsr(vector unsigned int __a, vector unsigned int __b) { in vec_vsr()
8458 return (vector unsigned int)__builtin_altivec_vsr((vector int)__a, in vec_vsr()
8459 (vector int)__b); in vec_vsr()
8462 static __inline__ vector bool int __ATTRS_o_ai
8463 vec_vsr(vector bool int __a, vector unsigned char __b) { in vec_vsr()
8464 return (vector bool int)__builtin_altivec_vsr((vector int)__a, in vec_vsr()
8465 (vector int)__b); in vec_vsr()
8468 static __inline__ vector bool int __ATTRS_o_ai
8469 vec_vsr(vector bool int __a, vector unsigned short __b) { in vec_vsr()
8470 return (vector bool int)__builtin_altivec_vsr((vector int)__a, in vec_vsr()
8471 (vector int)__b); in vec_vsr()
8474 static __inline__ vector bool int __ATTRS_o_ai
8475 vec_vsr(vector bool int __a, vector unsigned int __b) { in vec_vsr()
8476 return (vector bool int)__builtin_altivec_vsr((vector int)__a, in vec_vsr()
8477 (vector int)__b); in vec_vsr()
8482 static __inline__ vector signed char __ATTRS_o_ai
8483 vec_sro(vector signed char __a, vector signed char __b) { in vec_sro()
8484 return (vector signed char)__builtin_altivec_vsro((vector int)__a, in vec_sro()
8485 (vector int)__b); in vec_sro()
8488 static __inline__ vector signed char __ATTRS_o_ai
8489 vec_sro(vector signed char __a, vector unsigned char __b) { in vec_sro()
8490 return (vector signed char)__builtin_altivec_vsro((vector int)__a, in vec_sro()
8491 (vector int)__b); in vec_sro()
8494 static __inline__ vector unsigned char __ATTRS_o_ai
8495 vec_sro(vector unsigned char __a, vector signed char __b) { in vec_sro()
8496 return (vector unsigned char)__builtin_altivec_vsro((vector int)__a, in vec_sro()
8497 (vector int)__b); in vec_sro()
8500 static __inline__ vector unsigned char __ATTRS_o_ai
8501 vec_sro(vector unsigned char __a, vector unsigned char __b) { in vec_sro()
8502 return (vector unsigned char)__builtin_altivec_vsro((vector int)__a, in vec_sro()
8503 (vector int)__b); in vec_sro()
8506 static __inline__ vector short __ATTRS_o_ai vec_sro(vector short __a, in vec_sro()
8507 vector signed char __b) { in vec_sro()
8508 return (vector short)__builtin_altivec_vsro((vector int)__a, (vector int)__b); in vec_sro()
8511 static __inline__ vector short __ATTRS_o_ai vec_sro(vector short __a, in vec_sro()
8512 vector unsigned char __b) { in vec_sro()
8513 return (vector short)__builtin_altivec_vsro((vector int)__a, (vector int)__b); in vec_sro()
8516 static __inline__ vector unsigned short __ATTRS_o_ai
8517 vec_sro(vector unsigned short __a, vector signed char __b) { in vec_sro()
8518 return (vector unsigned short)__builtin_altivec_vsro((vector int)__a, in vec_sro()
8519 (vector int)__b); in vec_sro()
8522 static __inline__ vector unsigned short __ATTRS_o_ai
8523 vec_sro(vector unsigned short __a, vector unsigned char __b) { in vec_sro()
8524 return (vector unsigned short)__builtin_altivec_vsro((vector int)__a, in vec_sro()
8525 (vector int)__b); in vec_sro()
8528 static __inline__ vector pixel __ATTRS_o_ai vec_sro(vector pixel __a, in vec_sro()
8529 vector signed char __b) { in vec_sro()
8530 return (vector pixel)__builtin_altivec_vsro((vector int)__a, (vector int)__b); in vec_sro()
8533 static __inline__ vector pixel __ATTRS_o_ai vec_sro(vector pixel __a, in vec_sro()
8534 vector unsigned char __b) { in vec_sro()
8535 return (vector pixel)__builtin_altivec_vsro((vector int)__a, (vector int)__b); in vec_sro()
8538 static __inline__ vector int __ATTRS_o_ai vec_sro(vector int __a, in vec_sro()
8539 vector signed char __b) { in vec_sro()
8540 return (vector int)__builtin_altivec_vsro(__a, (vector int)__b); in vec_sro()
8543 static __inline__ vector int __ATTRS_o_ai vec_sro(vector int __a, in vec_sro()
8544 vector unsigned char __b) { in vec_sro()
8545 return (vector int)__builtin_altivec_vsro(__a, (vector int)__b); in vec_sro()
8548 static __inline__ vector unsigned int __ATTRS_o_ai
8549 vec_sro(vector unsigned int __a, vector signed char __b) { in vec_sro()
8550 return (vector unsigned int)__builtin_altivec_vsro((vector int)__a, in vec_sro()
8551 (vector int)__b); in vec_sro()
8554 static __inline__ vector unsigned int __ATTRS_o_ai
8555 vec_sro(vector unsigned int __a, vector unsigned char __b) { in vec_sro()
8556 return (vector unsigned int)__builtin_altivec_vsro((vector int)__a, in vec_sro()
8557 (vector int)__b); in vec_sro()
8560 static __inline__ vector float __ATTRS_o_ai vec_sro(vector float __a, in vec_sro()
8561 vector signed char __b) { in vec_sro()
8562 return (vector float)__builtin_altivec_vsro((vector int)__a, (vector int)__b); in vec_sro()
8565 static __inline__ vector float __ATTRS_o_ai vec_sro(vector float __a, in vec_sro()
8566 vector unsigned char __b) { in vec_sro()
8567 return (vector float)__builtin_altivec_vsro((vector int)__a, (vector int)__b); in vec_sro()
8572 static __inline__ vector signed char __ATTRS_o_ai
8573 vec_vsro(vector signed char __a, vector signed char __b) { in vec_vsro()
8574 return (vector signed char)__builtin_altivec_vsro((vector int)__a, in vec_vsro()
8575 (vector int)__b); in vec_vsro()
8578 static __inline__ vector signed char __ATTRS_o_ai
8579 vec_vsro(vector signed char __a, vector unsigned char __b) { in vec_vsro()
8580 return (vector signed char)__builtin_altivec_vsro((vector int)__a, in vec_vsro()
8581 (vector int)__b); in vec_vsro()
8584 static __inline__ vector unsigned char __ATTRS_o_ai
8585 vec_vsro(vector unsigned char __a, vector signed char __b) { in vec_vsro()
8586 return (vector unsigned char)__builtin_altivec_vsro((vector int)__a, in vec_vsro()
8587 (vector int)__b); in vec_vsro()
8590 static __inline__ vector unsigned char __ATTRS_o_ai
8591 vec_vsro(vector unsigned char __a, vector unsigned char __b) { in vec_vsro()
8592 return (vector unsigned char)__builtin_altivec_vsro((vector int)__a, in vec_vsro()
8593 (vector int)__b); in vec_vsro()
8596 static __inline__ vector short __ATTRS_o_ai vec_vsro(vector short __a, in vec_vsro()
8597 vector signed char __b) { in vec_vsro()
8598 return (vector short)__builtin_altivec_vsro((vector int)__a, (vector int)__b); in vec_vsro()
8601 static __inline__ vector short __ATTRS_o_ai vec_vsro(vector short __a, in vec_vsro()
8602 vector unsigned char __b) { in vec_vsro()
8603 return (vector short)__builtin_altivec_vsro((vector int)__a, (vector int)__b); in vec_vsro()
8606 static __inline__ vector unsigned short __ATTRS_o_ai
8607 vec_vsro(vector unsigned short __a, vector signed char __b) { in vec_vsro()
8608 return (vector unsigned short)__builtin_altivec_vsro((vector int)__a, in vec_vsro()
8609 (vector int)__b); in vec_vsro()
8612 static __inline__ vector unsigned short __ATTRS_o_ai
8613 vec_vsro(vector unsigned short __a, vector unsigned char __b) { in vec_vsro()
8614 return (vector unsigned short)__builtin_altivec_vsro((vector int)__a, in vec_vsro()
8615 (vector int)__b); in vec_vsro()
8618 static __inline__ vector pixel __ATTRS_o_ai vec_vsro(vector pixel __a, in vec_vsro()
8619 vector signed char __b) { in vec_vsro()
8620 return (vector pixel)__builtin_altivec_vsro((vector int)__a, (vector int)__b); in vec_vsro()
8623 static __inline__ vector pixel __ATTRS_o_ai vec_vsro(vector pixel __a, in vec_vsro()
8624 vector unsigned char __b) { in vec_vsro()
8625 return (vector pixel)__builtin_altivec_vsro((vector int)__a, (vector int)__b); in vec_vsro()
8628 static __inline__ vector int __ATTRS_o_ai vec_vsro(vector int __a, in vec_vsro()
8629 vector signed char __b) { in vec_vsro()
8630 return (vector int)__builtin_altivec_vsro(__a, (vector int)__b); in vec_vsro()
8633 static __inline__ vector int __ATTRS_o_ai vec_vsro(vector int __a, in vec_vsro()
8634 vector unsigned char __b) { in vec_vsro()
8635 return (vector int)__builtin_altivec_vsro(__a, (vector int)__b); in vec_vsro()
8638 static __inline__ vector unsigned int __ATTRS_o_ai
8639 vec_vsro(vector unsigned int __a, vector signed char __b) { in vec_vsro()
8640 return (vector unsigned int)__builtin_altivec_vsro((vector int)__a, in vec_vsro()
8641 (vector int)__b); in vec_vsro()
8644 static __inline__ vector unsigned int __ATTRS_o_ai
8645 vec_vsro(vector unsigned int __a, vector unsigned char __b) { in vec_vsro()
8646 return (vector unsigned int)__builtin_altivec_vsro((vector int)__a, in vec_vsro()
8647 (vector int)__b); in vec_vsro()
8650 static __inline__ vector float __ATTRS_o_ai vec_vsro(vector float __a, in vec_vsro()
8651 vector signed char __b) { in vec_vsro()
8652 return (vector float)__builtin_altivec_vsro((vector int)__a, (vector int)__b); in vec_vsro()
8655 static __inline__ vector float __ATTRS_o_ai vec_vsro(vector float __a, in vec_vsro()
8656 vector unsigned char __b) { in vec_vsro()
8657 return (vector float)__builtin_altivec_vsro((vector int)__a, (vector int)__b); in vec_vsro()
8662 static __inline__ void __ATTRS_o_ai vec_st(vector signed char __a, int __b, in vec_st()
8663 vector signed char *__c) { in vec_st()
8664 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_st()
8667 static __inline__ void __ATTRS_o_ai vec_st(vector signed char __a, int __b, in vec_st()
8669 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_st()
8672 static __inline__ void __ATTRS_o_ai vec_st(vector unsigned char __a, int __b, in vec_st()
8673 vector unsigned char *__c) { in vec_st()
8674 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_st()
8677 static __inline__ void __ATTRS_o_ai vec_st(vector unsigned char __a, int __b, in vec_st()
8679 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_st()
8682 static __inline__ void __ATTRS_o_ai vec_st(vector bool char __a, int __b, in vec_st()
8684 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_st()
8687 static __inline__ void __ATTRS_o_ai vec_st(vector bool char __a, int __b, in vec_st()
8689 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_st()
8692 static __inline__ void __ATTRS_o_ai vec_st(vector bool char __a, int __b, in vec_st()
8693 vector bool char *__c) { in vec_st()
8694 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_st()
8697 static __inline__ void __ATTRS_o_ai vec_st(vector short __a, int __b, in vec_st()
8698 vector short *__c) { in vec_st()
8699 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_st()
8702 static __inline__ void __ATTRS_o_ai vec_st(vector short __a, int __b, in vec_st()
8704 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_st()
8707 static __inline__ void __ATTRS_o_ai vec_st(vector unsigned short __a, int __b, in vec_st()
8708 vector unsigned short *__c) { in vec_st()
8709 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_st()
8712 static __inline__ void __ATTRS_o_ai vec_st(vector unsigned short __a, int __b, in vec_st()
8714 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_st()
8717 static __inline__ void __ATTRS_o_ai vec_st(vector bool short __a, int __b, in vec_st()
8719 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_st()
8722 static __inline__ void __ATTRS_o_ai vec_st(vector bool short __a, int __b, in vec_st()
8724 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_st()
8727 static __inline__ void __ATTRS_o_ai vec_st(vector bool short __a, int __b, in vec_st()
8728 vector bool short *__c) { in vec_st()
8729 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_st()
8732 static __inline__ void __ATTRS_o_ai vec_st(vector pixel __a, int __b, in vec_st()
8734 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_st()
8737 static __inline__ void __ATTRS_o_ai vec_st(vector pixel __a, int __b, in vec_st()
8739 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_st()
8742 static __inline__ void __ATTRS_o_ai vec_st(vector pixel __a, int __b, in vec_st()
8743 vector pixel *__c) { in vec_st()
8744 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_st()
8747 static __inline__ void __ATTRS_o_ai vec_st(vector int __a, int __b, in vec_st()
8748 vector int *__c) { in vec_st()
8752 static __inline__ void __ATTRS_o_ai vec_st(vector int __a, int __b, int *__c) { in vec_st()
8756 static __inline__ void __ATTRS_o_ai vec_st(vector unsigned int __a, int __b, in vec_st()
8757 vector unsigned int *__c) { in vec_st()
8758 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_st()
8761 static __inline__ void __ATTRS_o_ai vec_st(vector unsigned int __a, int __b, in vec_st()
8763 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_st()
8766 static __inline__ void __ATTRS_o_ai vec_st(vector bool int __a, int __b, in vec_st()
8768 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_st()
8771 static __inline__ void __ATTRS_o_ai vec_st(vector bool int __a, int __b, in vec_st()
8773 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_st()
8776 static __inline__ void __ATTRS_o_ai vec_st(vector bool int __a, int __b, in vec_st()
8777 vector bool int *__c) { in vec_st()
8778 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_st()
8781 static __inline__ void __ATTRS_o_ai vec_st(vector float __a, int __b, in vec_st()
8782 vector float *__c) { in vec_st()
8783 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_st()
8786 static __inline__ void __ATTRS_o_ai vec_st(vector float __a, int __b, in vec_st()
8788 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_st()
8793 static __inline__ void __ATTRS_o_ai vec_stvx(vector signed char __a, int __b, in vec_stvx()
8794 vector signed char *__c) { in vec_stvx()
8795 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_stvx()
8798 static __inline__ void __ATTRS_o_ai vec_stvx(vector signed char __a, int __b, in vec_stvx()
8800 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_stvx()
8803 static __inline__ void __ATTRS_o_ai vec_stvx(vector unsigned char __a, int __b, in vec_stvx()
8804 vector unsigned char *__c) { in vec_stvx()
8805 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_stvx()
8808 static __inline__ void __ATTRS_o_ai vec_stvx(vector unsigned char __a, int __b, in vec_stvx()
8810 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_stvx()
8813 static __inline__ void __ATTRS_o_ai vec_stvx(vector bool char __a, int __b, in vec_stvx()
8815 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_stvx()
8818 static __inline__ void __ATTRS_o_ai vec_stvx(vector bool char __a, int __b, in vec_stvx()
8820 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_stvx()
8823 static __inline__ void __ATTRS_o_ai vec_stvx(vector bool char __a, int __b, in vec_stvx()
8824 vector bool char *__c) { in vec_stvx()
8825 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_stvx()
8828 static __inline__ void __ATTRS_o_ai vec_stvx(vector short __a, int __b, in vec_stvx()
8829 vector short *__c) { in vec_stvx()
8830 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_stvx()
8833 static __inline__ void __ATTRS_o_ai vec_stvx(vector short __a, int __b, in vec_stvx()
8835 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_stvx()
8838 static __inline__ void __ATTRS_o_ai vec_stvx(vector unsigned short __a, int __b, in vec_stvx()
8839 vector unsigned short *__c) { in vec_stvx()
8840 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_stvx()
8843 static __inline__ void __ATTRS_o_ai vec_stvx(vector unsigned short __a, int __b, in vec_stvx()
8845 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_stvx()
8848 static __inline__ void __ATTRS_o_ai vec_stvx(vector bool short __a, int __b, in vec_stvx()
8850 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_stvx()
8853 static __inline__ void __ATTRS_o_ai vec_stvx(vector bool short __a, int __b, in vec_stvx()
8855 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_stvx()
8858 static __inline__ void __ATTRS_o_ai vec_stvx(vector bool short __a, int __b, in vec_stvx()
8859 vector bool short *__c) { in vec_stvx()
8860 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_stvx()
8863 static __inline__ void __ATTRS_o_ai vec_stvx(vector pixel __a, int __b, in vec_stvx()
8865 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_stvx()
8868 static __inline__ void __ATTRS_o_ai vec_stvx(vector pixel __a, int __b, in vec_stvx()
8870 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_stvx()
8873 static __inline__ void __ATTRS_o_ai vec_stvx(vector pixel __a, int __b, in vec_stvx()
8874 vector pixel *__c) { in vec_stvx()
8875 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_stvx()
8878 static __inline__ void __ATTRS_o_ai vec_stvx(vector int __a, int __b, in vec_stvx()
8879 vector int *__c) { in vec_stvx()
8883 static __inline__ void __ATTRS_o_ai vec_stvx(vector int __a, int __b, in vec_stvx()
8888 static __inline__ void __ATTRS_o_ai vec_stvx(vector unsigned int __a, int __b, in vec_stvx()
8889 vector unsigned int *__c) { in vec_stvx()
8890 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_stvx()
8893 static __inline__ void __ATTRS_o_ai vec_stvx(vector unsigned int __a, int __b, in vec_stvx()
8895 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_stvx()
8898 static __inline__ void __ATTRS_o_ai vec_stvx(vector bool int __a, int __b, in vec_stvx()
8900 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_stvx()
8903 static __inline__ void __ATTRS_o_ai vec_stvx(vector bool int __a, int __b, in vec_stvx()
8905 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_stvx()
8908 static __inline__ void __ATTRS_o_ai vec_stvx(vector bool int __a, int __b, in vec_stvx()
8909 vector bool int *__c) { in vec_stvx()
8910 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_stvx()
8913 static __inline__ void __ATTRS_o_ai vec_stvx(vector float __a, int __b, in vec_stvx()
8914 vector float *__c) { in vec_stvx()
8915 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_stvx()
8918 static __inline__ void __ATTRS_o_ai vec_stvx(vector float __a, int __b, in vec_stvx()
8920 __builtin_altivec_stvx((vector int)__a, __b, __c); in vec_stvx()
8925 static __inline__ void __ATTRS_o_ai vec_ste(vector signed char __a, int __b, in vec_ste()
8927 __builtin_altivec_stvebx((vector char)__a, __b, __c); in vec_ste()
8930 static __inline__ void __ATTRS_o_ai vec_ste(vector unsigned char __a, int __b, in vec_ste()
8932 __builtin_altivec_stvebx((vector char)__a, __b, __c); in vec_ste()
8935 static __inline__ void __ATTRS_o_ai vec_ste(vector bool char __a, int __b, in vec_ste()
8937 __builtin_altivec_stvebx((vector char)__a, __b, __c); in vec_ste()
8940 static __inline__ void __ATTRS_o_ai vec_ste(vector bool char __a, int __b, in vec_ste()
8942 __builtin_altivec_stvebx((vector char)__a, __b, __c); in vec_ste()
8945 static __inline__ void __ATTRS_o_ai vec_ste(vector short __a, int __b, in vec_ste()
8950 static __inline__ void __ATTRS_o_ai vec_ste(vector unsigned short __a, int __b, in vec_ste()
8952 __builtin_altivec_stvehx((vector short)__a, __b, __c); in vec_ste()
8955 static __inline__ void __ATTRS_o_ai vec_ste(vector bool short __a, int __b, in vec_ste()
8957 __builtin_altivec_stvehx((vector short)__a, __b, __c); in vec_ste()
8960 static __inline__ void __ATTRS_o_ai vec_ste(vector bool short __a, int __b, in vec_ste()
8962 __builtin_altivec_stvehx((vector short)__a, __b, __c); in vec_ste()
8965 static __inline__ void __ATTRS_o_ai vec_ste(vector pixel __a, int __b, in vec_ste()
8967 __builtin_altivec_stvehx((vector short)__a, __b, __c); in vec_ste()
8970 static __inline__ void __ATTRS_o_ai vec_ste(vector pixel __a, int __b, in vec_ste()
8972 __builtin_altivec_stvehx((vector short)__a, __b, __c); in vec_ste()
8975 static __inline__ void __ATTRS_o_ai vec_ste(vector int __a, int __b, int *__c) { in vec_ste()
8979 static __inline__ void __ATTRS_o_ai vec_ste(vector unsigned int __a, int __b, in vec_ste()
8981 __builtin_altivec_stvewx((vector int)__a, __b, __c); in vec_ste()
8984 static __inline__ void __ATTRS_o_ai vec_ste(vector bool int __a, int __b, in vec_ste()
8986 __builtin_altivec_stvewx((vector int)__a, __b, __c); in vec_ste()
8989 static __inline__ void __ATTRS_o_ai vec_ste(vector bool int __a, int __b, in vec_ste()
8991 __builtin_altivec_stvewx((vector int)__a, __b, __c); in vec_ste()
8994 static __inline__ void __ATTRS_o_ai vec_ste(vector float __a, int __b, in vec_ste()
8996 __builtin_altivec_stvewx((vector int)__a, __b, __c); in vec_ste()
9001 static __inline__ void __ATTRS_o_ai vec_stvebx(vector signed char __a, int __b, in vec_stvebx()
9003 __builtin_altivec_stvebx((vector char)__a, __b, __c); in vec_stvebx()
9006 static __inline__ void __ATTRS_o_ai vec_stvebx(vector unsigned char __a, in vec_stvebx()
9008 __builtin_altivec_stvebx((vector char)__a, __b, __c); in vec_stvebx()
9011 static __inline__ void __ATTRS_o_ai vec_stvebx(vector bool char __a, int __b, in vec_stvebx()
9013 __builtin_altivec_stvebx((vector char)__a, __b, __c); in vec_stvebx()
9016 static __inline__ void __ATTRS_o_ai vec_stvebx(vector bool char __a, int __b, in vec_stvebx()
9018 __builtin_altivec_stvebx((vector char)__a, __b, __c); in vec_stvebx()
9023 static __inline__ void __ATTRS_o_ai vec_stvehx(vector short __a, int __b, in vec_stvehx()
9028 static __inline__ void __ATTRS_o_ai vec_stvehx(vector unsigned short __a, in vec_stvehx()
9030 __builtin_altivec_stvehx((vector short)__a, __b, __c); in vec_stvehx()
9033 static __inline__ void __ATTRS_o_ai vec_stvehx(vector bool short __a, int __b, in vec_stvehx()
9035 __builtin_altivec_stvehx((vector short)__a, __b, __c); in vec_stvehx()
9038 static __inline__ void __ATTRS_o_ai vec_stvehx(vector bool short __a, int __b, in vec_stvehx()
9040 __builtin_altivec_stvehx((vector short)__a, __b, __c); in vec_stvehx()
9043 static __inline__ void __ATTRS_o_ai vec_stvehx(vector pixel __a, int __b, in vec_stvehx()
9045 __builtin_altivec_stvehx((vector short)__a, __b, __c); in vec_stvehx()
9048 static __inline__ void __ATTRS_o_ai vec_stvehx(vector pixel __a, int __b, in vec_stvehx()
9050 __builtin_altivec_stvehx((vector short)__a, __b, __c); in vec_stvehx()
9055 static __inline__ void __ATTRS_o_ai vec_stvewx(vector int __a, int __b, in vec_stvewx()
9060 static __inline__ void __ATTRS_o_ai vec_stvewx(vector unsigned int __a, int __b, in vec_stvewx()
9062 __builtin_altivec_stvewx((vector int)__a, __b, __c); in vec_stvewx()
9065 static __inline__ void __ATTRS_o_ai vec_stvewx(vector bool int __a, int __b, in vec_stvewx()
9067 __builtin_altivec_stvewx((vector int)__a, __b, __c); in vec_stvewx()
9070 static __inline__ void __ATTRS_o_ai vec_stvewx(vector bool int __a, int __b, in vec_stvewx()
9072 __builtin_altivec_stvewx((vector int)__a, __b, __c); in vec_stvewx()
9075 static __inline__ void __ATTRS_o_ai vec_stvewx(vector float __a, int __b, in vec_stvewx()
9077 __builtin_altivec_stvewx((vector int)__a, __b, __c); in vec_stvewx()
9082 static __inline__ void __ATTRS_o_ai vec_stl(vector signed char __a, int __b, in vec_stl()
9083 vector signed char *__c) { in vec_stl()
9084 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stl()
9087 static __inline__ void __ATTRS_o_ai vec_stl(vector signed char __a, int __b, in vec_stl()
9089 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stl()
9092 static __inline__ void __ATTRS_o_ai vec_stl(vector unsigned char __a, int __b, in vec_stl()
9093 vector unsigned char *__c) { in vec_stl()
9094 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stl()
9097 static __inline__ void __ATTRS_o_ai vec_stl(vector unsigned char __a, int __b, in vec_stl()
9099 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stl()
9102 static __inline__ void __ATTRS_o_ai vec_stl(vector bool char __a, int __b, in vec_stl()
9104 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stl()
9107 static __inline__ void __ATTRS_o_ai vec_stl(vector bool char __a, int __b, in vec_stl()
9109 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stl()
9112 static __inline__ void __ATTRS_o_ai vec_stl(vector bool char __a, int __b, in vec_stl()
9113 vector bool char *__c) { in vec_stl()
9114 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stl()
9117 static __inline__ void __ATTRS_o_ai vec_stl(vector short __a, int __b, in vec_stl()
9118 vector short *__c) { in vec_stl()
9119 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stl()
9122 static __inline__ void __ATTRS_o_ai vec_stl(vector short __a, int __b, in vec_stl()
9124 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stl()
9127 static __inline__ void __ATTRS_o_ai vec_stl(vector unsigned short __a, int __b, in vec_stl()
9128 vector unsigned short *__c) { in vec_stl()
9129 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stl()
9132 static __inline__ void __ATTRS_o_ai vec_stl(vector unsigned short __a, int __b, in vec_stl()
9134 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stl()
9137 static __inline__ void __ATTRS_o_ai vec_stl(vector bool short __a, int __b, in vec_stl()
9139 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stl()
9142 static __inline__ void __ATTRS_o_ai vec_stl(vector bool short __a, int __b, in vec_stl()
9144 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stl()
9147 static __inline__ void __ATTRS_o_ai vec_stl(vector bool short __a, int __b, in vec_stl()
9148 vector bool short *__c) { in vec_stl()
9149 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stl()
9152 static __inline__ void __ATTRS_o_ai vec_stl(vector pixel __a, int __b, in vec_stl()
9154 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stl()
9157 static __inline__ void __ATTRS_o_ai vec_stl(vector pixel __a, int __b, in vec_stl()
9159 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stl()
9162 static __inline__ void __ATTRS_o_ai vec_stl(vector pixel __a, int __b, in vec_stl()
9163 vector pixel *__c) { in vec_stl()
9164 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stl()
9167 static __inline__ void __ATTRS_o_ai vec_stl(vector int __a, int __b, in vec_stl()
9168 vector int *__c) { in vec_stl()
9172 static __inline__ void __ATTRS_o_ai vec_stl(vector int __a, int __b, int *__c) { in vec_stl()
9176 static __inline__ void __ATTRS_o_ai vec_stl(vector unsigned int __a, int __b, in vec_stl()
9177 vector unsigned int *__c) { in vec_stl()
9178 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stl()
9181 static __inline__ void __ATTRS_o_ai vec_stl(vector unsigned int __a, int __b, in vec_stl()
9183 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stl()
9186 static __inline__ void __ATTRS_o_ai vec_stl(vector bool int __a, int __b, in vec_stl()
9188 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stl()
9191 static __inline__ void __ATTRS_o_ai vec_stl(vector bool int __a, int __b, in vec_stl()
9193 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stl()
9196 static __inline__ void __ATTRS_o_ai vec_stl(vector bool int __a, int __b, in vec_stl()
9197 vector bool int *__c) { in vec_stl()
9198 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stl()
9201 static __inline__ void __ATTRS_o_ai vec_stl(vector float __a, int __b, in vec_stl()
9202 vector float *__c) { in vec_stl()
9203 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stl()
9206 static __inline__ void __ATTRS_o_ai vec_stl(vector float __a, int __b, in vec_stl()
9208 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stl()
9213 static __inline__ void __ATTRS_o_ai vec_stvxl(vector signed char __a, int __b, in vec_stvxl()
9214 vector signed char *__c) { in vec_stvxl()
9215 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stvxl()
9218 static __inline__ void __ATTRS_o_ai vec_stvxl(vector signed char __a, int __b, in vec_stvxl()
9220 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stvxl()
9223 static __inline__ void __ATTRS_o_ai vec_stvxl(vector unsigned char __a, int __b, in vec_stvxl()
9224 vector unsigned char *__c) { in vec_stvxl()
9225 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stvxl()
9228 static __inline__ void __ATTRS_o_ai vec_stvxl(vector unsigned char __a, int __b, in vec_stvxl()
9230 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stvxl()
9233 static __inline__ void __ATTRS_o_ai vec_stvxl(vector bool char __a, int __b, in vec_stvxl()
9235 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stvxl()
9238 static __inline__ void __ATTRS_o_ai vec_stvxl(vector bool char __a, int __b, in vec_stvxl()
9240 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stvxl()
9243 static __inline__ void __ATTRS_o_ai vec_stvxl(vector bool char __a, int __b, in vec_stvxl()
9244 vector bool char *__c) { in vec_stvxl()
9245 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stvxl()
9248 static __inline__ void __ATTRS_o_ai vec_stvxl(vector short __a, int __b, in vec_stvxl()
9249 vector short *__c) { in vec_stvxl()
9250 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stvxl()
9253 static __inline__ void __ATTRS_o_ai vec_stvxl(vector short __a, int __b, in vec_stvxl()
9255 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stvxl()
9258 static __inline__ void __ATTRS_o_ai vec_stvxl(vector unsigned short __a, in vec_stvxl()
9260 vector unsigned short *__c) { in vec_stvxl()
9261 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stvxl()
9264 static __inline__ void __ATTRS_o_ai vec_stvxl(vector unsigned short __a, in vec_stvxl()
9266 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stvxl()
9269 static __inline__ void __ATTRS_o_ai vec_stvxl(vector bool short __a, int __b, in vec_stvxl()
9271 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stvxl()
9274 static __inline__ void __ATTRS_o_ai vec_stvxl(vector bool short __a, int __b, in vec_stvxl()
9276 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stvxl()
9279 static __inline__ void __ATTRS_o_ai vec_stvxl(vector bool short __a, int __b, in vec_stvxl()
9280 vector bool short *__c) { in vec_stvxl()
9281 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stvxl()
9284 static __inline__ void __ATTRS_o_ai vec_stvxl(vector pixel __a, int __b, in vec_stvxl()
9286 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stvxl()
9289 static __inline__ void __ATTRS_o_ai vec_stvxl(vector pixel __a, int __b, in vec_stvxl()
9291 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stvxl()
9294 static __inline__ void __ATTRS_o_ai vec_stvxl(vector pixel __a, int __b, in vec_stvxl()
9295 vector pixel *__c) { in vec_stvxl()
9296 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stvxl()
9299 static __inline__ void __ATTRS_o_ai vec_stvxl(vector int __a, int __b, in vec_stvxl()
9300 vector int *__c) { in vec_stvxl()
9304 static __inline__ void __ATTRS_o_ai vec_stvxl(vector int __a, int __b, in vec_stvxl()
9309 static __inline__ void __ATTRS_o_ai vec_stvxl(vector unsigned int __a, int __b, in vec_stvxl()
9310 vector unsigned int *__c) { in vec_stvxl()
9311 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stvxl()
9314 static __inline__ void __ATTRS_o_ai vec_stvxl(vector unsigned int __a, int __b, in vec_stvxl()
9316 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stvxl()
9319 static __inline__ void __ATTRS_o_ai vec_stvxl(vector bool int __a, int __b, in vec_stvxl()
9321 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stvxl()
9324 static __inline__ void __ATTRS_o_ai vec_stvxl(vector bool int __a, int __b, in vec_stvxl()
9326 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stvxl()
9329 static __inline__ void __ATTRS_o_ai vec_stvxl(vector bool int __a, int __b, in vec_stvxl()
9330 vector bool int *__c) { in vec_stvxl()
9331 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stvxl()
9334 static __inline__ void __ATTRS_o_ai vec_stvxl(vector float __a, int __b, in vec_stvxl()
9335 vector float *__c) { in vec_stvxl()
9336 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stvxl()
9339 static __inline__ void __ATTRS_o_ai vec_stvxl(vector float __a, int __b, in vec_stvxl()
9341 __builtin_altivec_stvxl((vector int)__a, __b, __c); in vec_stvxl()
9346 static __inline__ vector signed char __ATTRS_o_ai
9347 vec_sub(vector signed char __a, vector signed char __b) { in vec_sub()
9351 static __inline__ vector signed char __ATTRS_o_ai
9352 vec_sub(vector bool char __a, vector signed char __b) { in vec_sub()
9353 return (vector signed char)__a - __b; in vec_sub()
9356 static __inline__ vector signed char __ATTRS_o_ai
9357 vec_sub(vector signed char __a, vector bool char __b) { in vec_sub()
9358 return __a - (vector signed char)__b; in vec_sub()
9361 static __inline__ vector unsigned char __ATTRS_o_ai
9362 vec_sub(vector unsigned char __a, vector unsigned char __b) { in vec_sub()
9366 static __inline__ vector unsigned char __ATTRS_o_ai
9367 vec_sub(vector bool char __a, vector unsigned char __b) { in vec_sub()
9368 return (vector unsigned char)__a - __b; in vec_sub()
9371 static __inline__ vector unsigned char __ATTRS_o_ai
9372 vec_sub(vector unsigned char __a, vector bool char __b) { in vec_sub()
9373 return __a - (vector unsigned char)__b; in vec_sub()
9376 static __inline__ vector short __ATTRS_o_ai vec_sub(vector short __a, in vec_sub()
9377 vector short __b) { in vec_sub()
9381 static __inline__ vector short __ATTRS_o_ai vec_sub(vector bool short __a, in vec_sub()
9382 vector short __b) { in vec_sub()
9383 return (vector short)__a - __b; in vec_sub()
9386 static __inline__ vector short __ATTRS_o_ai vec_sub(vector short __a, in vec_sub()
9387 vector bool short __b) { in vec_sub()
9388 return __a - (vector short)__b; in vec_sub()
9391 static __inline__ vector unsigned short __ATTRS_o_ai
9392 vec_sub(vector unsigned short __a, vector unsigned short __b) { in vec_sub()
9396 static __inline__ vector unsigned short __ATTRS_o_ai
9397 vec_sub(vector bool short __a, vector unsigned short __b) { in vec_sub()
9398 return (vector unsigned short)__a - __b; in vec_sub()
9401 static __inline__ vector unsigned short __ATTRS_o_ai
9402 vec_sub(vector unsigned short __a, vector bool short __b) { in vec_sub()
9403 return __a - (vector unsigned short)__b; in vec_sub()
9406 static __inline__ vector int __ATTRS_o_ai vec_sub(vector int __a, in vec_sub()
9407 vector int __b) { in vec_sub()
9411 static __inline__ vector int __ATTRS_o_ai vec_sub(vector bool int __a, in vec_sub()
9412 vector int __b) { in vec_sub()
9413 return (vector int)__a - __b; in vec_sub()
9416 static __inline__ vector int __ATTRS_o_ai vec_sub(vector int __a, in vec_sub()
9417 vector bool int __b) { in vec_sub()
9418 return __a - (vector int)__b; in vec_sub()
9421 static __inline__ vector unsigned int __ATTRS_o_ai
9422 vec_sub(vector unsigned int __a, vector unsigned int __b) { in vec_sub()
9426 static __inline__ vector unsigned int __ATTRS_o_ai
9427 vec_sub(vector bool int __a, vector unsigned int __b) { in vec_sub()
9428 return (vector unsigned int)__a - __b; in vec_sub()
9431 static __inline__ vector unsigned int __ATTRS_o_ai
9432 vec_sub(vector unsigned int __a, vector bool int __b) { in vec_sub()
9433 return __a - (vector unsigned int)__b; in vec_sub()
9437 static __inline__ vector signed __int128 __ATTRS_o_ai
9438 vec_sub(vector signed __int128 __a, vector signed __int128 __b) { in vec_sub()
9442 static __inline__ vector unsigned __int128 __ATTRS_o_ai
9443 vec_sub(vector unsigned __int128 __a, vector unsigned __int128 __b) { in vec_sub()
9449 static __inline__ vector signed long long __ATTRS_o_ai
9450 vec_sub(vector signed long long __a, vector signed long long __b) { in vec_sub()
9454 static __inline__ vector unsigned long long __ATTRS_o_ai
9455 vec_sub(vector unsigned long long __a, vector unsigned long long __b) { in vec_sub()
9459 static __inline__ vector double __ATTRS_o_ai vec_sub(vector double __a, in vec_sub()
9460 vector double __b) { in vec_sub()
9465 static __inline__ vector float __ATTRS_o_ai vec_sub(vector float __a, in vec_sub()
9466 vector float __b) { in vec_sub()
9474 static __inline__ vector signed char __ATTRS_o_ai
9475 vec_vsububm(vector signed char __a, vector signed char __b) { in vec_vsububm()
9479 static __inline__ vector signed char __ATTRS_o_ai
9480 vec_vsububm(vector bool char __a, vector signed char __b) { in vec_vsububm()
9481 return (vector signed char)__a - __b; in vec_vsububm()
9484 static __inline__ vector signed char __ATTRS_o_ai
9485 vec_vsububm(vector signed char __a, vector bool char __b) { in vec_vsububm()
9486 return __a - (vector signed char)__b; in vec_vsububm()
9489 static __inline__ vector unsigned char __ATTRS_o_ai
9490 vec_vsububm(vector unsigned char __a, vector unsigned char __b) { in vec_vsububm()
9494 static __inline__ vector unsigned char __ATTRS_o_ai
9495 vec_vsububm(vector bool char __a, vector unsigned char __b) { in vec_vsububm()
9496 return (vector unsigned char)__a - __b; in vec_vsububm()
9499 static __inline__ vector unsigned char __ATTRS_o_ai
9500 vec_vsububm(vector unsigned char __a, vector bool char __b) { in vec_vsububm()
9501 return __a - (vector unsigned char)__b; in vec_vsububm()
9508 static __inline__ vector short __ATTRS_o_ai vec_vsubuhm(vector short __a, in vec_vsubuhm()
9509 vector short __b) { in vec_vsubuhm()
9513 static __inline__ vector short __ATTRS_o_ai vec_vsubuhm(vector bool short __a, in vec_vsubuhm()
9514 vector short __b) { in vec_vsubuhm()
9515 return (vector short)__a - __b; in vec_vsubuhm()
9518 static __inline__ vector short __ATTRS_o_ai vec_vsubuhm(vector short __a, in vec_vsubuhm()
9519 vector bool short __b) { in vec_vsubuhm()
9520 return __a - (vector short)__b; in vec_vsubuhm()
9523 static __inline__ vector unsigned short __ATTRS_o_ai
9524 vec_vsubuhm(vector unsigned short __a, vector unsigned short __b) { in vec_vsubuhm()
9528 static __inline__ vector unsigned short __ATTRS_o_ai
9529 vec_vsubuhm(vector bool short __a, vector unsigned short __b) { in vec_vsubuhm()
9530 return (vector unsigned short)__a - __b; in vec_vsubuhm()
9533 static __inline__ vector unsigned short __ATTRS_o_ai
9534 vec_vsubuhm(vector unsigned short __a, vector bool short __b) { in vec_vsubuhm()
9535 return __a - (vector unsigned short)__b; in vec_vsubuhm()
9542 static __inline__ vector int __ATTRS_o_ai vec_vsubuwm(vector int __a, in vec_vsubuwm()
9543 vector int __b) { in vec_vsubuwm()
9547 static __inline__ vector int __ATTRS_o_ai vec_vsubuwm(vector bool int __a, in vec_vsubuwm()
9548 vector int __b) { in vec_vsubuwm()
9549 return (vector int)__a - __b; in vec_vsubuwm()
9552 static __inline__ vector int __ATTRS_o_ai vec_vsubuwm(vector int __a, in vec_vsubuwm()
9553 vector bool int __b) { in vec_vsubuwm()
9554 return __a - (vector int)__b; in vec_vsubuwm()
9557 static __inline__ vector unsigned int __ATTRS_o_ai
9558 vec_vsubuwm(vector unsigned int __a, vector unsigned int __b) { in vec_vsubuwm()
9562 static __inline__ vector unsigned int __ATTRS_o_ai
9563 vec_vsubuwm(vector bool int __a, vector unsigned int __b) { in vec_vsubuwm()
9564 return (vector unsigned int)__a - __b; in vec_vsubuwm()
9567 static __inline__ vector unsigned int __ATTRS_o_ai
9568 vec_vsubuwm(vector unsigned int __a, vector bool int __b) { in vec_vsubuwm()
9569 return __a - (vector unsigned int)__b; in vec_vsubuwm()
9576 static __inline__ vector float __attribute__((__always_inline__))
9577 vec_vsubfp(vector float __a, vector float __b) { in vec_vsubfp()
9583 static __inline__ vector unsigned int __ATTRS_o_ai
9584 vec_subc(vector unsigned int __a, vector unsigned int __b) { in vec_subc()
9589 static __inline__ vector unsigned __int128 __ATTRS_o_ai
9590 vec_subc(vector unsigned __int128 __a, vector unsigned __int128 __b) { in vec_subc()
9594 static __inline__ vector signed __int128 __ATTRS_o_ai
9595 vec_subc(vector signed __int128 __a, vector signed __int128 __b) { in vec_subc()
9602 static __inline__ vector unsigned int __attribute__((__always_inline__))
9603 vec_vsubcuw(vector unsigned int __a, vector unsigned int __b) { in vec_vsubcuw()
9609 static __inline__ vector signed char __ATTRS_o_ai
9610 vec_subs(vector signed char __a, vector signed char __b) { in vec_subs()
9614 static __inline__ vector signed char __ATTRS_o_ai
9615 vec_subs(vector bool char __a, vector signed char __b) { in vec_subs()
9616 return __builtin_altivec_vsubsbs((vector signed char)__a, __b); in vec_subs()
9619 static __inline__ vector signed char __ATTRS_o_ai
9620 vec_subs(vector signed char __a, vector bool char __b) { in vec_subs()
9621 return __builtin_altivec_vsubsbs(__a, (vector signed char)__b); in vec_subs()
9624 static __inline__ vector unsigned char __ATTRS_o_ai
9625 vec_subs(vector unsigned char __a, vector unsigned char __b) { in vec_subs()
9629 static __inline__ vector unsigned char __ATTRS_o_ai
9630 vec_subs(vector bool char __a, vector unsigned char __b) { in vec_subs()
9631 return __builtin_altivec_vsububs((vector unsigned char)__a, __b); in vec_subs()
9634 static __inline__ vector unsigned char __ATTRS_o_ai
9635 vec_subs(vector unsigned char __a, vector bool char __b) { in vec_subs()
9636 return __builtin_altivec_vsububs(__a, (vector unsigned char)__b); in vec_subs()
9639 static __inline__ vector short __ATTRS_o_ai vec_subs(vector short __a, in vec_subs()
9640 vector short __b) { in vec_subs()
9644 static __inline__ vector short __ATTRS_o_ai vec_subs(vector bool short __a, in vec_subs()
9645 vector short __b) { in vec_subs()
9646 return __builtin_altivec_vsubshs((vector short)__a, __b); in vec_subs()
9649 static __inline__ vector short __ATTRS_o_ai vec_subs(vector short __a, in vec_subs()
9650 vector bool short __b) { in vec_subs()
9651 return __builtin_altivec_vsubshs(__a, (vector short)__b); in vec_subs()
9654 static __inline__ vector unsigned short __ATTRS_o_ai
9655 vec_subs(vector unsigned short __a, vector unsigned short __b) { in vec_subs()
9659 static __inline__ vector unsigned short __ATTRS_o_ai
9660 vec_subs(vector bool short __a, vector unsigned short __b) { in vec_subs()
9661 return __builtin_altivec_vsubuhs((vector unsigned short)__a, __b); in vec_subs()
9664 static __inline__ vector unsigned short __ATTRS_o_ai
9665 vec_subs(vector unsigned short __a, vector bool short __b) { in vec_subs()
9666 return __builtin_altivec_vsubuhs(__a, (vector unsigned short)__b); in vec_subs()
9669 static __inline__ vector int __ATTRS_o_ai vec_subs(vector int __a, in vec_subs()
9670 vector int __b) { in vec_subs()
9674 static __inline__ vector int __ATTRS_o_ai vec_subs(vector bool int __a, in vec_subs()
9675 vector int __b) { in vec_subs()
9676 return __builtin_altivec_vsubsws((vector int)__a, __b); in vec_subs()
9679 static __inline__ vector int __ATTRS_o_ai vec_subs(vector int __a, in vec_subs()
9680 vector bool int __b) { in vec_subs()
9681 return __builtin_altivec_vsubsws(__a, (vector int)__b); in vec_subs()
9684 static __inline__ vector unsigned int __ATTRS_o_ai
9685 vec_subs(vector unsigned int __a, vector unsigned int __b) { in vec_subs()
9689 static __inline__ vector unsigned int __ATTRS_o_ai
9690 vec_subs(vector bool int __a, vector unsigned int __b) { in vec_subs()
9691 return __builtin_altivec_vsubuws((vector unsigned int)__a, __b); in vec_subs()
9694 static __inline__ vector unsigned int __ATTRS_o_ai
9695 vec_subs(vector unsigned int __a, vector bool int __b) { in vec_subs()
9696 return __builtin_altivec_vsubuws(__a, (vector unsigned int)__b); in vec_subs()
9701 static __inline__ vector signed char __ATTRS_o_ai
9702 vec_vsubsbs(vector signed char __a, vector signed char __b) { in vec_vsubsbs()
9706 static __inline__ vector signed char __ATTRS_o_ai
9707 vec_vsubsbs(vector bool char __a, vector signed char __b) { in vec_vsubsbs()
9708 return __builtin_altivec_vsubsbs((vector signed char)__a, __b); in vec_vsubsbs()
9711 static __inline__ vector signed char __ATTRS_o_ai
9712 vec_vsubsbs(vector signed char __a, vector bool char __b) { in vec_vsubsbs()
9713 return __builtin_altivec_vsubsbs(__a, (vector signed char)__b); in vec_vsubsbs()
9718 static __inline__ vector unsigned char __ATTRS_o_ai
9719 vec_vsububs(vector unsigned char __a, vector unsigned char __b) { in vec_vsububs()
9723 static __inline__ vector unsigned char __ATTRS_o_ai
9724 vec_vsububs(vector bool char __a, vector unsigned char __b) { in vec_vsububs()
9725 return __builtin_altivec_vsububs((vector unsigned char)__a, __b); in vec_vsububs()
9728 static __inline__ vector unsigned char __ATTRS_o_ai
9729 vec_vsububs(vector unsigned char __a, vector bool char __b) { in vec_vsububs()
9730 return __builtin_altivec_vsububs(__a, (vector unsigned char)__b); in vec_vsububs()
9735 static __inline__ vector short __ATTRS_o_ai vec_vsubshs(vector short __a, in vec_vsubshs()
9736 vector short __b) { in vec_vsubshs()
9740 static __inline__ vector short __ATTRS_o_ai vec_vsubshs(vector bool short __a, in vec_vsubshs()
9741 vector short __b) { in vec_vsubshs()
9742 return __builtin_altivec_vsubshs((vector short)__a, __b); in vec_vsubshs()
9745 static __inline__ vector short __ATTRS_o_ai vec_vsubshs(vector short __a, in vec_vsubshs()
9746 vector bool short __b) { in vec_vsubshs()
9747 return __builtin_altivec_vsubshs(__a, (vector short)__b); in vec_vsubshs()
9752 static __inline__ vector unsigned short __ATTRS_o_ai
9753 vec_vsubuhs(vector unsigned short __a, vector unsigned short __b) { in vec_vsubuhs()
9757 static __inline__ vector unsigned short __ATTRS_o_ai
9758 vec_vsubuhs(vector bool short __a, vector unsigned short __b) { in vec_vsubuhs()
9759 return __builtin_altivec_vsubuhs((vector unsigned short)__a, __b); in vec_vsubuhs()
9762 static __inline__ vector unsigned short __ATTRS_o_ai
9763 vec_vsubuhs(vector unsigned short __a, vector bool short __b) { in vec_vsubuhs()
9764 return __builtin_altivec_vsubuhs(__a, (vector unsigned short)__b); in vec_vsubuhs()
9769 static __inline__ vector int __ATTRS_o_ai vec_vsubsws(vector int __a, in vec_vsubsws()
9770 vector int __b) { in vec_vsubsws()
9774 static __inline__ vector int __ATTRS_o_ai vec_vsubsws(vector bool int __a, in vec_vsubsws()
9775 vector int __b) { in vec_vsubsws()
9776 return __builtin_altivec_vsubsws((vector int)__a, __b); in vec_vsubsws()
9779 static __inline__ vector int __ATTRS_o_ai vec_vsubsws(vector int __a, in vec_vsubsws()
9780 vector bool int __b) { in vec_vsubsws()
9781 return __builtin_altivec_vsubsws(__a, (vector int)__b); in vec_vsubsws()
9786 static __inline__ vector unsigned int __ATTRS_o_ai
9787 vec_vsubuws(vector unsigned int __a, vector unsigned int __b) { in vec_vsubuws()
9791 static __inline__ vector unsigned int __ATTRS_o_ai
9792 vec_vsubuws(vector bool int __a, vector unsigned int __b) { in vec_vsubuws()
9793 return __builtin_altivec_vsubuws((vector unsigned int)__a, __b); in vec_vsubuws()
9796 static __inline__ vector unsigned int __ATTRS_o_ai
9797 vec_vsubuws(vector unsigned int __a, vector bool int __b) { in vec_vsubuws()
9798 return __builtin_altivec_vsubuws(__a, (vector unsigned int)__b); in vec_vsubuws()
9804 static __inline__ vector signed __int128 __ATTRS_o_ai
9805 vec_vsubuqm(vector signed __int128 __a, vector signed __int128 __b) { in vec_vsubuqm()
9809 static __inline__ vector unsigned __int128 __ATTRS_o_ai
9810 vec_vsubuqm(vector unsigned __int128 __a, vector unsigned __int128 __b) { in vec_vsubuqm()
9816 static __inline__ vector signed __int128 __ATTRS_o_ai
9817 vec_vsubeuqm(vector signed __int128 __a, vector signed __int128 __b, in vec_vsubeuqm()
9818 vector signed __int128 __c) { in vec_vsubeuqm()
9822 static __inline__ vector unsigned __int128 __ATTRS_o_ai
9823 vec_vsubeuqm(vector unsigned __int128 __a, vector unsigned __int128 __b, in vec_vsubeuqm()
9824 vector unsigned __int128 __c) { in vec_vsubeuqm()
9830 static __inline__ vector signed __int128 __ATTRS_o_ai
9831 vec_vsubcuq(vector signed __int128 __a, vector signed __int128 __b) { in vec_vsubcuq()
9835 static __inline__ vector unsigned __int128 __ATTRS_o_ai
9836 vec_vsubcuq(vector unsigned __int128 __a, vector unsigned __int128 __b) { in vec_vsubcuq()
9842 static __inline__ vector signed __int128 __ATTRS_o_ai
9843 vec_vsubecuq(vector signed __int128 __a, vector signed __int128 __b, in vec_vsubecuq()
9844 vector signed __int128 __c) { in vec_vsubecuq()
9848 static __inline__ vector unsigned __int128 __ATTRS_o_ai
9849 vec_vsubecuq(vector unsigned __int128 __a, vector unsigned __int128 __b, in vec_vsubecuq()
9850 vector unsigned __int128 __c) { in vec_vsubecuq()
9857 static __inline__ vector int __ATTRS_o_ai vec_sum4s(vector signed char __a, in vec_sum4s()
9858 vector int __b) { in vec_sum4s()
9862 static __inline__ vector unsigned int __ATTRS_o_ai
9863 vec_sum4s(vector unsigned char __a, vector unsigned int __b) { in vec_sum4s()
9867 static __inline__ vector int __ATTRS_o_ai vec_sum4s(vector signed short __a, in vec_sum4s()
9868 vector int __b) { in vec_sum4s()
9874 static __inline__ vector int __attribute__((__always_inline__))
9875 vec_vsum4sbs(vector signed char __a, vector int __b) { in vec_vsum4sbs()
9881 static __inline__ vector unsigned int __attribute__((__always_inline__))
9882 vec_vsum4ubs(vector unsigned char __a, vector unsigned int __b) { in vec_vsum4ubs()
9888 static __inline__ vector int __attribute__((__always_inline__))
9889 vec_vsum4shs(vector signed short __a, vector int __b) { in vec_vsum4shs()
9901 static __inline__ vector signed int __attribute__((__always_inline__))
9902 vec_sum2s(vector int __a, vector int __b) { in vec_sum2s()
9904 vector int __c = (vector signed int)vec_perm( in vec_sum2s()
9905 __b, __b, (vector unsigned char)(4, 5, 6, 7, 0, 1, 2, 3, 12, 13, 14, 15, in vec_sum2s()
9908 return (vector signed int)vec_perm( in vec_sum2s()
9909 __c, __c, (vector unsigned char)(4, 5, 6, 7, 0, 1, 2, 3, 12, 13, 14, 15, in vec_sum2s()
9918 static __inline__ vector signed int __attribute__((__always_inline__))
9919 vec_vsum2sws(vector int __a, vector int __b) { in vec_vsum2sws()
9921 vector int __c = (vector signed int)vec_perm( in vec_vsum2sws()
9922 __b, __b, (vector unsigned char)(4, 5, 6, 7, 0, 1, 2, 3, 12, 13, 14, 15, in vec_vsum2sws()
9925 return (vector signed int)vec_perm( in vec_vsum2sws()
9926 __c, __c, (vector unsigned char)(4, 5, 6, 7, 0, 1, 2, 3, 12, 13, 14, 15, in vec_vsum2sws()
9941 static __inline__ vector signed int __attribute__((__always_inline__))
9942 vec_sums(vector signed int __a, vector signed int __b) { in vec_sums()
9944 __b = (vector signed int)vec_splat(__b, 3); in vec_sums()
9946 return (vector signed int)(0, 0, 0, __b[0]); in vec_sums()
9954 static __inline__ vector signed int __attribute__((__always_inline__))
9955 vec_vsumsws(vector signed int __a, vector signed int __b) { in vec_vsumsws()
9957 __b = (vector signed int)vec_splat(__b, 3); in vec_vsumsws()
9959 return (vector signed int)(0, 0, 0, __b[0]); in vec_vsumsws()
9967 static __inline__ vector float __ATTRS_o_ai vec_trunc(vector float __a) { in vec_trunc()
9976 static __inline__ vector double __ATTRS_o_ai vec_trunc(vector double __a) { in vec_trunc()
9983 static __inline__ vector float __attribute__((__always_inline__))
9984 vec_vrfiz(vector float __a) { in vec_vrfiz()
9993 static __inline__ vector short __ATTRS_o_ai
9994 vec_unpackh(vector signed char __a) { in vec_unpackh()
9996 return __builtin_altivec_vupklsb((vector char)__a); in vec_unpackh()
9998 return __builtin_altivec_vupkhsb((vector char)__a); in vec_unpackh()
10002 static __inline__ vector bool short __ATTRS_o_ai
10003 vec_unpackh(vector bool char __a) { in vec_unpackh()
10005 return (vector bool short)__builtin_altivec_vupklsb((vector char)__a); in vec_unpackh()
10007 return (vector bool short)__builtin_altivec_vupkhsb((vector char)__a); in vec_unpackh()
10011 static __inline__ vector int __ATTRS_o_ai vec_unpackh(vector short __a) { in vec_unpackh()
10019 static __inline__ vector bool int __ATTRS_o_ai
10020 vec_unpackh(vector bool short __a) { in vec_unpackh()
10022 return (vector bool int)__builtin_altivec_vupklsh((vector short)__a); in vec_unpackh()
10024 return (vector bool int)__builtin_altivec_vupkhsh((vector short)__a); in vec_unpackh()
10028 static __inline__ vector unsigned int __ATTRS_o_ai
10029 vec_unpackh(vector pixel __a) { in vec_unpackh()
10031 return (vector unsigned int)__builtin_altivec_vupklpx((vector short)__a); in vec_unpackh()
10033 return (vector unsigned int)__builtin_altivec_vupkhpx((vector short)__a); in vec_unpackh()
10038 static __inline__ vector long long __ATTRS_o_ai vec_unpackh(vector int __a) { in vec_unpackh()
10046 static __inline__ vector bool long long __ATTRS_o_ai
10047 vec_unpackh(vector bool int __a) { in vec_unpackh()
10049 return (vector bool long long)__builtin_altivec_vupklsw((vector int)__a); in vec_unpackh()
10051 return (vector bool long long)__builtin_altivec_vupkhsw((vector int)__a); in vec_unpackh()
10058 static __inline__ vector short __ATTRS_o_ai
10059 vec_vupkhsb(vector signed char __a) { in vec_vupkhsb()
10061 return __builtin_altivec_vupklsb((vector char)__a); in vec_vupkhsb()
10063 return __builtin_altivec_vupkhsb((vector char)__a); in vec_vupkhsb()
10067 static __inline__ vector bool short __ATTRS_o_ai
10068 vec_vupkhsb(vector bool char __a) { in vec_vupkhsb()
10070 return (vector bool short)__builtin_altivec_vupklsb((vector char)__a); in vec_vupkhsb()
10072 return (vector bool short)__builtin_altivec_vupkhsb((vector char)__a); in vec_vupkhsb()
10078 static __inline__ vector int __ATTRS_o_ai vec_vupkhsh(vector short __a) { in vec_vupkhsh()
10086 static __inline__ vector bool int __ATTRS_o_ai
10087 vec_vupkhsh(vector bool short __a) { in vec_vupkhsh()
10089 return (vector bool int)__builtin_altivec_vupklsh((vector short)__a); in vec_vupkhsh()
10091 return (vector bool int)__builtin_altivec_vupkhsh((vector short)__a); in vec_vupkhsh()
10095 static __inline__ vector unsigned int __ATTRS_o_ai
10096 vec_vupkhsh(vector pixel __a) { in vec_vupkhsh()
10098 return (vector unsigned int)__builtin_altivec_vupklpx((vector short)__a); in vec_vupkhsh()
10100 return (vector unsigned int)__builtin_altivec_vupkhpx((vector short)__a); in vec_vupkhsh()
10107 static __inline__ vector long long __ATTRS_o_ai vec_vupkhsw(vector int __a) { in vec_vupkhsw()
10115 static __inline__ vector bool long long __ATTRS_o_ai
10116 vec_vupkhsw(vector bool int __a) { in vec_vupkhsw()
10118 return (vector bool long long)__builtin_altivec_vupklsw((vector int)__a); in vec_vupkhsw()
10120 return (vector bool long long)__builtin_altivec_vupkhsw((vector int)__a); in vec_vupkhsw()
10127 static __inline__ vector short __ATTRS_o_ai
10128 vec_unpackl(vector signed char __a) { in vec_unpackl()
10130 return __builtin_altivec_vupkhsb((vector char)__a); in vec_unpackl()
10132 return __builtin_altivec_vupklsb((vector char)__a); in vec_unpackl()
10136 static __inline__ vector bool short __ATTRS_o_ai
10137 vec_unpackl(vector bool char __a) { in vec_unpackl()
10139 return (vector bool short)__builtin_altivec_vupkhsb((vector char)__a); in vec_unpackl()
10141 return (vector bool short)__builtin_altivec_vupklsb((vector char)__a); in vec_unpackl()
10145 static __inline__ vector int __ATTRS_o_ai vec_unpackl(vector short __a) { in vec_unpackl()
10153 static __inline__ vector bool int __ATTRS_o_ai
10154 vec_unpackl(vector bool short __a) { in vec_unpackl()
10156 return (vector bool int)__builtin_altivec_vupkhsh((vector short)__a); in vec_unpackl()
10158 return (vector bool int)__builtin_altivec_vupklsh((vector short)__a); in vec_unpackl()
10162 static __inline__ vector unsigned int __ATTRS_o_ai
10163 vec_unpackl(vector pixel __a) { in vec_unpackl()
10165 return (vector unsigned int)__builtin_altivec_vupkhpx((vector short)__a); in vec_unpackl()
10167 return (vector unsigned int)__builtin_altivec_vupklpx((vector short)__a); in vec_unpackl()
10172 static __inline__ vector long long __ATTRS_o_ai vec_unpackl(vector int __a) { in vec_unpackl()
10180 static __inline__ vector bool long long __ATTRS_o_ai
10181 vec_unpackl(vector bool int __a) { in vec_unpackl()
10183 return (vector bool long long)__builtin_altivec_vupkhsw((vector int)__a); in vec_unpackl()
10185 return (vector bool long long)__builtin_altivec_vupklsw((vector int)__a); in vec_unpackl()
10192 static __inline__ vector short __ATTRS_o_ai
10193 vec_vupklsb(vector signed char __a) { in vec_vupklsb()
10195 return __builtin_altivec_vupkhsb((vector char)__a); in vec_vupklsb()
10197 return __builtin_altivec_vupklsb((vector char)__a); in vec_vupklsb()
10201 static __inline__ vector bool short __ATTRS_o_ai
10202 vec_vupklsb(vector bool char __a) { in vec_vupklsb()
10204 return (vector bool short)__builtin_altivec_vupkhsb((vector char)__a); in vec_vupklsb()
10206 return (vector bool short)__builtin_altivec_vupklsb((vector char)__a); in vec_vupklsb()
10212 static __inline__ vector int __ATTRS_o_ai vec_vupklsh(vector short __a) { in vec_vupklsh()
10220 static __inline__ vector bool int __ATTRS_o_ai
10221 vec_vupklsh(vector bool short __a) { in vec_vupklsh()
10223 return (vector bool int)__builtin_altivec_vupkhsh((vector short)__a); in vec_vupklsh()
10225 return (vector bool int)__builtin_altivec_vupklsh((vector short)__a); in vec_vupklsh()
10229 static __inline__ vector unsigned int __ATTRS_o_ai
10230 vec_vupklsh(vector pixel __a) { in vec_vupklsh()
10232 return (vector unsigned int)__builtin_altivec_vupkhpx((vector short)__a); in vec_vupklsh()
10234 return (vector unsigned int)__builtin_altivec_vupklpx((vector short)__a); in vec_vupklsh()
10241 static __inline__ vector long long __ATTRS_o_ai vec_vupklsw(vector int __a) { in vec_vupklsw()
10249 static __inline__ vector bool long long __ATTRS_o_ai
10250 vec_vupklsw(vector bool int __a) { in vec_vupklsw()
10252 return (vector bool long long)__builtin_altivec_vupkhsw((vector int)__a); in vec_vupklsw()
10254 return (vector bool long long)__builtin_altivec_vupklsw((vector int)__a); in vec_vupklsw()
10263 static __inline__ vector bool int __ATTRS_o_ai
10264 vec_vsx_ld(int __a, const vector bool int *__b) { in vec_vsx_ld()
10265 return (vector bool int)__builtin_vsx_lxvw4x(__a, __b); in vec_vsx_ld()
10268 static __inline__ vector signed int __ATTRS_o_ai
10269 vec_vsx_ld(int __a, const vector signed int *__b) { in vec_vsx_ld()
10270 return (vector signed int)__builtin_vsx_lxvw4x(__a, __b); in vec_vsx_ld()
10273 static __inline__ vector signed int __ATTRS_o_ai
10275 return (vector signed int)__builtin_vsx_lxvw4x(__a, __b); in vec_vsx_ld()
10278 static __inline__ vector unsigned int __ATTRS_o_ai
10279 vec_vsx_ld(int __a, const vector unsigned int *__b) { in vec_vsx_ld()
10280 return (vector unsigned int)__builtin_vsx_lxvw4x(__a, __b); in vec_vsx_ld()
10283 static __inline__ vector unsigned int __ATTRS_o_ai
10285 return (vector unsigned int)__builtin_vsx_lxvw4x(__a, __b); in vec_vsx_ld()
10288 static __inline__ vector float __ATTRS_o_ai
10289 vec_vsx_ld(int __a, const vector float *__b) { in vec_vsx_ld()
10290 return (vector float)__builtin_vsx_lxvw4x(__a, __b); in vec_vsx_ld()
10293 static __inline__ vector float __ATTRS_o_ai vec_vsx_ld(int __a, in vec_vsx_ld()
10295 return (vector float)__builtin_vsx_lxvw4x(__a, __b); in vec_vsx_ld()
10298 static __inline__ vector signed long long __ATTRS_o_ai
10299 vec_vsx_ld(int __a, const vector signed long long *__b) { in vec_vsx_ld()
10300 return (vector signed long long)__builtin_vsx_lxvd2x(__a, __b); in vec_vsx_ld()
10303 static __inline__ vector unsigned long long __ATTRS_o_ai
10304 vec_vsx_ld(int __a, const vector unsigned long long *__b) { in vec_vsx_ld()
10305 return (vector unsigned long long)__builtin_vsx_lxvd2x(__a, __b); in vec_vsx_ld()
10308 static __inline__ vector double __ATTRS_o_ai
10309 vec_vsx_ld(int __a, const vector double *__b) { in vec_vsx_ld()
10310 return (vector double)__builtin_vsx_lxvd2x(__a, __b); in vec_vsx_ld()
10313 static __inline__ vector double __ATTRS_o_ai
10315 return (vector double)__builtin_vsx_lxvd2x(__a, __b); in vec_vsx_ld()
10318 static __inline__ vector bool short __ATTRS_o_ai
10319 vec_vsx_ld(int __a, const vector bool short *__b) { in vec_vsx_ld()
10320 return (vector bool short)__builtin_vsx_lxvw4x(__a, __b); in vec_vsx_ld()
10323 static __inline__ vector signed short __ATTRS_o_ai
10324 vec_vsx_ld(int __a, const vector signed short *__b) { in vec_vsx_ld()
10325 return (vector signed short)__builtin_vsx_lxvw4x(__a, __b); in vec_vsx_ld()
10328 static __inline__ vector signed short __ATTRS_o_ai
10330 return (vector signed short)__builtin_vsx_lxvw4x(__a, __b); in vec_vsx_ld()
10333 static __inline__ vector unsigned short __ATTRS_o_ai
10334 vec_vsx_ld(int __a, const vector unsigned short *__b) { in vec_vsx_ld()
10335 return (vector unsigned short)__builtin_vsx_lxvw4x(__a, __b); in vec_vsx_ld()
10338 static __inline__ vector unsigned short __ATTRS_o_ai
10340 return (vector unsigned short)__builtin_vsx_lxvw4x(__a, __b); in vec_vsx_ld()
10343 static __inline__ vector bool char __ATTRS_o_ai
10344 vec_vsx_ld(int __a, const vector bool char *__b) { in vec_vsx_ld()
10345 return (vector bool char)__builtin_vsx_lxvw4x(__a, __b); in vec_vsx_ld()
10348 static __inline__ vector signed char __ATTRS_o_ai
10349 vec_vsx_ld(int __a, const vector signed char *__b) { in vec_vsx_ld()
10350 return (vector signed char)__builtin_vsx_lxvw4x(__a, __b); in vec_vsx_ld()
10353 static __inline__ vector signed char __ATTRS_o_ai
10355 return (vector signed char)__builtin_vsx_lxvw4x(__a, __b); in vec_vsx_ld()
10358 static __inline__ vector unsigned char __ATTRS_o_ai
10359 vec_vsx_ld(int __a, const vector unsigned char *__b) { in vec_vsx_ld()
10360 return (vector unsigned char)__builtin_vsx_lxvw4x(__a, __b); in vec_vsx_ld()
10363 static __inline__ vector unsigned char __ATTRS_o_ai
10365 return (vector unsigned char)__builtin_vsx_lxvw4x(__a, __b); in vec_vsx_ld()
10374 static __inline__ void __ATTRS_o_ai vec_vsx_st(vector bool int __a, int __b, in vec_vsx_st()
10375 vector bool int *__c) { in vec_vsx_st()
10376 __builtin_vsx_stxvw4x((vector int)__a, __b, __c); in vec_vsx_st()
10379 static __inline__ void __ATTRS_o_ai vec_vsx_st(vector bool int __a, int __b, in vec_vsx_st()
10381 __builtin_vsx_stxvw4x((vector int)__a, __b, __c); in vec_vsx_st()
10384 static __inline__ void __ATTRS_o_ai vec_vsx_st(vector bool int __a, int __b, in vec_vsx_st()
10386 __builtin_vsx_stxvw4x((vector int)__a, __b, __c); in vec_vsx_st()
10389 static __inline__ void __ATTRS_o_ai vec_vsx_st(vector signed int __a, int __b, in vec_vsx_st()
10390 vector signed int *__c) { in vec_vsx_st()
10391 __builtin_vsx_stxvw4x((vector int)__a, __b, __c); in vec_vsx_st()
10394 static __inline__ void __ATTRS_o_ai vec_vsx_st(vector signed int __a, int __b, in vec_vsx_st()
10396 __builtin_vsx_stxvw4x((vector int)__a, __b, __c); in vec_vsx_st()
10399 static __inline__ void __ATTRS_o_ai vec_vsx_st(vector unsigned int __a, int __b, in vec_vsx_st()
10400 vector unsigned int *__c) { in vec_vsx_st()
10401 __builtin_vsx_stxvw4x((vector int)__a, __b, __c); in vec_vsx_st()
10404 static __inline__ void __ATTRS_o_ai vec_vsx_st(vector unsigned int __a, int __b, in vec_vsx_st()
10406 __builtin_vsx_stxvw4x((vector int)__a, __b, __c); in vec_vsx_st()
10409 static __inline__ void __ATTRS_o_ai vec_vsx_st(vector float __a, int __b, in vec_vsx_st()
10410 vector float *__c) { in vec_vsx_st()
10411 __builtin_vsx_stxvw4x((vector int)__a, __b, __c); in vec_vsx_st()
10414 static __inline__ void __ATTRS_o_ai vec_vsx_st(vector float __a, int __b, in vec_vsx_st()
10416 __builtin_vsx_stxvw4x((vector int)__a, __b, __c); in vec_vsx_st()
10419 static __inline__ void __ATTRS_o_ai vec_vsx_st(vector signed long long __a, in vec_vsx_st()
10421 vector signed long long *__c) { in vec_vsx_st()
10422 __builtin_vsx_stxvd2x((vector double)__a, __b, __c); in vec_vsx_st()
10425 static __inline__ void __ATTRS_o_ai vec_vsx_st(vector unsigned long long __a, in vec_vsx_st()
10427 vector unsigned long long *__c) { in vec_vsx_st()
10428 __builtin_vsx_stxvd2x((vector double)__a, __b, __c); in vec_vsx_st()
10431 static __inline__ void __ATTRS_o_ai vec_vsx_st(vector double __a, int __b, in vec_vsx_st()
10432 vector double *__c) { in vec_vsx_st()
10433 __builtin_vsx_stxvd2x((vector double)__a, __b, __c); in vec_vsx_st()
10436 static __inline__ void __ATTRS_o_ai vec_vsx_st(vector double __a, int __b, in vec_vsx_st()
10438 __builtin_vsx_stxvd2x((vector double)__a, __b, __c); in vec_vsx_st()
10441 static __inline__ void __ATTRS_o_ai vec_vsx_st(vector bool short __a, int __b, in vec_vsx_st()
10442 vector bool short *__c) { in vec_vsx_st()
10443 __builtin_vsx_stxvw4x((vector int)__a, __b, __c); in vec_vsx_st()
10446 static __inline__ void __ATTRS_o_ai vec_vsx_st(vector bool short __a, int __b, in vec_vsx_st()
10448 __builtin_vsx_stxvw4x((vector int)__a, __b, __c); in vec_vsx_st()
10451 static __inline__ void __ATTRS_o_ai vec_vsx_st(vector bool short __a, int __b, in vec_vsx_st()
10453 __builtin_vsx_stxvw4x((vector int)__a, __b, __c); in vec_vsx_st()
10455 static __inline__ void __ATTRS_o_ai vec_vsx_st(vector signed short __a, int __b, in vec_vsx_st()
10456 vector signed short *__c) { in vec_vsx_st()
10457 __builtin_vsx_stxvw4x((vector int)__a, __b, __c); in vec_vsx_st()
10460 static __inline__ void __ATTRS_o_ai vec_vsx_st(vector signed short __a, int __b, in vec_vsx_st()
10462 __builtin_vsx_stxvw4x((vector int)__a, __b, __c); in vec_vsx_st()
10465 static __inline__ void __ATTRS_o_ai vec_vsx_st(vector unsigned short __a, in vec_vsx_st()
10467 vector unsigned short *__c) { in vec_vsx_st()
10468 __builtin_vsx_stxvw4x((vector int)__a, __b, __c); in vec_vsx_st()
10471 static __inline__ void __ATTRS_o_ai vec_vsx_st(vector unsigned short __a, in vec_vsx_st()
10473 __builtin_vsx_stxvw4x((vector int)__a, __b, __c); in vec_vsx_st()
10476 static __inline__ void __ATTRS_o_ai vec_vsx_st(vector bool char __a, int __b, in vec_vsx_st()
10477 vector bool char *__c) { in vec_vsx_st()
10478 __builtin_vsx_stxvw4x((vector int)__a, __b, __c); in vec_vsx_st()
10481 static __inline__ void __ATTRS_o_ai vec_vsx_st(vector bool char __a, int __b, in vec_vsx_st()
10483 __builtin_vsx_stxvw4x((vector int)__a, __b, __c); in vec_vsx_st()
10486 static __inline__ void __ATTRS_o_ai vec_vsx_st(vector bool char __a, int __b, in vec_vsx_st()
10488 __builtin_vsx_stxvw4x((vector int)__a, __b, __c); in vec_vsx_st()
10491 static __inline__ void __ATTRS_o_ai vec_vsx_st(vector signed char __a, int __b, in vec_vsx_st()
10492 vector signed char *__c) { in vec_vsx_st()
10493 __builtin_vsx_stxvw4x((vector int)__a, __b, __c); in vec_vsx_st()
10496 static __inline__ void __ATTRS_o_ai vec_vsx_st(vector signed char __a, int __b, in vec_vsx_st()
10498 __builtin_vsx_stxvw4x((vector int)__a, __b, __c); in vec_vsx_st()
10501 static __inline__ void __ATTRS_o_ai vec_vsx_st(vector unsigned char __a, in vec_vsx_st()
10503 vector unsigned char *__c) { in vec_vsx_st()
10504 __builtin_vsx_stxvw4x((vector int)__a, __b, __c); in vec_vsx_st()
10507 static __inline__ void __ATTRS_o_ai vec_vsx_st(vector unsigned char __a, in vec_vsx_st()
10509 __builtin_vsx_stxvw4x((vector int)__a, __b, __c); in vec_vsx_st()
10518 static __inline__ vector signed char __ATTRS_o_ai
10519 vec_xor(vector signed char __a, vector signed char __b) { in vec_xor()
10523 static __inline__ vector signed char __ATTRS_o_ai
10524 vec_xor(vector bool char __a, vector signed char __b) { in vec_xor()
10525 return (vector signed char)__a ^ __b; in vec_xor()
10528 static __inline__ vector signed char __ATTRS_o_ai
10529 vec_xor(vector signed char __a, vector bool char __b) { in vec_xor()
10530 return __a ^ (vector signed char)__b; in vec_xor()
10533 static __inline__ vector unsigned char __ATTRS_o_ai
10534 vec_xor(vector unsigned char __a, vector unsigned char __b) { in vec_xor()
10538 static __inline__ vector unsigned char __ATTRS_o_ai
10539 vec_xor(vector bool char __a, vector unsigned char __b) { in vec_xor()
10540 return (vector unsigned char)__a ^ __b; in vec_xor()
10543 static __inline__ vector unsigned char __ATTRS_o_ai
10544 vec_xor(vector unsigned char __a, vector bool char __b) { in vec_xor()
10545 return __a ^ (vector unsigned char)__b; in vec_xor()
10548 static __inline__ vector bool char __ATTRS_o_ai vec_xor(vector bool char __a, in vec_xor()
10549 vector bool char __b) { in vec_xor()
10553 static __inline__ vector short __ATTRS_o_ai vec_xor(vector short __a, in vec_xor()
10554 vector short __b) { in vec_xor()
10558 static __inline__ vector short __ATTRS_o_ai vec_xor(vector bool short __a, in vec_xor()
10559 vector short __b) { in vec_xor()
10560 return (vector short)__a ^ __b; in vec_xor()
10563 static __inline__ vector short __ATTRS_o_ai vec_xor(vector short __a, in vec_xor()
10564 vector bool short __b) { in vec_xor()
10565 return __a ^ (vector short)__b; in vec_xor()
10568 static __inline__ vector unsigned short __ATTRS_o_ai
10569 vec_xor(vector unsigned short __a, vector unsigned short __b) { in vec_xor()
10573 static __inline__ vector unsigned short __ATTRS_o_ai
10574 vec_xor(vector bool short __a, vector unsigned short __b) { in vec_xor()
10575 return (vector unsigned short)__a ^ __b; in vec_xor()
10578 static __inline__ vector unsigned short __ATTRS_o_ai
10579 vec_xor(vector unsigned short __a, vector bool short __b) { in vec_xor()
10580 return __a ^ (vector unsigned short)__b; in vec_xor()
10583 static __inline__ vector bool short __ATTRS_o_ai
10584 vec_xor(vector bool short __a, vector bool short __b) { in vec_xor()
10588 static __inline__ vector int __ATTRS_o_ai vec_xor(vector int __a, in vec_xor()
10589 vector int __b) { in vec_xor()
10593 static __inline__ vector int __ATTRS_o_ai vec_xor(vector bool int __a, in vec_xor()
10594 vector int __b) { in vec_xor()
10595 return (vector int)__a ^ __b; in vec_xor()
10598 static __inline__ vector int __ATTRS_o_ai vec_xor(vector int __a, in vec_xor()
10599 vector bool int __b) { in vec_xor()
10600 return __a ^ (vector int)__b; in vec_xor()
10603 static __inline__ vector unsigned int __ATTRS_o_ai
10604 vec_xor(vector unsigned int __a, vector unsigned int __b) { in vec_xor()
10608 static __inline__ vector unsigned int __ATTRS_o_ai
10609 vec_xor(vector bool int __a, vector unsigned int __b) { in vec_xor()
10610 return (vector unsigned int)__a ^ __b; in vec_xor()
10613 static __inline__ vector unsigned int __ATTRS_o_ai
10614 vec_xor(vector unsigned int __a, vector bool int __b) { in vec_xor()
10615 return __a ^ (vector unsigned int)__b; in vec_xor()
10618 static __inline__ vector bool int __ATTRS_o_ai vec_xor(vector bool int __a, in vec_xor()
10619 vector bool int __b) { in vec_xor()
10623 static __inline__ vector float __ATTRS_o_ai vec_xor(vector float __a, in vec_xor()
10624 vector float __b) { in vec_xor()
10625 vector unsigned int __res = in vec_xor()
10626 (vector unsigned int)__a ^ (vector unsigned int)__b; in vec_xor()
10627 return (vector float)__res; in vec_xor()
10630 static __inline__ vector float __ATTRS_o_ai vec_xor(vector bool int __a, in vec_xor()
10631 vector float __b) { in vec_xor()
10632 vector unsigned int __res = in vec_xor()
10633 (vector unsigned int)__a ^ (vector unsigned int)__b; in vec_xor()
10634 return (vector float)__res; in vec_xor()
10637 static __inline__ vector float __ATTRS_o_ai vec_xor(vector float __a, in vec_xor()
10638 vector bool int __b) { in vec_xor()
10639 vector unsigned int __res = in vec_xor()
10640 (vector unsigned int)__a ^ (vector unsigned int)__b; in vec_xor()
10641 return (vector float)__res; in vec_xor()
10645 static __inline__ vector signed long long __ATTRS_o_ai
10646 vec_xor(vector signed long long __a, vector signed long long __b) { in vec_xor()
10650 static __inline__ vector signed long long __ATTRS_o_ai
10651 vec_xor(vector bool long long __a, vector signed long long __b) { in vec_xor()
10652 return (vector signed long long)__a ^ __b; in vec_xor()
10655 static __inline__ vector signed long long __ATTRS_o_ai
10656 vec_xor(vector signed long long __a, vector bool long long __b) { in vec_xor()
10657 return __a ^ (vector signed long long)__b; in vec_xor()
10660 static __inline__ vector unsigned long long __ATTRS_o_ai
10661 vec_xor(vector unsigned long long __a, vector unsigned long long __b) { in vec_xor()
10665 static __inline__ vector unsigned long long __ATTRS_o_ai
10666 vec_xor(vector bool long long __a, vector unsigned long long __b) { in vec_xor()
10667 return (vector unsigned long long)__a ^ __b; in vec_xor()
10670 static __inline__ vector unsigned long long __ATTRS_o_ai
10671 vec_xor(vector unsigned long long __a, vector bool long long __b) { in vec_xor()
10672 return __a ^ (vector unsigned long long)__b; in vec_xor()
10675 static __inline__ vector bool long long __ATTRS_o_ai
10676 vec_xor(vector bool long long __a, vector bool long long __b) { in vec_xor()
10680 static __inline__ vector double __ATTRS_o_ai vec_xor(vector double __a, in vec_xor()
10681 vector double __b) { in vec_xor()
10682 return (vector double)((vector unsigned long long)__a ^ in vec_xor()
10683 (vector unsigned long long)__b); in vec_xor()
10686 static __inline__ vector double __ATTRS_o_ai
10687 vec_xor(vector double __a, vector bool long long __b) { in vec_xor()
10688 return (vector double)((vector unsigned long long)__a ^ in vec_xor()
10689 (vector unsigned long long)__b); in vec_xor()
10692 static __inline__ vector double __ATTRS_o_ai vec_xor(vector bool long long __a, in vec_xor()
10693 vector double __b) { in vec_xor()
10694 return (vector double)((vector unsigned long long)__a ^ in vec_xor()
10695 (vector unsigned long long)__b); in vec_xor()
10701 static __inline__ vector signed char __ATTRS_o_ai
10702 vec_vxor(vector signed char __a, vector signed char __b) { in vec_vxor()
10706 static __inline__ vector signed char __ATTRS_o_ai
10707 vec_vxor(vector bool char __a, vector signed char __b) { in vec_vxor()
10708 return (vector signed char)__a ^ __b; in vec_vxor()
10711 static __inline__ vector signed char __ATTRS_o_ai
10712 vec_vxor(vector signed char __a, vector bool char __b) { in vec_vxor()
10713 return __a ^ (vector signed char)__b; in vec_vxor()
10716 static __inline__ vector unsigned char __ATTRS_o_ai
10717 vec_vxor(vector unsigned char __a, vector unsigned char __b) { in vec_vxor()
10721 static __inline__ vector unsigned char __ATTRS_o_ai
10722 vec_vxor(vector bool char __a, vector unsigned char __b) { in vec_vxor()
10723 return (vector unsigned char)__a ^ __b; in vec_vxor()
10726 static __inline__ vector unsigned char __ATTRS_o_ai
10727 vec_vxor(vector unsigned char __a, vector bool char __b) { in vec_vxor()
10728 return __a ^ (vector unsigned char)__b; in vec_vxor()
10731 static __inline__ vector bool char __ATTRS_o_ai vec_vxor(vector bool char __a, in vec_vxor()
10732 vector bool char __b) { in vec_vxor()
10736 static __inline__ vector short __ATTRS_o_ai vec_vxor(vector short __a, in vec_vxor()
10737 vector short __b) { in vec_vxor()
10741 static __inline__ vector short __ATTRS_o_ai vec_vxor(vector bool short __a, in vec_vxor()
10742 vector short __b) { in vec_vxor()
10743 return (vector short)__a ^ __b; in vec_vxor()
10746 static __inline__ vector short __ATTRS_o_ai vec_vxor(vector short __a, in vec_vxor()
10747 vector bool short __b) { in vec_vxor()
10748 return __a ^ (vector short)__b; in vec_vxor()
10751 static __inline__ vector unsigned short __ATTRS_o_ai
10752 vec_vxor(vector unsigned short __a, vector unsigned short __b) { in vec_vxor()
10756 static __inline__ vector unsigned short __ATTRS_o_ai
10757 vec_vxor(vector bool short __a, vector unsigned short __b) { in vec_vxor()
10758 return (vector unsigned short)__a ^ __b; in vec_vxor()
10761 static __inline__ vector unsigned short __ATTRS_o_ai
10762 vec_vxor(vector unsigned short __a, vector bool short __b) { in vec_vxor()
10763 return __a ^ (vector unsigned short)__b; in vec_vxor()
10766 static __inline__ vector bool short __ATTRS_o_ai
10767 vec_vxor(vector bool short __a, vector bool short __b) { in vec_vxor()
10771 static __inline__ vector int __ATTRS_o_ai vec_vxor(vector int __a, in vec_vxor()
10772 vector int __b) { in vec_vxor()
10776 static __inline__ vector int __ATTRS_o_ai vec_vxor(vector bool int __a, in vec_vxor()
10777 vector int __b) { in vec_vxor()
10778 return (vector int)__a ^ __b; in vec_vxor()
10781 static __inline__ vector int __ATTRS_o_ai vec_vxor(vector int __a, in vec_vxor()
10782 vector bool int __b) { in vec_vxor()
10783 return __a ^ (vector int)__b; in vec_vxor()
10786 static __inline__ vector unsigned int __ATTRS_o_ai
10787 vec_vxor(vector unsigned int __a, vector unsigned int __b) { in vec_vxor()
10791 static __inline__ vector unsigned int __ATTRS_o_ai
10792 vec_vxor(vector bool int __a, vector unsigned int __b) { in vec_vxor()
10793 return (vector unsigned int)__a ^ __b; in vec_vxor()
10796 static __inline__ vector unsigned int __ATTRS_o_ai
10797 vec_vxor(vector unsigned int __a, vector bool int __b) { in vec_vxor()
10798 return __a ^ (vector unsigned int)__b; in vec_vxor()
10801 static __inline__ vector bool int __ATTRS_o_ai vec_vxor(vector bool int __a, in vec_vxor()
10802 vector bool int __b) { in vec_vxor()
10806 static __inline__ vector float __ATTRS_o_ai vec_vxor(vector float __a, in vec_vxor()
10807 vector float __b) { in vec_vxor()
10808 vector unsigned int __res = in vec_vxor()
10809 (vector unsigned int)__a ^ (vector unsigned int)__b; in vec_vxor()
10810 return (vector float)__res; in vec_vxor()
10813 static __inline__ vector float __ATTRS_o_ai vec_vxor(vector bool int __a, in vec_vxor()
10814 vector float __b) { in vec_vxor()
10815 vector unsigned int __res = in vec_vxor()
10816 (vector unsigned int)__a ^ (vector unsigned int)__b; in vec_vxor()
10817 return (vector float)__res; in vec_vxor()
10820 static __inline__ vector float __ATTRS_o_ai vec_vxor(vector float __a, in vec_vxor()
10821 vector bool int __b) { in vec_vxor()
10822 vector unsigned int __res = in vec_vxor()
10823 (vector unsigned int)__a ^ (vector unsigned int)__b; in vec_vxor()
10824 return (vector float)__res; in vec_vxor()
10828 static __inline__ vector signed long long __ATTRS_o_ai
10829 vec_vxor(vector signed long long __a, vector signed long long __b) { in vec_vxor()
10833 static __inline__ vector signed long long __ATTRS_o_ai
10834 vec_vxor(vector bool long long __a, vector signed long long __b) { in vec_vxor()
10835 return (vector signed long long)__a ^ __b; in vec_vxor()
10838 static __inline__ vector signed long long __ATTRS_o_ai
10839 vec_vxor(vector signed long long __a, vector bool long long __b) { in vec_vxor()
10840 return __a ^ (vector signed long long)__b; in vec_vxor()
10843 static __inline__ vector unsigned long long __ATTRS_o_ai
10844 vec_vxor(vector unsigned long long __a, vector unsigned long long __b) { in vec_vxor()
10848 static __inline__ vector unsigned long long __ATTRS_o_ai
10849 vec_vxor(vector bool long long __a, vector unsigned long long __b) { in vec_vxor()
10850 return (vector unsigned long long)__a ^ __b; in vec_vxor()
10853 static __inline__ vector unsigned long long __ATTRS_o_ai
10854 vec_vxor(vector unsigned long long __a, vector bool long long __b) { in vec_vxor()
10855 return __a ^ (vector unsigned long long)__b; in vec_vxor()
10858 static __inline__ vector bool long long __ATTRS_o_ai
10859 vec_vxor(vector bool long long __a, vector bool long long __b) { in vec_vxor()
10868 static __inline__ signed char __ATTRS_o_ai vec_extract(vector signed char __a, in vec_extract()
10874 vec_extract(vector unsigned char __a, int __b) { in vec_extract()
10878 static __inline__ unsigned char __ATTRS_o_ai vec_extract(vector bool char __a, in vec_extract()
10883 static __inline__ signed short __ATTRS_o_ai vec_extract(vector signed short __a, in vec_extract()
10889 vec_extract(vector unsigned short __a, int __b) { in vec_extract()
10893 static __inline__ unsigned short __ATTRS_o_ai vec_extract(vector bool short __a, in vec_extract()
10898 static __inline__ signed int __ATTRS_o_ai vec_extract(vector signed int __a, in vec_extract()
10903 static __inline__ unsigned int __ATTRS_o_ai vec_extract(vector unsigned int __a, in vec_extract()
10908 static __inline__ unsigned int __ATTRS_o_ai vec_extract(vector bool int __a, in vec_extract()
10915 vec_extract(vector signed long long __a, int __b) { in vec_extract()
10920 vec_extract(vector unsigned long long __a, int __b) { in vec_extract()
10925 vec_extract(vector bool long long __a, int __b) { in vec_extract()
10929 static __inline__ double __ATTRS_o_ai vec_extract(vector double __a, int __b) { in vec_extract()
10934 static __inline__ float __ATTRS_o_ai vec_extract(vector float __a, int __b) { in vec_extract()
10940 static __inline__ vector signed char __ATTRS_o_ai
10941 vec_insert(signed char __a, vector signed char __b, int __c) { in vec_insert()
10946 static __inline__ vector unsigned char __ATTRS_o_ai
10947 vec_insert(unsigned char __a, vector unsigned char __b, int __c) { in vec_insert()
10952 static __inline__ vector bool char __ATTRS_o_ai vec_insert(unsigned char __a, in vec_insert()
10953 vector bool char __b, in vec_insert()
10959 static __inline__ vector signed short __ATTRS_o_ai
10960 vec_insert(signed short __a, vector signed short __b, int __c) { in vec_insert()
10965 static __inline__ vector unsigned short __ATTRS_o_ai
10966 vec_insert(unsigned short __a, vector unsigned short __b, int __c) { in vec_insert()
10971 static __inline__ vector bool short __ATTRS_o_ai
10972 vec_insert(unsigned short __a, vector bool short __b, int __c) { in vec_insert()
10977 static __inline__ vector signed int __ATTRS_o_ai
10978 vec_insert(signed int __a, vector signed int __b, int __c) { in vec_insert()
10983 static __inline__ vector unsigned int __ATTRS_o_ai
10984 vec_insert(unsigned int __a, vector unsigned int __b, int __c) { in vec_insert()
10989 static __inline__ vector bool int __ATTRS_o_ai vec_insert(unsigned int __a, in vec_insert()
10990 vector bool int __b, in vec_insert()
10997 static __inline__ vector signed long long __ATTRS_o_ai
10998 vec_insert(signed long long __a, vector signed long long __b, int __c) { in vec_insert()
11003 static __inline__ vector unsigned long long __ATTRS_o_ai
11004 vec_insert(unsigned long long __a, vector unsigned long long __b, int __c) { in vec_insert()
11009 static __inline__ vector bool long long __ATTRS_o_ai
11010 vec_insert(unsigned long long __a, vector bool long long __b, int __c) { in vec_insert()
11014 static __inline__ vector double __ATTRS_o_ai vec_insert(double __a, in vec_insert()
11015 vector double __b, in vec_insert()
11022 static __inline__ vector float __ATTRS_o_ai vec_insert(float __a, in vec_insert()
11023 vector float __b, in vec_insert()
11031 static __inline__ vector signed char __ATTRS_o_ai
11033 return vec_perm(vec_ld(__a, __b), (vector signed char)(0), in vec_lvlx()
11037 static __inline__ vector signed char __ATTRS_o_ai
11038 vec_lvlx(int __a, const vector signed char *__b) { in vec_lvlx()
11039 return vec_perm(vec_ld(__a, __b), (vector signed char)(0), in vec_lvlx()
11043 static __inline__ vector unsigned char __ATTRS_o_ai
11045 return vec_perm(vec_ld(__a, __b), (vector unsigned char)(0), in vec_lvlx()
11049 static __inline__ vector unsigned char __ATTRS_o_ai
11050 vec_lvlx(int __a, const vector unsigned char *__b) { in vec_lvlx()
11051 return vec_perm(vec_ld(__a, __b), (vector unsigned char)(0), in vec_lvlx()
11055 static __inline__ vector bool char __ATTRS_o_ai
11056 vec_lvlx(int __a, const vector bool char *__b) { in vec_lvlx()
11057 return vec_perm(vec_ld(__a, __b), (vector bool char)(0), in vec_lvlx()
11061 static __inline__ vector short __ATTRS_o_ai vec_lvlx(int __a, in vec_lvlx()
11063 return vec_perm(vec_ld(__a, __b), (vector short)(0), vec_lvsl(__a, __b)); in vec_lvlx()
11066 static __inline__ vector short __ATTRS_o_ai vec_lvlx(int __a, in vec_lvlx()
11067 const vector short *__b) { in vec_lvlx()
11068 return vec_perm(vec_ld(__a, __b), (vector short)(0), in vec_lvlx()
11072 static __inline__ vector unsigned short __ATTRS_o_ai
11074 return vec_perm(vec_ld(__a, __b), (vector unsigned short)(0), in vec_lvlx()
11078 static __inline__ vector unsigned short __ATTRS_o_ai
11079 vec_lvlx(int __a, const vector unsigned short *__b) { in vec_lvlx()
11080 return vec_perm(vec_ld(__a, __b), (vector unsigned short)(0), in vec_lvlx()
11084 static __inline__ vector bool short __ATTRS_o_ai
11085 vec_lvlx(int __a, const vector bool short *__b) { in vec_lvlx()
11086 return vec_perm(vec_ld(__a, __b), (vector bool short)(0), in vec_lvlx()
11090 static __inline__ vector pixel __ATTRS_o_ai vec_lvlx(int __a, in vec_lvlx()
11091 const vector pixel *__b) { in vec_lvlx()
11092 return vec_perm(vec_ld(__a, __b), (vector pixel)(0), in vec_lvlx()
11096 static __inline__ vector int __ATTRS_o_ai vec_lvlx(int __a, const int *__b) { in vec_lvlx()
11097 return vec_perm(vec_ld(__a, __b), (vector int)(0), vec_lvsl(__a, __b)); in vec_lvlx()
11100 static __inline__ vector int __ATTRS_o_ai vec_lvlx(int __a, in vec_lvlx()
11101 const vector int *__b) { in vec_lvlx()
11102 return vec_perm(vec_ld(__a, __b), (vector int)(0), in vec_lvlx()
11106 static __inline__ vector unsigned int __ATTRS_o_ai
11108 return vec_perm(vec_ld(__a, __b), (vector unsigned int)(0), in vec_lvlx()
11112 static __inline__ vector unsigned int __ATTRS_o_ai
11113 vec_lvlx(int __a, const vector unsigned int *__b) { in vec_lvlx()
11114 return vec_perm(vec_ld(__a, __b), (vector unsigned int)(0), in vec_lvlx()
11118 static __inline__ vector bool int __ATTRS_o_ai
11119 vec_lvlx(int __a, const vector bool int *__b) { in vec_lvlx()
11120 return vec_perm(vec_ld(__a, __b), (vector bool int)(0), in vec_lvlx()
11124 static __inline__ vector float __ATTRS_o_ai vec_lvlx(int __a, in vec_lvlx()
11126 return vec_perm(vec_ld(__a, __b), (vector float)(0), vec_lvsl(__a, __b)); in vec_lvlx()
11129 static __inline__ vector float __ATTRS_o_ai vec_lvlx(int __a, in vec_lvlx()
11130 const vector float *__b) { in vec_lvlx()
11131 return vec_perm(vec_ld(__a, __b), (vector float)(0), in vec_lvlx()
11137 static __inline__ vector signed char __ATTRS_o_ai
11139 return vec_perm(vec_ldl(__a, __b), (vector signed char)(0), in vec_lvlxl()
11143 static __inline__ vector signed char __ATTRS_o_ai
11144 vec_lvlxl(int __a, const vector signed char *__b) { in vec_lvlxl()
11145 return vec_perm(vec_ldl(__a, __b), (vector signed char)(0), in vec_lvlxl()
11149 static __inline__ vector unsigned char __ATTRS_o_ai
11151 return vec_perm(vec_ldl(__a, __b), (vector unsigned char)(0), in vec_lvlxl()
11155 static __inline__ vector unsigned char __ATTRS_o_ai
11156 vec_lvlxl(int __a, const vector unsigned char *__b) { in vec_lvlxl()
11157 return vec_perm(vec_ldl(__a, __b), (vector unsigned char)(0), in vec_lvlxl()
11161 static __inline__ vector bool char __ATTRS_o_ai
11162 vec_lvlxl(int __a, const vector bool char *__b) { in vec_lvlxl()
11163 return vec_perm(vec_ldl(__a, __b), (vector bool char)(0), in vec_lvlxl()
11167 static __inline__ vector short __ATTRS_o_ai vec_lvlxl(int __a, in vec_lvlxl()
11169 return vec_perm(vec_ldl(__a, __b), (vector short)(0), vec_lvsl(__a, __b)); in vec_lvlxl()
11172 static __inline__ vector short __ATTRS_o_ai vec_lvlxl(int __a, in vec_lvlxl()
11173 const vector short *__b) { in vec_lvlxl()
11174 return vec_perm(vec_ldl(__a, __b), (vector short)(0), in vec_lvlxl()
11178 static __inline__ vector unsigned short __ATTRS_o_ai
11180 return vec_perm(vec_ldl(__a, __b), (vector unsigned short)(0), in vec_lvlxl()
11184 static __inline__ vector unsigned short __ATTRS_o_ai
11185 vec_lvlxl(int __a, const vector unsigned short *__b) { in vec_lvlxl()
11186 return vec_perm(vec_ldl(__a, __b), (vector unsigned short)(0), in vec_lvlxl()
11190 static __inline__ vector bool short __ATTRS_o_ai
11191 vec_lvlxl(int __a, const vector bool short *__b) { in vec_lvlxl()
11192 return vec_perm(vec_ldl(__a, __b), (vector bool short)(0), in vec_lvlxl()
11196 static __inline__ vector pixel __ATTRS_o_ai vec_lvlxl(int __a, in vec_lvlxl()
11197 const vector pixel *__b) { in vec_lvlxl()
11198 return vec_perm(vec_ldl(__a, __b), (vector pixel)(0), in vec_lvlxl()
11202 static __inline__ vector int __ATTRS_o_ai vec_lvlxl(int __a, const int *__b) { in vec_lvlxl()
11203 return vec_perm(vec_ldl(__a, __b), (vector int)(0), vec_lvsl(__a, __b)); in vec_lvlxl()
11206 static __inline__ vector int __ATTRS_o_ai vec_lvlxl(int __a, in vec_lvlxl()
11207 const vector int *__b) { in vec_lvlxl()
11208 return vec_perm(vec_ldl(__a, __b), (vector int)(0), in vec_lvlxl()
11212 static __inline__ vector unsigned int __ATTRS_o_ai
11214 return vec_perm(vec_ldl(__a, __b), (vector unsigned int)(0), in vec_lvlxl()
11218 static __inline__ vector unsigned int __ATTRS_o_ai
11219 vec_lvlxl(int __a, const vector unsigned int *__b) { in vec_lvlxl()
11220 return vec_perm(vec_ldl(__a, __b), (vector unsigned int)(0), in vec_lvlxl()
11224 static __inline__ vector bool int __ATTRS_o_ai
11225 vec_lvlxl(int __a, const vector bool int *__b) { in vec_lvlxl()
11226 return vec_perm(vec_ldl(__a, __b), (vector bool int)(0), in vec_lvlxl()
11230 static __inline__ vector float __ATTRS_o_ai vec_lvlxl(int __a, in vec_lvlxl()
11232 return vec_perm(vec_ldl(__a, __b), (vector float)(0), vec_lvsl(__a, __b)); in vec_lvlxl()
11235 static __inline__ vector float __ATTRS_o_ai vec_lvlxl(int __a, in vec_lvlxl()
11236 vector float *__b) { in vec_lvlxl()
11237 return vec_perm(vec_ldl(__a, __b), (vector float)(0), in vec_lvlxl()
11243 static __inline__ vector signed char __ATTRS_o_ai
11245 return vec_perm((vector signed char)(0), vec_ld(__a, __b), in vec_lvrx()
11249 static __inline__ vector signed char __ATTRS_o_ai
11250 vec_lvrx(int __a, const vector signed char *__b) { in vec_lvrx()
11251 return vec_perm((vector signed char)(0), vec_ld(__a, __b), in vec_lvrx()
11255 static __inline__ vector unsigned char __ATTRS_o_ai
11257 return vec_perm((vector unsigned char)(0), vec_ld(__a, __b), in vec_lvrx()
11261 static __inline__ vector unsigned char __ATTRS_o_ai
11262 vec_lvrx(int __a, const vector unsigned char *__b) { in vec_lvrx()
11263 return vec_perm((vector unsigned char)(0), vec_ld(__a, __b), in vec_lvrx()
11267 static __inline__ vector bool char __ATTRS_o_ai
11268 vec_lvrx(int __a, const vector bool char *__b) { in vec_lvrx()
11269 return vec_perm((vector bool char)(0), vec_ld(__a, __b), in vec_lvrx()
11273 static __inline__ vector short __ATTRS_o_ai vec_lvrx(int __a, in vec_lvrx()
11275 return vec_perm((vector short)(0), vec_ld(__a, __b), vec_lvsl(__a, __b)); in vec_lvrx()
11278 static __inline__ vector short __ATTRS_o_ai vec_lvrx(int __a, in vec_lvrx()
11279 const vector short *__b) { in vec_lvrx()
11280 return vec_perm((vector short)(0), vec_ld(__a, __b), in vec_lvrx()
11284 static __inline__ vector unsigned short __ATTRS_o_ai
11286 return vec_perm((vector unsigned short)(0), vec_ld(__a, __b), in vec_lvrx()
11290 static __inline__ vector unsigned short __ATTRS_o_ai
11291 vec_lvrx(int __a, const vector unsigned short *__b) { in vec_lvrx()
11292 return vec_perm((vector unsigned short)(0), vec_ld(__a, __b), in vec_lvrx()
11296 static __inline__ vector bool short __ATTRS_o_ai
11297 vec_lvrx(int __a, const vector bool short *__b) { in vec_lvrx()
11298 return vec_perm((vector bool short)(0), vec_ld(__a, __b), in vec_lvrx()
11302 static __inline__ vector pixel __ATTRS_o_ai vec_lvrx(int __a, in vec_lvrx()
11303 const vector pixel *__b) { in vec_lvrx()
11304 return vec_perm((vector pixel)(0), vec_ld(__a, __b), in vec_lvrx()
11308 static __inline__ vector int __ATTRS_o_ai vec_lvrx(int __a, const int *__b) { in vec_lvrx()
11309 return vec_perm((vector int)(0), vec_ld(__a, __b), vec_lvsl(__a, __b)); in vec_lvrx()
11312 static __inline__ vector int __ATTRS_o_ai vec_lvrx(int __a, in vec_lvrx()
11313 const vector int *__b) { in vec_lvrx()
11314 return vec_perm((vector int)(0), vec_ld(__a, __b), in vec_lvrx()
11318 static __inline__ vector unsigned int __ATTRS_o_ai
11320 return vec_perm((vector unsigned int)(0), vec_ld(__a, __b), in vec_lvrx()
11324 static __inline__ vector unsigned int __ATTRS_o_ai
11325 vec_lvrx(int __a, const vector unsigned int *__b) { in vec_lvrx()
11326 return vec_perm((vector unsigned int)(0), vec_ld(__a, __b), in vec_lvrx()
11330 static __inline__ vector bool int __ATTRS_o_ai
11331 vec_lvrx(int __a, const vector bool int *__b) { in vec_lvrx()
11332 return vec_perm((vector bool int)(0), vec_ld(__a, __b), in vec_lvrx()
11336 static __inline__ vector float __ATTRS_o_ai vec_lvrx(int __a, in vec_lvrx()
11338 return vec_perm((vector float)(0), vec_ld(__a, __b), vec_lvsl(__a, __b)); in vec_lvrx()
11341 static __inline__ vector float __ATTRS_o_ai vec_lvrx(int __a, in vec_lvrx()
11342 const vector float *__b) { in vec_lvrx()
11343 return vec_perm((vector float)(0), vec_ld(__a, __b), in vec_lvrx()
11349 static __inline__ vector signed char __ATTRS_o_ai
11351 return vec_perm((vector signed char)(0), vec_ldl(__a, __b), in vec_lvrxl()
11355 static __inline__ vector signed char __ATTRS_o_ai
11356 vec_lvrxl(int __a, const vector signed char *__b) { in vec_lvrxl()
11357 return vec_perm((vector signed char)(0), vec_ldl(__a, __b), in vec_lvrxl()
11361 static __inline__ vector unsigned char __ATTRS_o_ai
11363 return vec_perm((vector unsigned char)(0), vec_ldl(__a, __b), in vec_lvrxl()
11367 static __inline__ vector unsigned char __ATTRS_o_ai
11368 vec_lvrxl(int __a, const vector unsigned char *__b) { in vec_lvrxl()
11369 return vec_perm((vector unsigned char)(0), vec_ldl(__a, __b), in vec_lvrxl()
11373 static __inline__ vector bool char __ATTRS_o_ai
11374 vec_lvrxl(int __a, const vector bool char *__b) { in vec_lvrxl()
11375 return vec_perm((vector bool char)(0), vec_ldl(__a, __b), in vec_lvrxl()
11379 static __inline__ vector short __ATTRS_o_ai vec_lvrxl(int __a, in vec_lvrxl()
11381 return vec_perm((vector short)(0), vec_ldl(__a, __b), vec_lvsl(__a, __b)); in vec_lvrxl()
11384 static __inline__ vector short __ATTRS_o_ai vec_lvrxl(int __a, in vec_lvrxl()
11385 const vector short *__b) { in vec_lvrxl()
11386 return vec_perm((vector short)(0), vec_ldl(__a, __b), in vec_lvrxl()
11390 static __inline__ vector unsigned short __ATTRS_o_ai
11392 return vec_perm((vector unsigned short)(0), vec_ldl(__a, __b), in vec_lvrxl()
11396 static __inline__ vector unsigned short __ATTRS_o_ai
11397 vec_lvrxl(int __a, const vector unsigned short *__b) { in vec_lvrxl()
11398 return vec_perm((vector unsigned short)(0), vec_ldl(__a, __b), in vec_lvrxl()
11402 static __inline__ vector bool short __ATTRS_o_ai
11403 vec_lvrxl(int __a, const vector bool short *__b) { in vec_lvrxl()
11404 return vec_perm((vector bool short)(0), vec_ldl(__a, __b), in vec_lvrxl()
11408 static __inline__ vector pixel __ATTRS_o_ai vec_lvrxl(int __a, in vec_lvrxl()
11409 const vector pixel *__b) { in vec_lvrxl()
11410 return vec_perm((vector pixel)(0), vec_ldl(__a, __b), in vec_lvrxl()
11414 static __inline__ vector int __ATTRS_o_ai vec_lvrxl(int __a, const int *__b) { in vec_lvrxl()
11415 return vec_perm((vector int)(0), vec_ldl(__a, __b), vec_lvsl(__a, __b)); in vec_lvrxl()
11418 static __inline__ vector int __ATTRS_o_ai vec_lvrxl(int __a, in vec_lvrxl()
11419 const vector int *__b) { in vec_lvrxl()
11420 return vec_perm((vector int)(0), vec_ldl(__a, __b), in vec_lvrxl()
11424 static __inline__ vector unsigned int __ATTRS_o_ai
11426 return vec_perm((vector unsigned int)(0), vec_ldl(__a, __b), in vec_lvrxl()
11430 static __inline__ vector unsigned int __ATTRS_o_ai
11431 vec_lvrxl(int __a, const vector unsigned int *__b) { in vec_lvrxl()
11432 return vec_perm((vector unsigned int)(0), vec_ldl(__a, __b), in vec_lvrxl()
11436 static __inline__ vector bool int __ATTRS_o_ai
11437 vec_lvrxl(int __a, const vector bool int *__b) { in vec_lvrxl()
11438 return vec_perm((vector bool int)(0), vec_ldl(__a, __b), in vec_lvrxl()
11442 static __inline__ vector float __ATTRS_o_ai vec_lvrxl(int __a, in vec_lvrxl()
11444 return vec_perm((vector float)(0), vec_ldl(__a, __b), vec_lvsl(__a, __b)); in vec_lvrxl()
11447 static __inline__ vector float __ATTRS_o_ai vec_lvrxl(int __a, in vec_lvrxl()
11448 const vector float *__b) { in vec_lvrxl()
11449 return vec_perm((vector float)(0), vec_ldl(__a, __b), in vec_lvrxl()
11455 static __inline__ void __ATTRS_o_ai vec_stvlx(vector signed char __a, int __b, in vec_stvlx()
11461 static __inline__ void __ATTRS_o_ai vec_stvlx(vector signed char __a, int __b, in vec_stvlx()
11462 vector signed char *__c) { in vec_stvlx()
11468 static __inline__ void __ATTRS_o_ai vec_stvlx(vector unsigned char __a, int __b, in vec_stvlx()
11474 static __inline__ void __ATTRS_o_ai vec_stvlx(vector unsigned char __a, int __b, in vec_stvlx()
11475 vector unsigned char *__c) { in vec_stvlx()
11481 static __inline__ void __ATTRS_o_ai vec_stvlx(vector bool char __a, int __b, in vec_stvlx()
11482 vector bool char *__c) { in vec_stvlx()
11488 static __inline__ void __ATTRS_o_ai vec_stvlx(vector short __a, int __b, in vec_stvlx()
11494 static __inline__ void __ATTRS_o_ai vec_stvlx(vector short __a, int __b, in vec_stvlx()
11495 vector short *__c) { in vec_stvlx()
11501 static __inline__ void __ATTRS_o_ai vec_stvlx(vector unsigned short __a, in vec_stvlx()
11507 static __inline__ void __ATTRS_o_ai vec_stvlx(vector unsigned short __a, in vec_stvlx()
11509 vector unsigned short *__c) { in vec_stvlx()
11515 static __inline__ void __ATTRS_o_ai vec_stvlx(vector bool short __a, int __b, in vec_stvlx()
11516 vector bool short *__c) { in vec_stvlx()
11522 static __inline__ void __ATTRS_o_ai vec_stvlx(vector pixel __a, int __b, in vec_stvlx()
11523 vector pixel *__c) { in vec_stvlx()
11529 static __inline__ void __ATTRS_o_ai vec_stvlx(vector int __a, int __b, in vec_stvlx()
11535 static __inline__ void __ATTRS_o_ai vec_stvlx(vector int __a, int __b, in vec_stvlx()
11536 vector int *__c) { in vec_stvlx()
11542 static __inline__ void __ATTRS_o_ai vec_stvlx(vector unsigned int __a, int __b, in vec_stvlx()
11548 static __inline__ void __ATTRS_o_ai vec_stvlx(vector unsigned int __a, int __b, in vec_stvlx()
11549 vector unsigned int *__c) { in vec_stvlx()
11555 static __inline__ void __ATTRS_o_ai vec_stvlx(vector bool int __a, int __b, in vec_stvlx()
11556 vector bool int *__c) { in vec_stvlx()
11562 static __inline__ void __ATTRS_o_ai vec_stvlx(vector float __a, int __b, in vec_stvlx()
11563 vector float *__c) { in vec_stvlx()
11571 static __inline__ void __ATTRS_o_ai vec_stvlxl(vector signed char __a, int __b, in vec_stvlxl()
11577 static __inline__ void __ATTRS_o_ai vec_stvlxl(vector signed char __a, int __b, in vec_stvlxl()
11578 vector signed char *__c) { in vec_stvlxl()
11584 static __inline__ void __ATTRS_o_ai vec_stvlxl(vector unsigned char __a, in vec_stvlxl()
11590 static __inline__ void __ATTRS_o_ai vec_stvlxl(vector unsigned char __a, in vec_stvlxl()
11592 vector unsigned char *__c) { in vec_stvlxl()
11598 static __inline__ void __ATTRS_o_ai vec_stvlxl(vector bool char __a, int __b, in vec_stvlxl()
11599 vector bool char *__c) { in vec_stvlxl()
11605 static __inline__ void __ATTRS_o_ai vec_stvlxl(vector short __a, int __b, in vec_stvlxl()
11611 static __inline__ void __ATTRS_o_ai vec_stvlxl(vector short __a, int __b, in vec_stvlxl()
11612 vector short *__c) { in vec_stvlxl()
11618 static __inline__ void __ATTRS_o_ai vec_stvlxl(vector unsigned short __a, in vec_stvlxl()
11624 static __inline__ void __ATTRS_o_ai vec_stvlxl(vector unsigned short __a, in vec_stvlxl()
11626 vector unsigned short *__c) { in vec_stvlxl()
11632 static __inline__ void __ATTRS_o_ai vec_stvlxl(vector bool short __a, int __b, in vec_stvlxl()
11633 vector bool short *__c) { in vec_stvlxl()
11639 static __inline__ void __ATTRS_o_ai vec_stvlxl(vector pixel __a, int __b, in vec_stvlxl()
11640 vector pixel *__c) { in vec_stvlxl()
11646 static __inline__ void __ATTRS_o_ai vec_stvlxl(vector int __a, int __b, in vec_stvlxl()
11652 static __inline__ void __ATTRS_o_ai vec_stvlxl(vector int __a, int __b, in vec_stvlxl()
11653 vector int *__c) { in vec_stvlxl()
11659 static __inline__ void __ATTRS_o_ai vec_stvlxl(vector unsigned int __a, int __b, in vec_stvlxl()
11665 static __inline__ void __ATTRS_o_ai vec_stvlxl(vector unsigned int __a, int __b, in vec_stvlxl()
11666 vector unsigned int *__c) { in vec_stvlxl()
11672 static __inline__ void __ATTRS_o_ai vec_stvlxl(vector bool int __a, int __b, in vec_stvlxl()
11673 vector bool int *__c) { in vec_stvlxl()
11679 static __inline__ void __ATTRS_o_ai vec_stvlxl(vector float __a, int __b, in vec_stvlxl()
11680 vector float *__c) { in vec_stvlxl()
11688 static __inline__ void __ATTRS_o_ai vec_stvrx(vector signed char __a, int __b, in vec_stvrx()
11694 static __inline__ void __ATTRS_o_ai vec_stvrx(vector signed char __a, int __b, in vec_stvrx()
11695 vector signed char *__c) { in vec_stvrx()
11701 static __inline__ void __ATTRS_o_ai vec_stvrx(vector unsigned char __a, int __b, in vec_stvrx()
11707 static __inline__ void __ATTRS_o_ai vec_stvrx(vector unsigned char __a, int __b, in vec_stvrx()
11708 vector unsigned char *__c) { in vec_stvrx()
11714 static __inline__ void __ATTRS_o_ai vec_stvrx(vector bool char __a, int __b, in vec_stvrx()
11715 vector bool char *__c) { in vec_stvrx()
11721 static __inline__ void __ATTRS_o_ai vec_stvrx(vector short __a, int __b, in vec_stvrx()
11727 static __inline__ void __ATTRS_o_ai vec_stvrx(vector short __a, int __b, in vec_stvrx()
11728 vector short *__c) { in vec_stvrx()
11734 static __inline__ void __ATTRS_o_ai vec_stvrx(vector unsigned short __a, in vec_stvrx()
11740 static __inline__ void __ATTRS_o_ai vec_stvrx(vector unsigned short __a, in vec_stvrx()
11742 vector unsigned short *__c) { in vec_stvrx()
11748 static __inline__ void __ATTRS_o_ai vec_stvrx(vector bool short __a, int __b, in vec_stvrx()
11749 vector bool short *__c) { in vec_stvrx()
11755 static __inline__ void __ATTRS_o_ai vec_stvrx(vector pixel __a, int __b, in vec_stvrx()
11756 vector pixel *__c) { in vec_stvrx()
11762 static __inline__ void __ATTRS_o_ai vec_stvrx(vector int __a, int __b, in vec_stvrx()
11768 static __inline__ void __ATTRS_o_ai vec_stvrx(vector int __a, int __b, in vec_stvrx()
11769 vector int *__c) { in vec_stvrx()
11775 static __inline__ void __ATTRS_o_ai vec_stvrx(vector unsigned int __a, int __b, in vec_stvrx()
11781 static __inline__ void __ATTRS_o_ai vec_stvrx(vector unsigned int __a, int __b, in vec_stvrx()
11782 vector unsigned int *__c) { in vec_stvrx()
11788 static __inline__ void __ATTRS_o_ai vec_stvrx(vector bool int __a, int __b, in vec_stvrx()
11789 vector bool int *__c) { in vec_stvrx()
11795 static __inline__ void __ATTRS_o_ai vec_stvrx(vector float __a, int __b, in vec_stvrx()
11796 vector float *__c) { in vec_stvrx()
11804 static __inline__ void __ATTRS_o_ai vec_stvrxl(vector signed char __a, int __b, in vec_stvrxl()
11810 static __inline__ void __ATTRS_o_ai vec_stvrxl(vector signed char __a, int __b, in vec_stvrxl()
11811 vector signed char *__c) { in vec_stvrxl()
11817 static __inline__ void __ATTRS_o_ai vec_stvrxl(vector unsigned char __a, in vec_stvrxl()
11823 static __inline__ void __ATTRS_o_ai vec_stvrxl(vector unsigned char __a, in vec_stvrxl()
11825 vector unsigned char *__c) { in vec_stvrxl()
11831 static __inline__ void __ATTRS_o_ai vec_stvrxl(vector bool char __a, int __b, in vec_stvrxl()
11832 vector bool char *__c) { in vec_stvrxl()
11838 static __inline__ void __ATTRS_o_ai vec_stvrxl(vector short __a, int __b, in vec_stvrxl()
11844 static __inline__ void __ATTRS_o_ai vec_stvrxl(vector short __a, int __b, in vec_stvrxl()
11845 vector short *__c) { in vec_stvrxl()
11851 static __inline__ void __ATTRS_o_ai vec_stvrxl(vector unsigned short __a, in vec_stvrxl()
11857 static __inline__ void __ATTRS_o_ai vec_stvrxl(vector unsigned short __a, in vec_stvrxl()
11859 vector unsigned short *__c) { in vec_stvrxl()
11865 static __inline__ void __ATTRS_o_ai vec_stvrxl(vector bool short __a, int __b, in vec_stvrxl()
11866 vector bool short *__c) { in vec_stvrxl()
11872 static __inline__ void __ATTRS_o_ai vec_stvrxl(vector pixel __a, int __b, in vec_stvrxl()
11873 vector pixel *__c) { in vec_stvrxl()
11879 static __inline__ void __ATTRS_o_ai vec_stvrxl(vector int __a, int __b, in vec_stvrxl()
11885 static __inline__ void __ATTRS_o_ai vec_stvrxl(vector int __a, int __b, in vec_stvrxl()
11886 vector int *__c) { in vec_stvrxl()
11892 static __inline__ void __ATTRS_o_ai vec_stvrxl(vector unsigned int __a, int __b, in vec_stvrxl()
11898 static __inline__ void __ATTRS_o_ai vec_stvrxl(vector unsigned int __a, int __b, in vec_stvrxl()
11899 vector unsigned int *__c) { in vec_stvrxl()
11905 static __inline__ void __ATTRS_o_ai vec_stvrxl(vector bool int __a, int __b, in vec_stvrxl()
11906 vector bool int *__c) { in vec_stvrxl()
11912 static __inline__ void __ATTRS_o_ai vec_stvrxl(vector float __a, int __b, in vec_stvrxl()
11913 vector float *__c) { in vec_stvrxl()
11921 static __inline__ vector signed char __ATTRS_o_ai vec_promote(signed char __a, in vec_promote()
11923 vector signed char __res = (vector signed char)(0); in vec_promote()
11928 static __inline__ vector unsigned char __ATTRS_o_ai
11930 vector unsigned char __res = (vector unsigned char)(0); in vec_promote()
11935 static __inline__ vector short __ATTRS_o_ai vec_promote(short __a, int __b) { in vec_promote()
11936 vector short __res = (vector short)(0); in vec_promote()
11941 static __inline__ vector unsigned short __ATTRS_o_ai
11943 vector unsigned short __res = (vector unsigned short)(0); in vec_promote()
11948 static __inline__ vector int __ATTRS_o_ai vec_promote(int __a, int __b) { in vec_promote()
11949 vector int __res = (vector int)(0); in vec_promote()
11954 static __inline__ vector unsigned int __ATTRS_o_ai vec_promote(unsigned int __a, in vec_promote()
11956 vector unsigned int __res = (vector unsigned int)(0); in vec_promote()
11961 static __inline__ vector float __ATTRS_o_ai vec_promote(float __a, int __b) { in vec_promote()
11962 vector float __res = (vector float)(0); in vec_promote()
11969 static __inline__ vector signed char __ATTRS_o_ai vec_splats(signed char __a) { in vec_splats()
11970 return (vector signed char)(__a); in vec_splats()
11973 static __inline__ vector unsigned char __ATTRS_o_ai
11975 return (vector unsigned char)(__a); in vec_splats()
11978 static __inline__ vector short __ATTRS_o_ai vec_splats(short __a) { in vec_splats()
11979 return (vector short)(__a); in vec_splats()
11982 static __inline__ vector unsigned short __ATTRS_o_ai
11984 return (vector unsigned short)(__a); in vec_splats()
11987 static __inline__ vector int __ATTRS_o_ai vec_splats(int __a) { in vec_splats()
11988 return (vector int)(__a); in vec_splats()
11991 static __inline__ vector unsigned int __ATTRS_o_ai
11993 return (vector unsigned int)(__a); in vec_splats()
11997 static __inline__ vector signed long long __ATTRS_o_ai
11999 return (vector signed long long)(__a); in vec_splats()
12002 static __inline__ vector unsigned long long __ATTRS_o_ai
12004 return (vector unsigned long long)(__a); in vec_splats()
12008 static __inline__ vector signed __int128 __ATTRS_o_ai
12010 return (vector signed __int128)(__a); in vec_splats()
12013 static __inline__ vector unsigned __int128 __ATTRS_o_ai
12015 return (vector unsigned __int128)(__a); in vec_splats()
12020 static __inline__ vector double __ATTRS_o_ai vec_splats(double __a) { in vec_splats()
12021 return (vector double)(__a); in vec_splats()
12025 static __inline__ vector float __ATTRS_o_ai vec_splats(float __a) { in vec_splats()
12026 return (vector float)(__a); in vec_splats()
12033 static __inline__ int __ATTRS_o_ai vec_all_eq(vector signed char __a, in vec_all_eq()
12034 vector signed char __b) { in vec_all_eq()
12035 return __builtin_altivec_vcmpequb_p(__CR6_LT, (vector char)__a, in vec_all_eq()
12036 (vector char)__b); in vec_all_eq()
12039 static __inline__ int __ATTRS_o_ai vec_all_eq(vector signed char __a, in vec_all_eq()
12040 vector bool char __b) { in vec_all_eq()
12041 return __builtin_altivec_vcmpequb_p(__CR6_LT, (vector char)__a, in vec_all_eq()
12042 (vector char)__b); in vec_all_eq()
12045 static __inline__ int __ATTRS_o_ai vec_all_eq(vector unsigned char __a, in vec_all_eq()
12046 vector unsigned char __b) { in vec_all_eq()
12047 return __builtin_altivec_vcmpequb_p(__CR6_LT, (vector char)__a, in vec_all_eq()
12048 (vector char)__b); in vec_all_eq()
12051 static __inline__ int __ATTRS_o_ai vec_all_eq(vector unsigned char __a, in vec_all_eq()
12052 vector bool char __b) { in vec_all_eq()
12053 return __builtin_altivec_vcmpequb_p(__CR6_LT, (vector char)__a, in vec_all_eq()
12054 (vector char)__b); in vec_all_eq()
12057 static __inline__ int __ATTRS_o_ai vec_all_eq(vector bool char __a, in vec_all_eq()
12058 vector signed char __b) { in vec_all_eq()
12059 return __builtin_altivec_vcmpequb_p(__CR6_LT, (vector char)__a, in vec_all_eq()
12060 (vector char)__b); in vec_all_eq()
12063 static __inline__ int __ATTRS_o_ai vec_all_eq(vector bool char __a, in vec_all_eq()
12064 vector unsigned char __b) { in vec_all_eq()
12065 return __builtin_altivec_vcmpequb_p(__CR6_LT, (vector char)__a, in vec_all_eq()
12066 (vector char)__b); in vec_all_eq()
12069 static __inline__ int __ATTRS_o_ai vec_all_eq(vector bool char __a, in vec_all_eq()
12070 vector bool char __b) { in vec_all_eq()
12071 return __builtin_altivec_vcmpequb_p(__CR6_LT, (vector char)__a, in vec_all_eq()
12072 (vector char)__b); in vec_all_eq()
12075 static __inline__ int __ATTRS_o_ai vec_all_eq(vector short __a, in vec_all_eq()
12076 vector short __b) { in vec_all_eq()
12080 static __inline__ int __ATTRS_o_ai vec_all_eq(vector short __a, in vec_all_eq()
12081 vector bool short __b) { in vec_all_eq()
12082 return __builtin_altivec_vcmpequh_p(__CR6_LT, __a, (vector short)__b); in vec_all_eq()
12085 static __inline__ int __ATTRS_o_ai vec_all_eq(vector unsigned short __a, in vec_all_eq()
12086 vector unsigned short __b) { in vec_all_eq()
12087 return __builtin_altivec_vcmpequh_p(__CR6_LT, (vector short)__a, in vec_all_eq()
12088 (vector short)__b); in vec_all_eq()
12091 static __inline__ int __ATTRS_o_ai vec_all_eq(vector unsigned short __a, in vec_all_eq()
12092 vector bool short __b) { in vec_all_eq()
12093 return __builtin_altivec_vcmpequh_p(__CR6_LT, (vector short)__a, in vec_all_eq()
12094 (vector short)__b); in vec_all_eq()
12097 static __inline__ int __ATTRS_o_ai vec_all_eq(vector bool short __a, in vec_all_eq()
12098 vector short __b) { in vec_all_eq()
12099 return __builtin_altivec_vcmpequh_p(__CR6_LT, (vector short)__a, in vec_all_eq()
12100 (vector short)__b); in vec_all_eq()
12103 static __inline__ int __ATTRS_o_ai vec_all_eq(vector bool short __a, in vec_all_eq()
12104 vector unsigned short __b) { in vec_all_eq()
12105 return __builtin_altivec_vcmpequh_p(__CR6_LT, (vector short)__a, in vec_all_eq()
12106 (vector short)__b); in vec_all_eq()
12109 static __inline__ int __ATTRS_o_ai vec_all_eq(vector bool short __a, in vec_all_eq()
12110 vector bool short __b) { in vec_all_eq()
12111 return __builtin_altivec_vcmpequh_p(__CR6_LT, (vector short)__a, in vec_all_eq()
12112 (vector short)__b); in vec_all_eq()
12115 static __inline__ int __ATTRS_o_ai vec_all_eq(vector pixel __a, in vec_all_eq()
12116 vector pixel __b) { in vec_all_eq()
12117 return __builtin_altivec_vcmpequh_p(__CR6_LT, (vector short)__a, in vec_all_eq()
12118 (vector short)__b); in vec_all_eq()
12121 static __inline__ int __ATTRS_o_ai vec_all_eq(vector int __a, vector int __b) { in vec_all_eq()
12125 static __inline__ int __ATTRS_o_ai vec_all_eq(vector int __a, in vec_all_eq()
12126 vector bool int __b) { in vec_all_eq()
12127 return __builtin_altivec_vcmpequw_p(__CR6_LT, __a, (vector int)__b); in vec_all_eq()
12130 static __inline__ int __ATTRS_o_ai vec_all_eq(vector unsigned int __a, in vec_all_eq()
12131 vector unsigned int __b) { in vec_all_eq()
12132 return __builtin_altivec_vcmpequw_p(__CR6_LT, (vector int)__a, in vec_all_eq()
12133 (vector int)__b); in vec_all_eq()
12136 static __inline__ int __ATTRS_o_ai vec_all_eq(vector unsigned int __a, in vec_all_eq()
12137 vector bool int __b) { in vec_all_eq()
12138 return __builtin_altivec_vcmpequw_p(__CR6_LT, (vector int)__a, in vec_all_eq()
12139 (vector int)__b); in vec_all_eq()
12142 static __inline__ int __ATTRS_o_ai vec_all_eq(vector bool int __a, in vec_all_eq()
12143 vector int __b) { in vec_all_eq()
12144 return __builtin_altivec_vcmpequw_p(__CR6_LT, (vector int)__a, in vec_all_eq()
12145 (vector int)__b); in vec_all_eq()
12148 static __inline__ int __ATTRS_o_ai vec_all_eq(vector bool int __a, in vec_all_eq()
12149 vector unsigned int __b) { in vec_all_eq()
12150 return __builtin_altivec_vcmpequw_p(__CR6_LT, (vector int)__a, in vec_all_eq()
12151 (vector int)__b); in vec_all_eq()
12154 static __inline__ int __ATTRS_o_ai vec_all_eq(vector bool int __a, in vec_all_eq()
12155 vector bool int __b) { in vec_all_eq()
12156 return __builtin_altivec_vcmpequw_p(__CR6_LT, (vector int)__a, in vec_all_eq()
12157 (vector int)__b); in vec_all_eq()
12161 static __inline__ int __ATTRS_o_ai vec_all_eq(vector signed long long __a, in vec_all_eq()
12162 vector signed long long __b) { in vec_all_eq()
12166 static __inline__ int __ATTRS_o_ai vec_all_eq(vector long long __a, in vec_all_eq()
12167 vector bool long long __b) { in vec_all_eq()
12168 return __builtin_altivec_vcmpequd_p(__CR6_LT, __a, (vector long long)__b); in vec_all_eq()
12171 static __inline__ int __ATTRS_o_ai vec_all_eq(vector unsigned long long __a, in vec_all_eq()
12172 vector unsigned long long __b) { in vec_all_eq()
12173 return __builtin_altivec_vcmpequd_p(__CR6_LT, (vector long long)__a, in vec_all_eq()
12174 (vector long long)__b); in vec_all_eq()
12177 static __inline__ int __ATTRS_o_ai vec_all_eq(vector unsigned long long __a, in vec_all_eq()
12178 vector bool long long __b) { in vec_all_eq()
12179 return __builtin_altivec_vcmpequd_p(__CR6_LT, (vector long long)__a, in vec_all_eq()
12180 (vector long long)__b); in vec_all_eq()
12183 static __inline__ int __ATTRS_o_ai vec_all_eq(vector bool long long __a, in vec_all_eq()
12184 vector long long __b) { in vec_all_eq()
12185 return __builtin_altivec_vcmpequd_p(__CR6_LT, (vector long long)__a, in vec_all_eq()
12186 (vector long long)__b); in vec_all_eq()
12189 static __inline__ int __ATTRS_o_ai vec_all_eq(vector bool long long __a, in vec_all_eq()
12190 vector unsigned long long __b) { in vec_all_eq()
12191 return __builtin_altivec_vcmpequd_p(__CR6_LT, (vector long long)__a, in vec_all_eq()
12192 (vector long long)__b); in vec_all_eq()
12195 static __inline__ int __ATTRS_o_ai vec_all_eq(vector bool long long __a, in vec_all_eq()
12196 vector bool long long __b) { in vec_all_eq()
12197 return __builtin_altivec_vcmpequd_p(__CR6_LT, (vector long long)__a, in vec_all_eq()
12198 (vector long long)__b); in vec_all_eq()
12202 static __inline__ int __ATTRS_o_ai vec_all_eq(vector float __a, in vec_all_eq()
12203 vector float __b) { in vec_all_eq()
12212 static __inline__ int __ATTRS_o_ai vec_all_eq(vector double __a, in vec_all_eq()
12213 vector double __b) { in vec_all_eq()
12220 static __inline__ int __ATTRS_o_ai vec_all_ge(vector signed char __a, in vec_all_ge()
12221 vector signed char __b) { in vec_all_ge()
12225 static __inline__ int __ATTRS_o_ai vec_all_ge(vector signed char __a, in vec_all_ge()
12226 vector bool char __b) { in vec_all_ge()
12227 return __builtin_altivec_vcmpgtsb_p(__CR6_EQ, (vector signed char)__b, __a); in vec_all_ge()
12230 static __inline__ int __ATTRS_o_ai vec_all_ge(vector unsigned char __a, in vec_all_ge()
12231 vector unsigned char __b) { in vec_all_ge()
12235 static __inline__ int __ATTRS_o_ai vec_all_ge(vector unsigned char __a, in vec_all_ge()
12236 vector bool char __b) { in vec_all_ge()
12237 return __builtin_altivec_vcmpgtub_p(__CR6_EQ, (vector unsigned char)__b, __a); in vec_all_ge()
12240 static __inline__ int __ATTRS_o_ai vec_all_ge(vector bool char __a, in vec_all_ge()
12241 vector signed char __b) { in vec_all_ge()
12242 return __builtin_altivec_vcmpgtub_p(__CR6_EQ, (vector unsigned char)__b, in vec_all_ge()
12243 (vector unsigned char)__a); in vec_all_ge()
12246 static __inline__ int __ATTRS_o_ai vec_all_ge(vector bool char __a, in vec_all_ge()
12247 vector unsigned char __b) { in vec_all_ge()
12248 return __builtin_altivec_vcmpgtub_p(__CR6_EQ, __b, (vector unsigned char)__a); in vec_all_ge()
12251 static __inline__ int __ATTRS_o_ai vec_all_ge(vector bool char __a, in vec_all_ge()
12252 vector bool char __b) { in vec_all_ge()
12253 return __builtin_altivec_vcmpgtub_p(__CR6_EQ, (vector unsigned char)__b, in vec_all_ge()
12254 (vector unsigned char)__a); in vec_all_ge()
12257 static __inline__ int __ATTRS_o_ai vec_all_ge(vector short __a, in vec_all_ge()
12258 vector short __b) { in vec_all_ge()
12262 static __inline__ int __ATTRS_o_ai vec_all_ge(vector short __a, in vec_all_ge()
12263 vector bool short __b) { in vec_all_ge()
12264 return __builtin_altivec_vcmpgtsh_p(__CR6_EQ, (vector short)__b, __a); in vec_all_ge()
12267 static __inline__ int __ATTRS_o_ai vec_all_ge(vector unsigned short __a, in vec_all_ge()
12268 vector unsigned short __b) { in vec_all_ge()
12272 static __inline__ int __ATTRS_o_ai vec_all_ge(vector unsigned short __a, in vec_all_ge()
12273 vector bool short __b) { in vec_all_ge()
12274 return __builtin_altivec_vcmpgtuh_p(__CR6_EQ, (vector unsigned short)__b, in vec_all_ge()
12278 static __inline__ int __ATTRS_o_ai vec_all_ge(vector bool short __a, in vec_all_ge()
12279 vector short __b) { in vec_all_ge()
12280 return __builtin_altivec_vcmpgtuh_p(__CR6_EQ, (vector unsigned short)__b, in vec_all_ge()
12281 (vector unsigned short)__a); in vec_all_ge()
12284 static __inline__ int __ATTRS_o_ai vec_all_ge(vector bool short __a, in vec_all_ge()
12285 vector unsigned short __b) { in vec_all_ge()
12287 (vector unsigned short)__a); in vec_all_ge()
12290 static __inline__ int __ATTRS_o_ai vec_all_ge(vector bool short __a, in vec_all_ge()
12291 vector bool short __b) { in vec_all_ge()
12292 return __builtin_altivec_vcmpgtuh_p(__CR6_EQ, (vector unsigned short)__b, in vec_all_ge()
12293 (vector unsigned short)__a); in vec_all_ge()
12296 static __inline__ int __ATTRS_o_ai vec_all_ge(vector int __a, vector int __b) { in vec_all_ge()
12300 static __inline__ int __ATTRS_o_ai vec_all_ge(vector int __a, in vec_all_ge()
12301 vector bool int __b) { in vec_all_ge()
12302 return __builtin_altivec_vcmpgtsw_p(__CR6_EQ, (vector int)__b, __a); in vec_all_ge()
12305 static __inline__ int __ATTRS_o_ai vec_all_ge(vector unsigned int __a, in vec_all_ge()
12306 vector unsigned int __b) { in vec_all_ge()
12310 static __inline__ int __ATTRS_o_ai vec_all_ge(vector unsigned int __a, in vec_all_ge()
12311 vector bool int __b) { in vec_all_ge()
12312 return __builtin_altivec_vcmpgtuw_p(__CR6_EQ, (vector unsigned int)__b, __a); in vec_all_ge()
12315 static __inline__ int __ATTRS_o_ai vec_all_ge(vector bool int __a, in vec_all_ge()
12316 vector int __b) { in vec_all_ge()
12317 return __builtin_altivec_vcmpgtuw_p(__CR6_EQ, (vector unsigned int)__b, in vec_all_ge()
12318 (vector unsigned int)__a); in vec_all_ge()
12321 static __inline__ int __ATTRS_o_ai vec_all_ge(vector bool int __a, in vec_all_ge()
12322 vector unsigned int __b) { in vec_all_ge()
12323 return __builtin_altivec_vcmpgtuw_p(__CR6_EQ, __b, (vector unsigned int)__a); in vec_all_ge()
12326 static __inline__ int __ATTRS_o_ai vec_all_ge(vector bool int __a, in vec_all_ge()
12327 vector bool int __b) { in vec_all_ge()
12328 return __builtin_altivec_vcmpgtuw_p(__CR6_EQ, (vector unsigned int)__b, in vec_all_ge()
12329 (vector unsigned int)__a); in vec_all_ge()
12333 static __inline__ int __ATTRS_o_ai vec_all_ge(vector signed long long __a, in vec_all_ge()
12334 vector signed long long __b) { in vec_all_ge()
12337 static __inline__ int __ATTRS_o_ai vec_all_ge(vector signed long long __a, in vec_all_ge()
12338 vector bool long long __b) { in vec_all_ge()
12339 return __builtin_altivec_vcmpgtsd_p(__CR6_EQ, (vector signed long long)__b, in vec_all_ge()
12343 static __inline__ int __ATTRS_o_ai vec_all_ge(vector unsigned long long __a, in vec_all_ge()
12344 vector unsigned long long __b) { in vec_all_ge()
12348 static __inline__ int __ATTRS_o_ai vec_all_ge(vector unsigned long long __a, in vec_all_ge()
12349 vector bool long long __b) { in vec_all_ge()
12350 return __builtin_altivec_vcmpgtud_p(__CR6_EQ, (vector unsigned long long)__b, in vec_all_ge()
12354 static __inline__ int __ATTRS_o_ai vec_all_ge(vector bool long long __a, in vec_all_ge()
12355 vector signed long long __b) { in vec_all_ge()
12356 return __builtin_altivec_vcmpgtud_p(__CR6_EQ, (vector unsigned long long)__b, in vec_all_ge()
12357 (vector unsigned long long)__a); in vec_all_ge()
12360 static __inline__ int __ATTRS_o_ai vec_all_ge(vector bool long long __a, in vec_all_ge()
12361 vector unsigned long long __b) { in vec_all_ge()
12363 (vector unsigned long long)__a); in vec_all_ge()
12366 static __inline__ int __ATTRS_o_ai vec_all_ge(vector bool long long __a, in vec_all_ge()
12367 vector bool long long __b) { in vec_all_ge()
12368 return __builtin_altivec_vcmpgtud_p(__CR6_EQ, (vector unsigned long long)__b, in vec_all_ge()
12369 (vector unsigned long long)__a); in vec_all_ge()
12373 static __inline__ int __ATTRS_o_ai vec_all_ge(vector float __a, in vec_all_ge()
12374 vector float __b) { in vec_all_ge()
12383 static __inline__ int __ATTRS_o_ai vec_all_ge(vector double __a, in vec_all_ge()
12384 vector double __b) { in vec_all_ge()
12391 static __inline__ int __ATTRS_o_ai vec_all_gt(vector signed char __a, in vec_all_gt()
12392 vector signed char __b) { in vec_all_gt()
12396 static __inline__ int __ATTRS_o_ai vec_all_gt(vector signed char __a, in vec_all_gt()
12397 vector bool char __b) { in vec_all_gt()
12398 return __builtin_altivec_vcmpgtsb_p(__CR6_LT, __a, (vector signed char)__b); in vec_all_gt()
12401 static __inline__ int __ATTRS_o_ai vec_all_gt(vector unsigned char __a, in vec_all_gt()
12402 vector unsigned char __b) { in vec_all_gt()
12406 static __inline__ int __ATTRS_o_ai vec_all_gt(vector unsigned char __a, in vec_all_gt()
12407 vector bool char __b) { in vec_all_gt()
12408 return __builtin_altivec_vcmpgtub_p(__CR6_LT, __a, (vector unsigned char)__b); in vec_all_gt()
12411 static __inline__ int __ATTRS_o_ai vec_all_gt(vector bool char __a, in vec_all_gt()
12412 vector signed char __b) { in vec_all_gt()
12413 return __builtin_altivec_vcmpgtub_p(__CR6_LT, (vector unsigned char)__a, in vec_all_gt()
12414 (vector unsigned char)__b); in vec_all_gt()
12417 static __inline__ int __ATTRS_o_ai vec_all_gt(vector bool char __a, in vec_all_gt()
12418 vector unsigned char __b) { in vec_all_gt()
12419 return __builtin_altivec_vcmpgtub_p(__CR6_LT, (vector unsigned char)__a, __b); in vec_all_gt()
12422 static __inline__ int __ATTRS_o_ai vec_all_gt(vector bool char __a, in vec_all_gt()
12423 vector bool char __b) { in vec_all_gt()
12424 return __builtin_altivec_vcmpgtub_p(__CR6_LT, (vector unsigned char)__a, in vec_all_gt()
12425 (vector unsigned char)__b); in vec_all_gt()
12428 static __inline__ int __ATTRS_o_ai vec_all_gt(vector short __a, in vec_all_gt()
12429 vector short __b) { in vec_all_gt()
12433 static __inline__ int __ATTRS_o_ai vec_all_gt(vector short __a, in vec_all_gt()
12434 vector bool short __b) { in vec_all_gt()
12435 return __builtin_altivec_vcmpgtsh_p(__CR6_LT, __a, (vector short)__b); in vec_all_gt()
12438 static __inline__ int __ATTRS_o_ai vec_all_gt(vector unsigned short __a, in vec_all_gt()
12439 vector unsigned short __b) { in vec_all_gt()
12443 static __inline__ int __ATTRS_o_ai vec_all_gt(vector unsigned short __a, in vec_all_gt()
12444 vector bool short __b) { in vec_all_gt()
12446 (vector unsigned short)__b); in vec_all_gt()
12449 static __inline__ int __ATTRS_o_ai vec_all_gt(vector bool short __a, in vec_all_gt()
12450 vector short __b) { in vec_all_gt()
12451 return __builtin_altivec_vcmpgtuh_p(__CR6_LT, (vector unsigned short)__a, in vec_all_gt()
12452 (vector unsigned short)__b); in vec_all_gt()
12455 static __inline__ int __ATTRS_o_ai vec_all_gt(vector bool short __a, in vec_all_gt()
12456 vector unsigned short __b) { in vec_all_gt()
12457 return __builtin_altivec_vcmpgtuh_p(__CR6_LT, (vector unsigned short)__a, in vec_all_gt()
12461 static __inline__ int __ATTRS_o_ai vec_all_gt(vector bool short __a, in vec_all_gt()
12462 vector bool short __b) { in vec_all_gt()
12463 return __builtin_altivec_vcmpgtuh_p(__CR6_LT, (vector unsigned short)__a, in vec_all_gt()
12464 (vector unsigned short)__b); in vec_all_gt()
12467 static __inline__ int __ATTRS_o_ai vec_all_gt(vector int __a, vector int __b) { in vec_all_gt()
12471 static __inline__ int __ATTRS_o_ai vec_all_gt(vector int __a, in vec_all_gt()
12472 vector bool int __b) { in vec_all_gt()
12473 return __builtin_altivec_vcmpgtsw_p(__CR6_LT, __a, (vector int)__b); in vec_all_gt()
12476 static __inline__ int __ATTRS_o_ai vec_all_gt(vector unsigned int __a, in vec_all_gt()
12477 vector unsigned int __b) { in vec_all_gt()
12481 static __inline__ int __ATTRS_o_ai vec_all_gt(vector unsigned int __a, in vec_all_gt()
12482 vector bool int __b) { in vec_all_gt()
12483 return __builtin_altivec_vcmpgtuw_p(__CR6_LT, __a, (vector unsigned int)__b); in vec_all_gt()
12486 static __inline__ int __ATTRS_o_ai vec_all_gt(vector bool int __a, in vec_all_gt()
12487 vector int __b) { in vec_all_gt()
12488 return __builtin_altivec_vcmpgtuw_p(__CR6_LT, (vector unsigned int)__a, in vec_all_gt()
12489 (vector unsigned int)__b); in vec_all_gt()
12492 static __inline__ int __ATTRS_o_ai vec_all_gt(vector bool int __a, in vec_all_gt()
12493 vector unsigned int __b) { in vec_all_gt()
12494 return __builtin_altivec_vcmpgtuw_p(__CR6_LT, (vector unsigned int)__a, __b); in vec_all_gt()
12497 static __inline__ int __ATTRS_o_ai vec_all_gt(vector bool int __a, in vec_all_gt()
12498 vector bool int __b) { in vec_all_gt()
12499 return __builtin_altivec_vcmpgtuw_p(__CR6_LT, (vector unsigned int)__a, in vec_all_gt()
12500 (vector unsigned int)__b); in vec_all_gt()
12504 static __inline__ int __ATTRS_o_ai vec_all_gt(vector signed long long __a, in vec_all_gt()
12505 vector signed long long __b) { in vec_all_gt()
12508 static __inline__ int __ATTRS_o_ai vec_all_gt(vector signed long long __a, in vec_all_gt()
12509 vector bool long long __b) { in vec_all_gt()
12511 (vector signed long long)__b); in vec_all_gt()
12514 static __inline__ int __ATTRS_o_ai vec_all_gt(vector unsigned long long __a, in vec_all_gt()
12515 vector unsigned long long __b) { in vec_all_gt()
12519 static __inline__ int __ATTRS_o_ai vec_all_gt(vector unsigned long long __a, in vec_all_gt()
12520 vector bool long long __b) { in vec_all_gt()
12522 (vector unsigned long long)__b); in vec_all_gt()
12525 static __inline__ int __ATTRS_o_ai vec_all_gt(vector bool long long __a, in vec_all_gt()
12526 vector signed long long __b) { in vec_all_gt()
12527 return __builtin_altivec_vcmpgtud_p(__CR6_LT, (vector unsigned long long)__a, in vec_all_gt()
12528 (vector unsigned long long)__b); in vec_all_gt()
12531 static __inline__ int __ATTRS_o_ai vec_all_gt(vector bool long long __a, in vec_all_gt()
12532 vector unsigned long long __b) { in vec_all_gt()
12533 return __builtin_altivec_vcmpgtud_p(__CR6_LT, (vector unsigned long long)__a, in vec_all_gt()
12537 static __inline__ int __ATTRS_o_ai vec_all_gt(vector bool long long __a, in vec_all_gt()
12538 vector bool long long __b) { in vec_all_gt()
12539 return __builtin_altivec_vcmpgtud_p(__CR6_LT, (vector unsigned long long)__a, in vec_all_gt()
12540 (vector unsigned long long)__b); in vec_all_gt()
12544 static __inline__ int __ATTRS_o_ai vec_all_gt(vector float __a, in vec_all_gt()
12545 vector float __b) { in vec_all_gt()
12554 static __inline__ int __ATTRS_o_ai vec_all_gt(vector double __a, in vec_all_gt()
12555 vector double __b) { in vec_all_gt()
12563 vec_all_in(vector float __a, vector float __b) { in vec_all_in()
12569 static __inline__ int __ATTRS_o_ai vec_all_le(vector signed char __a, in vec_all_le()
12570 vector signed char __b) { in vec_all_le()
12574 static __inline__ int __ATTRS_o_ai vec_all_le(vector signed char __a, in vec_all_le()
12575 vector bool char __b) { in vec_all_le()
12576 return __builtin_altivec_vcmpgtsb_p(__CR6_EQ, __a, (vector signed char)__b); in vec_all_le()
12579 static __inline__ int __ATTRS_o_ai vec_all_le(vector unsigned char __a, in vec_all_le()
12580 vector unsigned char __b) { in vec_all_le()
12584 static __inline__ int __ATTRS_o_ai vec_all_le(vector unsigned char __a, in vec_all_le()
12585 vector bool char __b) { in vec_all_le()
12586 return __builtin_altivec_vcmpgtub_p(__CR6_EQ, __a, (vector unsigned char)__b); in vec_all_le()
12589 static __inline__ int __ATTRS_o_ai vec_all_le(vector bool char __a, in vec_all_le()
12590 vector signed char __b) { in vec_all_le()
12591 return __builtin_altivec_vcmpgtub_p(__CR6_EQ, (vector unsigned char)__a, in vec_all_le()
12592 (vector unsigned char)__b); in vec_all_le()
12595 static __inline__ int __ATTRS_o_ai vec_all_le(vector bool char __a, in vec_all_le()
12596 vector unsigned char __b) { in vec_all_le()
12597 return __builtin_altivec_vcmpgtub_p(__CR6_EQ, (vector unsigned char)__a, __b); in vec_all_le()
12600 static __inline__ int __ATTRS_o_ai vec_all_le(vector bool char __a, in vec_all_le()
12601 vector bool char __b) { in vec_all_le()
12602 return __builtin_altivec_vcmpgtub_p(__CR6_EQ, (vector unsigned char)__a, in vec_all_le()
12603 (vector unsigned char)__b); in vec_all_le()
12606 static __inline__ int __ATTRS_o_ai vec_all_le(vector short __a, in vec_all_le()
12607 vector short __b) { in vec_all_le()
12611 static __inline__ int __ATTRS_o_ai vec_all_le(vector short __a, in vec_all_le()
12612 vector bool short __b) { in vec_all_le()
12613 return __builtin_altivec_vcmpgtsh_p(__CR6_EQ, __a, (vector short)__b); in vec_all_le()
12616 static __inline__ int __ATTRS_o_ai vec_all_le(vector unsigned short __a, in vec_all_le()
12617 vector unsigned short __b) { in vec_all_le()
12621 static __inline__ int __ATTRS_o_ai vec_all_le(vector unsigned short __a, in vec_all_le()
12622 vector bool short __b) { in vec_all_le()
12624 (vector unsigned short)__b); in vec_all_le()
12627 static __inline__ int __ATTRS_o_ai vec_all_le(vector bool short __a, in vec_all_le()
12628 vector short __b) { in vec_all_le()
12629 return __builtin_altivec_vcmpgtuh_p(__CR6_EQ, (vector unsigned short)__a, in vec_all_le()
12630 (vector unsigned short)__b); in vec_all_le()
12633 static __inline__ int __ATTRS_o_ai vec_all_le(vector bool short __a, in vec_all_le()
12634 vector unsigned short __b) { in vec_all_le()
12635 return __builtin_altivec_vcmpgtuh_p(__CR6_EQ, (vector unsigned short)__a, in vec_all_le()
12639 static __inline__ int __ATTRS_o_ai vec_all_le(vector bool short __a, in vec_all_le()
12640 vector bool short __b) { in vec_all_le()
12641 return __builtin_altivec_vcmpgtuh_p(__CR6_EQ, (vector unsigned short)__a, in vec_all_le()
12642 (vector unsigned short)__b); in vec_all_le()
12645 static __inline__ int __ATTRS_o_ai vec_all_le(vector int __a, vector int __b) { in vec_all_le()
12649 static __inline__ int __ATTRS_o_ai vec_all_le(vector int __a, in vec_all_le()
12650 vector bool int __b) { in vec_all_le()
12651 return __builtin_altivec_vcmpgtsw_p(__CR6_EQ, __a, (vector int)__b); in vec_all_le()
12654 static __inline__ int __ATTRS_o_ai vec_all_le(vector unsigned int __a, in vec_all_le()
12655 vector unsigned int __b) { in vec_all_le()
12659 static __inline__ int __ATTRS_o_ai vec_all_le(vector unsigned int __a, in vec_all_le()
12660 vector bool int __b) { in vec_all_le()
12661 return __builtin_altivec_vcmpgtuw_p(__CR6_EQ, __a, (vector unsigned int)__b); in vec_all_le()
12664 static __inline__ int __ATTRS_o_ai vec_all_le(vector bool int __a, in vec_all_le()
12665 vector int __b) { in vec_all_le()
12666 return __builtin_altivec_vcmpgtuw_p(__CR6_EQ, (vector unsigned int)__a, in vec_all_le()
12667 (vector unsigned int)__b); in vec_all_le()
12670 static __inline__ int __ATTRS_o_ai vec_all_le(vector bool int __a, in vec_all_le()
12671 vector unsigned int __b) { in vec_all_le()
12672 return __builtin_altivec_vcmpgtuw_p(__CR6_EQ, (vector unsigned int)__a, __b); in vec_all_le()
12675 static __inline__ int __ATTRS_o_ai vec_all_le(vector bool int __a, in vec_all_le()
12676 vector bool int __b) { in vec_all_le()
12677 return __builtin_altivec_vcmpgtuw_p(__CR6_EQ, (vector unsigned int)__a, in vec_all_le()
12678 (vector unsigned int)__b); in vec_all_le()
12682 static __inline__ int __ATTRS_o_ai vec_all_le(vector signed long long __a, in vec_all_le()
12683 vector signed long long __b) { in vec_all_le()
12687 static __inline__ int __ATTRS_o_ai vec_all_le(vector unsigned long long __a, in vec_all_le()
12688 vector unsigned long long __b) { in vec_all_le()
12692 static __inline__ int __ATTRS_o_ai vec_all_le(vector signed long long __a, in vec_all_le()
12693 vector bool long long __b) { in vec_all_le()
12695 (vector signed long long)__b); in vec_all_le()
12698 static __inline__ int __ATTRS_o_ai vec_all_le(vector unsigned long long __a, in vec_all_le()
12699 vector bool long long __b) { in vec_all_le()
12701 (vector unsigned long long)__b); in vec_all_le()
12704 static __inline__ int __ATTRS_o_ai vec_all_le(vector bool long long __a, in vec_all_le()
12705 vector signed long long __b) { in vec_all_le()
12706 return __builtin_altivec_vcmpgtud_p(__CR6_EQ, (vector unsigned long long)__a, in vec_all_le()
12707 (vector unsigned long long)__b); in vec_all_le()
12710 static __inline__ int __ATTRS_o_ai vec_all_le(vector bool long long __a, in vec_all_le()
12711 vector unsigned long long __b) { in vec_all_le()
12712 return __builtin_altivec_vcmpgtud_p(__CR6_EQ, (vector unsigned long long)__a, in vec_all_le()
12716 static __inline__ int __ATTRS_o_ai vec_all_le(vector bool long long __a, in vec_all_le()
12717 vector bool long long __b) { in vec_all_le()
12718 return __builtin_altivec_vcmpgtud_p(__CR6_EQ, (vector unsigned long long)__a, in vec_all_le()
12719 (vector unsigned long long)__b); in vec_all_le()
12723 static __inline__ int __ATTRS_o_ai vec_all_le(vector float __a, in vec_all_le()
12724 vector float __b) { in vec_all_le()
12733 static __inline__ int __ATTRS_o_ai vec_all_le(vector double __a, in vec_all_le()
12734 vector double __b) { in vec_all_le()
12741 static __inline__ int __ATTRS_o_ai vec_all_lt(vector signed char __a, in vec_all_lt()
12742 vector signed char __b) { in vec_all_lt()
12746 static __inline__ int __ATTRS_o_ai vec_all_lt(vector signed char __a, in vec_all_lt()
12747 vector bool char __b) { in vec_all_lt()
12748 return __builtin_altivec_vcmpgtsb_p(__CR6_LT, (vector signed char)__b, __a); in vec_all_lt()
12751 static __inline__ int __ATTRS_o_ai vec_all_lt(vector unsigned char __a, in vec_all_lt()
12752 vector unsigned char __b) { in vec_all_lt()
12756 static __inline__ int __ATTRS_o_ai vec_all_lt(vector unsigned char __a, in vec_all_lt()
12757 vector bool char __b) { in vec_all_lt()
12758 return __builtin_altivec_vcmpgtub_p(__CR6_LT, (vector unsigned char)__b, __a); in vec_all_lt()
12761 static __inline__ int __ATTRS_o_ai vec_all_lt(vector bool char __a, in vec_all_lt()
12762 vector signed char __b) { in vec_all_lt()
12763 return __builtin_altivec_vcmpgtub_p(__CR6_LT, (vector unsigned char)__b, in vec_all_lt()
12764 (vector unsigned char)__a); in vec_all_lt()
12767 static __inline__ int __ATTRS_o_ai vec_all_lt(vector bool char __a, in vec_all_lt()
12768 vector unsigned char __b) { in vec_all_lt()
12769 return __builtin_altivec_vcmpgtub_p(__CR6_LT, __b, (vector unsigned char)__a); in vec_all_lt()
12772 static __inline__ int __ATTRS_o_ai vec_all_lt(vector bool char __a, in vec_all_lt()
12773 vector bool char __b) { in vec_all_lt()
12774 return __builtin_altivec_vcmpgtub_p(__CR6_LT, (vector unsigned char)__b, in vec_all_lt()
12775 (vector unsigned char)__a); in vec_all_lt()
12778 static __inline__ int __ATTRS_o_ai vec_all_lt(vector short __a, in vec_all_lt()
12779 vector short __b) { in vec_all_lt()
12783 static __inline__ int __ATTRS_o_ai vec_all_lt(vector short __a, in vec_all_lt()
12784 vector bool short __b) { in vec_all_lt()
12785 return __builtin_altivec_vcmpgtsh_p(__CR6_LT, (vector short)__b, __a); in vec_all_lt()
12788 static __inline__ int __ATTRS_o_ai vec_all_lt(vector unsigned short __a, in vec_all_lt()
12789 vector unsigned short __b) { in vec_all_lt()
12793 static __inline__ int __ATTRS_o_ai vec_all_lt(vector unsigned short __a, in vec_all_lt()
12794 vector bool short __b) { in vec_all_lt()
12795 return __builtin_altivec_vcmpgtuh_p(__CR6_LT, (vector unsigned short)__b, in vec_all_lt()
12799 static __inline__ int __ATTRS_o_ai vec_all_lt(vector bool short __a, in vec_all_lt()
12800 vector short __b) { in vec_all_lt()
12801 return __builtin_altivec_vcmpgtuh_p(__CR6_LT, (vector unsigned short)__b, in vec_all_lt()
12802 (vector unsigned short)__a); in vec_all_lt()
12805 static __inline__ int __ATTRS_o_ai vec_all_lt(vector bool short __a, in vec_all_lt()
12806 vector unsigned short __b) { in vec_all_lt()
12808 (vector unsigned short)__a); in vec_all_lt()
12811 static __inline__ int __ATTRS_o_ai vec_all_lt(vector bool short __a, in vec_all_lt()
12812 vector bool short __b) { in vec_all_lt()
12813 return __builtin_altivec_vcmpgtuh_p(__CR6_LT, (vector unsigned short)__b, in vec_all_lt()
12814 (vector unsigned short)__a); in vec_all_lt()
12817 static __inline__ int __ATTRS_o_ai vec_all_lt(vector int __a, vector int __b) { in vec_all_lt()
12821 static __inline__ int __ATTRS_o_ai vec_all_lt(vector int __a, in vec_all_lt()
12822 vector bool int __b) { in vec_all_lt()
12823 return __builtin_altivec_vcmpgtsw_p(__CR6_LT, (vector int)__b, __a); in vec_all_lt()
12826 static __inline__ int __ATTRS_o_ai vec_all_lt(vector unsigned int __a, in vec_all_lt()
12827 vector unsigned int __b) { in vec_all_lt()
12831 static __inline__ int __ATTRS_o_ai vec_all_lt(vector unsigned int __a, in vec_all_lt()
12832 vector bool int __b) { in vec_all_lt()
12833 return __builtin_altivec_vcmpgtuw_p(__CR6_LT, (vector unsigned int)__b, __a); in vec_all_lt()
12836 static __inline__ int __ATTRS_o_ai vec_all_lt(vector bool int __a, in vec_all_lt()
12837 vector int __b) { in vec_all_lt()
12838 return __builtin_altivec_vcmpgtuw_p(__CR6_LT, (vector unsigned int)__b, in vec_all_lt()
12839 (vector unsigned int)__a); in vec_all_lt()
12842 static __inline__ int __ATTRS_o_ai vec_all_lt(vector bool int __a, in vec_all_lt()
12843 vector unsigned int __b) { in vec_all_lt()
12844 return __builtin_altivec_vcmpgtuw_p(__CR6_LT, __b, (vector unsigned int)__a); in vec_all_lt()
12847 static __inline__ int __ATTRS_o_ai vec_all_lt(vector bool int __a, in vec_all_lt()
12848 vector bool int __b) { in vec_all_lt()
12849 return __builtin_altivec_vcmpgtuw_p(__CR6_LT, (vector unsigned int)__b, in vec_all_lt()
12850 (vector unsigned int)__a); in vec_all_lt()
12854 static __inline__ int __ATTRS_o_ai vec_all_lt(vector signed long long __a, in vec_all_lt()
12855 vector signed long long __b) { in vec_all_lt()
12859 static __inline__ int __ATTRS_o_ai vec_all_lt(vector unsigned long long __a, in vec_all_lt()
12860 vector unsigned long long __b) { in vec_all_lt()
12864 static __inline__ int __ATTRS_o_ai vec_all_lt(vector signed long long __a, in vec_all_lt()
12865 vector bool long long __b) { in vec_all_lt()
12866 return __builtin_altivec_vcmpgtsd_p(__CR6_LT, (vector signed long long)__b, in vec_all_lt()
12870 static __inline__ int __ATTRS_o_ai vec_all_lt(vector unsigned long long __a, in vec_all_lt()
12871 vector bool long long __b) { in vec_all_lt()
12872 return __builtin_altivec_vcmpgtud_p(__CR6_LT, (vector unsigned long long)__b, in vec_all_lt()
12876 static __inline__ int __ATTRS_o_ai vec_all_lt(vector bool long long __a, in vec_all_lt()
12877 vector signed long long __b) { in vec_all_lt()
12878 return __builtin_altivec_vcmpgtud_p(__CR6_LT, (vector unsigned long long)__b, in vec_all_lt()
12879 (vector unsigned long long)__a); in vec_all_lt()
12882 static __inline__ int __ATTRS_o_ai vec_all_lt(vector bool long long __a, in vec_all_lt()
12883 vector unsigned long long __b) { in vec_all_lt()
12885 (vector unsigned long long)__a); in vec_all_lt()
12888 static __inline__ int __ATTRS_o_ai vec_all_lt(vector bool long long __a, in vec_all_lt()
12889 vector bool long long __b) { in vec_all_lt()
12890 return __builtin_altivec_vcmpgtud_p(__CR6_LT, (vector unsigned long long)__b, in vec_all_lt()
12891 (vector unsigned long long)__a); in vec_all_lt()
12895 static __inline__ int __ATTRS_o_ai vec_all_lt(vector float __a, in vec_all_lt()
12896 vector float __b) { in vec_all_lt()
12905 static __inline__ int __ATTRS_o_ai vec_all_lt(vector double __a, in vec_all_lt()
12906 vector double __b) { in vec_all_lt()
12913 static __inline__ int __ATTRS_o_ai vec_all_nan(vector float __a) { in vec_all_nan()
12922 static __inline__ int __ATTRS_o_ai vec_all_nan(vector double __a) { in vec_all_nan()
12929 static __inline__ int __ATTRS_o_ai vec_all_ne(vector signed char __a, in vec_all_ne()
12930 vector signed char __b) { in vec_all_ne()
12931 return __builtin_altivec_vcmpequb_p(__CR6_EQ, (vector char)__a, in vec_all_ne()
12932 (vector char)__b); in vec_all_ne()
12935 static __inline__ int __ATTRS_o_ai vec_all_ne(vector signed char __a, in vec_all_ne()
12936 vector bool char __b) { in vec_all_ne()
12937 return __builtin_altivec_vcmpequb_p(__CR6_EQ, (vector char)__a, in vec_all_ne()
12938 (vector char)__b); in vec_all_ne()
12941 static __inline__ int __ATTRS_o_ai vec_all_ne(vector unsigned char __a, in vec_all_ne()
12942 vector unsigned char __b) { in vec_all_ne()
12943 return __builtin_altivec_vcmpequb_p(__CR6_EQ, (vector char)__a, in vec_all_ne()
12944 (vector char)__b); in vec_all_ne()
12947 static __inline__ int __ATTRS_o_ai vec_all_ne(vector unsigned char __a, in vec_all_ne()
12948 vector bool char __b) { in vec_all_ne()
12949 return __builtin_altivec_vcmpequb_p(__CR6_EQ, (vector char)__a, in vec_all_ne()
12950 (vector char)__b); in vec_all_ne()
12953 static __inline__ int __ATTRS_o_ai vec_all_ne(vector bool char __a, in vec_all_ne()
12954 vector signed char __b) { in vec_all_ne()
12955 return __builtin_altivec_vcmpequb_p(__CR6_EQ, (vector char)__a, in vec_all_ne()
12956 (vector char)__b); in vec_all_ne()
12959 static __inline__ int __ATTRS_o_ai vec_all_ne(vector bool char __a, in vec_all_ne()
12960 vector unsigned char __b) { in vec_all_ne()
12961 return __builtin_altivec_vcmpequb_p(__CR6_EQ, (vector char)__a, in vec_all_ne()
12962 (vector char)__b); in vec_all_ne()
12965 static __inline__ int __ATTRS_o_ai vec_all_ne(vector bool char __a, in vec_all_ne()
12966 vector bool char __b) { in vec_all_ne()
12967 return __builtin_altivec_vcmpequb_p(__CR6_EQ, (vector char)__a, in vec_all_ne()
12968 (vector char)__b); in vec_all_ne()
12971 static __inline__ int __ATTRS_o_ai vec_all_ne(vector short __a, in vec_all_ne()
12972 vector short __b) { in vec_all_ne()
12976 static __inline__ int __ATTRS_o_ai vec_all_ne(vector short __a, in vec_all_ne()
12977 vector bool short __b) { in vec_all_ne()
12978 return __builtin_altivec_vcmpequh_p(__CR6_EQ, __a, (vector short)__b); in vec_all_ne()
12981 static __inline__ int __ATTRS_o_ai vec_all_ne(vector unsigned short __a, in vec_all_ne()
12982 vector unsigned short __b) { in vec_all_ne()
12983 return __builtin_altivec_vcmpequh_p(__CR6_EQ, (vector short)__a, in vec_all_ne()
12984 (vector short)__b); in vec_all_ne()
12987 static __inline__ int __ATTRS_o_ai vec_all_ne(vector unsigned short __a, in vec_all_ne()
12988 vector bool short __b) { in vec_all_ne()
12989 return __builtin_altivec_vcmpequh_p(__CR6_EQ, (vector short)__a, in vec_all_ne()
12990 (vector short)__b); in vec_all_ne()
12993 static __inline__ int __ATTRS_o_ai vec_all_ne(vector bool short __a, in vec_all_ne()
12994 vector short __b) { in vec_all_ne()
12995 return __builtin_altivec_vcmpequh_p(__CR6_EQ, (vector short)__a, in vec_all_ne()
12996 (vector short)__b); in vec_all_ne()
12999 static __inline__ int __ATTRS_o_ai vec_all_ne(vector bool short __a, in vec_all_ne()
13000 vector unsigned short __b) { in vec_all_ne()
13001 return __builtin_altivec_vcmpequh_p(__CR6_EQ, (vector short)__a, in vec_all_ne()
13002 (vector short)__b); in vec_all_ne()
13005 static __inline__ int __ATTRS_o_ai vec_all_ne(vector bool short __a, in vec_all_ne()
13006 vector bool short __b) { in vec_all_ne()
13007 return __builtin_altivec_vcmpequh_p(__CR6_EQ, (vector short)__a, in vec_all_ne()
13008 (vector short)__b); in vec_all_ne()
13011 static __inline__ int __ATTRS_o_ai vec_all_ne(vector pixel __a, in vec_all_ne()
13012 vector pixel __b) { in vec_all_ne()
13013 return __builtin_altivec_vcmpequh_p(__CR6_EQ, (vector short)__a, in vec_all_ne()
13014 (vector short)__b); in vec_all_ne()
13017 static __inline__ int __ATTRS_o_ai vec_all_ne(vector int __a, vector int __b) { in vec_all_ne()
13021 static __inline__ int __ATTRS_o_ai vec_all_ne(vector int __a, in vec_all_ne()
13022 vector bool int __b) { in vec_all_ne()
13023 return __builtin_altivec_vcmpequw_p(__CR6_EQ, __a, (vector int)__b); in vec_all_ne()
13026 static __inline__ int __ATTRS_o_ai vec_all_ne(vector unsigned int __a, in vec_all_ne()
13027 vector unsigned int __b) { in vec_all_ne()
13028 return __builtin_altivec_vcmpequw_p(__CR6_EQ, (vector int)__a, in vec_all_ne()
13029 (vector int)__b); in vec_all_ne()
13032 static __inline__ int __ATTRS_o_ai vec_all_ne(vector unsigned int __a, in vec_all_ne()
13033 vector bool int __b) { in vec_all_ne()
13034 return __builtin_altivec_vcmpequw_p(__CR6_EQ, (vector int)__a, in vec_all_ne()
13035 (vector int)__b); in vec_all_ne()
13038 static __inline__ int __ATTRS_o_ai vec_all_ne(vector bool int __a, in vec_all_ne()
13039 vector int __b) { in vec_all_ne()
13040 return __builtin_altivec_vcmpequw_p(__CR6_EQ, (vector int)__a, in vec_all_ne()
13041 (vector int)__b); in vec_all_ne()
13044 static __inline__ int __ATTRS_o_ai vec_all_ne(vector bool int __a, in vec_all_ne()
13045 vector unsigned int __b) { in vec_all_ne()
13046 return __builtin_altivec_vcmpequw_p(__CR6_EQ, (vector int)__a, in vec_all_ne()
13047 (vector int)__b); in vec_all_ne()
13050 static __inline__ int __ATTRS_o_ai vec_all_ne(vector bool int __a, in vec_all_ne()
13051 vector bool int __b) { in vec_all_ne()
13052 return __builtin_altivec_vcmpequw_p(__CR6_EQ, (vector int)__a, in vec_all_ne()
13053 (vector int)__b); in vec_all_ne()
13057 static __inline__ int __ATTRS_o_ai vec_all_ne(vector signed long long __a, in vec_all_ne()
13058 vector signed long long __b) { in vec_all_ne()
13062 static __inline__ int __ATTRS_o_ai vec_all_ne(vector unsigned long long __a, in vec_all_ne()
13063 vector unsigned long long __b) { in vec_all_ne()
13064 return __builtin_altivec_vcmpequd_p(__CR6_EQ, (vector long long)__a, in vec_all_ne()
13065 (vector long long)__b); in vec_all_ne()
13068 static __inline__ int __ATTRS_o_ai vec_all_ne(vector signed long long __a, in vec_all_ne()
13069 vector bool long long __b) { in vec_all_ne()
13071 (vector signed long long)__b); in vec_all_ne()
13074 static __inline__ int __ATTRS_o_ai vec_all_ne(vector unsigned long long __a, in vec_all_ne()
13075 vector bool long long __b) { in vec_all_ne()
13076 return __builtin_altivec_vcmpequd_p(__CR6_EQ, (vector signed long long)__a, in vec_all_ne()
13077 (vector signed long long)__b); in vec_all_ne()
13080 static __inline__ int __ATTRS_o_ai vec_all_ne(vector bool long long __a, in vec_all_ne()
13081 vector signed long long __b) { in vec_all_ne()
13082 return __builtin_altivec_vcmpequd_p(__CR6_EQ, (vector signed long long)__a, in vec_all_ne()
13083 (vector signed long long)__b); in vec_all_ne()
13086 static __inline__ int __ATTRS_o_ai vec_all_ne(vector bool long long __a, in vec_all_ne()
13087 vector unsigned long long __b) { in vec_all_ne()
13088 return __builtin_altivec_vcmpequd_p(__CR6_EQ, (vector signed long long)__a, in vec_all_ne()
13089 (vector signed long long)__b); in vec_all_ne()
13092 static __inline__ int __ATTRS_o_ai vec_all_ne(vector bool long long __a, in vec_all_ne()
13093 vector bool long long __b) { in vec_all_ne()
13094 return __builtin_altivec_vcmpequd_p(__CR6_EQ, (vector signed long long)__a, in vec_all_ne()
13095 (vector signed long long)__b); in vec_all_ne()
13099 static __inline__ int __ATTRS_o_ai vec_all_ne(vector float __a, in vec_all_ne()
13100 vector float __b) { in vec_all_ne()
13109 static __inline__ int __ATTRS_o_ai vec_all_ne(vector double __a, in vec_all_ne()
13110 vector double __b) { in vec_all_ne()
13117 static __inline__ int __ATTRS_o_ai vec_all_nge(vector float __a, in vec_all_nge()
13118 vector float __b) { in vec_all_nge()
13127 static __inline__ int __ATTRS_o_ai vec_all_nge(vector double __a, in vec_all_nge()
13128 vector double __b) { in vec_all_nge()
13135 static __inline__ int __ATTRS_o_ai vec_all_ngt(vector float __a, in vec_all_ngt()
13136 vector float __b) { in vec_all_ngt()
13145 static __inline__ int __ATTRS_o_ai vec_all_ngt(vector double __a, in vec_all_ngt()
13146 vector double __b) { in vec_all_ngt()
13154 vec_all_nle(vector float __a, vector float __b) { in vec_all_nle()
13161 vec_all_nlt(vector float __a, vector float __b) { in vec_all_nlt()
13168 vec_all_numeric(vector float __a) { in vec_all_numeric()
13174 static __inline__ int __ATTRS_o_ai vec_any_eq(vector signed char __a, in vec_any_eq()
13175 vector signed char __b) { in vec_any_eq()
13176 return __builtin_altivec_vcmpequb_p(__CR6_EQ_REV, (vector char)__a, in vec_any_eq()
13177 (vector char)__b); in vec_any_eq()
13180 static __inline__ int __ATTRS_o_ai vec_any_eq(vector signed char __a, in vec_any_eq()
13181 vector bool char __b) { in vec_any_eq()
13182 return __builtin_altivec_vcmpequb_p(__CR6_EQ_REV, (vector char)__a, in vec_any_eq()
13183 (vector char)__b); in vec_any_eq()
13186 static __inline__ int __ATTRS_o_ai vec_any_eq(vector unsigned char __a, in vec_any_eq()
13187 vector unsigned char __b) { in vec_any_eq()
13188 return __builtin_altivec_vcmpequb_p(__CR6_EQ_REV, (vector char)__a, in vec_any_eq()
13189 (vector char)__b); in vec_any_eq()
13192 static __inline__ int __ATTRS_o_ai vec_any_eq(vector unsigned char __a, in vec_any_eq()
13193 vector bool char __b) { in vec_any_eq()
13194 return __builtin_altivec_vcmpequb_p(__CR6_EQ_REV, (vector char)__a, in vec_any_eq()
13195 (vector char)__b); in vec_any_eq()
13198 static __inline__ int __ATTRS_o_ai vec_any_eq(vector bool char __a, in vec_any_eq()
13199 vector signed char __b) { in vec_any_eq()
13200 return __builtin_altivec_vcmpequb_p(__CR6_EQ_REV, (vector char)__a, in vec_any_eq()
13201 (vector char)__b); in vec_any_eq()
13204 static __inline__ int __ATTRS_o_ai vec_any_eq(vector bool char __a, in vec_any_eq()
13205 vector unsigned char __b) { in vec_any_eq()
13206 return __builtin_altivec_vcmpequb_p(__CR6_EQ_REV, (vector char)__a, in vec_any_eq()
13207 (vector char)__b); in vec_any_eq()
13210 static __inline__ int __ATTRS_o_ai vec_any_eq(vector bool char __a, in vec_any_eq()
13211 vector bool char __b) { in vec_any_eq()
13212 return __builtin_altivec_vcmpequb_p(__CR6_EQ_REV, (vector char)__a, in vec_any_eq()
13213 (vector char)__b); in vec_any_eq()
13216 static __inline__ int __ATTRS_o_ai vec_any_eq(vector short __a, in vec_any_eq()
13217 vector short __b) { in vec_any_eq()
13221 static __inline__ int __ATTRS_o_ai vec_any_eq(vector short __a, in vec_any_eq()
13222 vector bool short __b) { in vec_any_eq()
13223 return __builtin_altivec_vcmpequh_p(__CR6_EQ_REV, __a, (vector short)__b); in vec_any_eq()
13226 static __inline__ int __ATTRS_o_ai vec_any_eq(vector unsigned short __a, in vec_any_eq()
13227 vector unsigned short __b) { in vec_any_eq()
13228 return __builtin_altivec_vcmpequh_p(__CR6_EQ_REV, (vector short)__a, in vec_any_eq()
13229 (vector short)__b); in vec_any_eq()
13232 static __inline__ int __ATTRS_o_ai vec_any_eq(vector unsigned short __a, in vec_any_eq()
13233 vector bool short __b) { in vec_any_eq()
13234 return __builtin_altivec_vcmpequh_p(__CR6_EQ_REV, (vector short)__a, in vec_any_eq()
13235 (vector short)__b); in vec_any_eq()
13238 static __inline__ int __ATTRS_o_ai vec_any_eq(vector bool short __a, in vec_any_eq()
13239 vector short __b) { in vec_any_eq()
13240 return __builtin_altivec_vcmpequh_p(__CR6_EQ_REV, (vector short)__a, in vec_any_eq()
13241 (vector short)__b); in vec_any_eq()
13244 static __inline__ int __ATTRS_o_ai vec_any_eq(vector bool short __a, in vec_any_eq()
13245 vector unsigned short __b) { in vec_any_eq()
13246 return __builtin_altivec_vcmpequh_p(__CR6_EQ_REV, (vector short)__a, in vec_any_eq()
13247 (vector short)__b); in vec_any_eq()
13250 static __inline__ int __ATTRS_o_ai vec_any_eq(vector bool short __a, in vec_any_eq()
13251 vector bool short __b) { in vec_any_eq()
13252 return __builtin_altivec_vcmpequh_p(__CR6_EQ_REV, (vector short)__a, in vec_any_eq()
13253 (vector short)__b); in vec_any_eq()
13256 static __inline__ int __ATTRS_o_ai vec_any_eq(vector pixel __a, in vec_any_eq()
13257 vector pixel __b) { in vec_any_eq()
13258 return __builtin_altivec_vcmpequh_p(__CR6_EQ_REV, (vector short)__a, in vec_any_eq()
13259 (vector short)__b); in vec_any_eq()
13262 static __inline__ int __ATTRS_o_ai vec_any_eq(vector int __a, vector int __b) { in vec_any_eq()
13266 static __inline__ int __ATTRS_o_ai vec_any_eq(vector int __a, in vec_any_eq()
13267 vector bool int __b) { in vec_any_eq()
13268 return __builtin_altivec_vcmpequw_p(__CR6_EQ_REV, __a, (vector int)__b); in vec_any_eq()
13271 static __inline__ int __ATTRS_o_ai vec_any_eq(vector unsigned int __a, in vec_any_eq()
13272 vector unsigned int __b) { in vec_any_eq()
13273 return __builtin_altivec_vcmpequw_p(__CR6_EQ_REV, (vector int)__a, in vec_any_eq()
13274 (vector int)__b); in vec_any_eq()
13277 static __inline__ int __ATTRS_o_ai vec_any_eq(vector unsigned int __a, in vec_any_eq()
13278 vector bool int __b) { in vec_any_eq()
13279 return __builtin_altivec_vcmpequw_p(__CR6_EQ_REV, (vector int)__a, in vec_any_eq()
13280 (vector int)__b); in vec_any_eq()
13283 static __inline__ int __ATTRS_o_ai vec_any_eq(vector bool int __a, in vec_any_eq()
13284 vector int __b) { in vec_any_eq()
13285 return __builtin_altivec_vcmpequw_p(__CR6_EQ_REV, (vector int)__a, in vec_any_eq()
13286 (vector int)__b); in vec_any_eq()
13289 static __inline__ int __ATTRS_o_ai vec_any_eq(vector bool int __a, in vec_any_eq()
13290 vector unsigned int __b) { in vec_any_eq()
13291 return __builtin_altivec_vcmpequw_p(__CR6_EQ_REV, (vector int)__a, in vec_any_eq()
13292 (vector int)__b); in vec_any_eq()
13295 static __inline__ int __ATTRS_o_ai vec_any_eq(vector bool int __a, in vec_any_eq()
13296 vector bool int __b) { in vec_any_eq()
13297 return __builtin_altivec_vcmpequw_p(__CR6_EQ_REV, (vector int)__a, in vec_any_eq()
13298 (vector int)__b); in vec_any_eq()
13302 static __inline__ int __ATTRS_o_ai vec_any_eq(vector signed long long __a, in vec_any_eq()
13303 vector signed long long __b) { in vec_any_eq()
13307 static __inline__ int __ATTRS_o_ai vec_any_eq(vector unsigned long long __a, in vec_any_eq()
13308 vector unsigned long long __b) { in vec_any_eq()
13309 return __builtin_altivec_vcmpequd_p(__CR6_EQ_REV, (vector long long)__a, in vec_any_eq()
13310 (vector long long)__b); in vec_any_eq()
13313 static __inline__ int __ATTRS_o_ai vec_any_eq(vector signed long long __a, in vec_any_eq()
13314 vector bool long long __b) { in vec_any_eq()
13316 (vector signed long long)__b); in vec_any_eq()
13319 static __inline__ int __ATTRS_o_ai vec_any_eq(vector unsigned long long __a, in vec_any_eq()
13320 vector bool long long __b) { in vec_any_eq()
13322 __CR6_EQ_REV, (vector signed long long)__a, (vector signed long long)__b); in vec_any_eq()
13325 static __inline__ int __ATTRS_o_ai vec_any_eq(vector bool long long __a, in vec_any_eq()
13326 vector signed long long __b) { in vec_any_eq()
13328 __CR6_EQ_REV, (vector signed long long)__a, (vector signed long long)__b); in vec_any_eq()
13331 static __inline__ int __ATTRS_o_ai vec_any_eq(vector bool long long __a, in vec_any_eq()
13332 vector unsigned long long __b) { in vec_any_eq()
13334 __CR6_EQ_REV, (vector signed long long)__a, (vector signed long long)__b); in vec_any_eq()
13337 static __inline__ int __ATTRS_o_ai vec_any_eq(vector bool long long __a, in vec_any_eq()
13338 vector bool long long __b) { in vec_any_eq()
13340 __CR6_EQ_REV, (vector signed long long)__a, (vector signed long long)__b); in vec_any_eq()
13344 static __inline__ int __ATTRS_o_ai vec_any_eq(vector float __a, in vec_any_eq()
13345 vector float __b) { in vec_any_eq()
13354 static __inline__ int __ATTRS_o_ai vec_any_eq(vector double __a, in vec_any_eq()
13355 vector double __b) { in vec_any_eq()
13362 static __inline__ int __ATTRS_o_ai vec_any_ge(vector signed char __a, in vec_any_ge()
13363 vector signed char __b) { in vec_any_ge()
13367 static __inline__ int __ATTRS_o_ai vec_any_ge(vector signed char __a, in vec_any_ge()
13368 vector bool char __b) { in vec_any_ge()
13369 return __builtin_altivec_vcmpgtsb_p(__CR6_LT_REV, (vector signed char)__b, in vec_any_ge()
13373 static __inline__ int __ATTRS_o_ai vec_any_ge(vector unsigned char __a, in vec_any_ge()
13374 vector unsigned char __b) { in vec_any_ge()
13378 static __inline__ int __ATTRS_o_ai vec_any_ge(vector unsigned char __a, in vec_any_ge()
13379 vector bool char __b) { in vec_any_ge()
13380 return __builtin_altivec_vcmpgtub_p(__CR6_LT_REV, (vector unsigned char)__b, in vec_any_ge()
13384 static __inline__ int __ATTRS_o_ai vec_any_ge(vector bool char __a, in vec_any_ge()
13385 vector signed char __b) { in vec_any_ge()
13386 return __builtin_altivec_vcmpgtub_p(__CR6_LT_REV, (vector unsigned char)__b, in vec_any_ge()
13387 (vector unsigned char)__a); in vec_any_ge()
13390 static __inline__ int __ATTRS_o_ai vec_any_ge(vector bool char __a, in vec_any_ge()
13391 vector unsigned char __b) { in vec_any_ge()
13393 (vector unsigned char)__a); in vec_any_ge()
13396 static __inline__ int __ATTRS_o_ai vec_any_ge(vector bool char __a, in vec_any_ge()
13397 vector bool char __b) { in vec_any_ge()
13398 return __builtin_altivec_vcmpgtub_p(__CR6_LT_REV, (vector unsigned char)__b, in vec_any_ge()
13399 (vector unsigned char)__a); in vec_any_ge()
13402 static __inline__ int __ATTRS_o_ai vec_any_ge(vector short __a, in vec_any_ge()
13403 vector short __b) { in vec_any_ge()
13407 static __inline__ int __ATTRS_o_ai vec_any_ge(vector short __a, in vec_any_ge()
13408 vector bool short __b) { in vec_any_ge()
13409 return __builtin_altivec_vcmpgtsh_p(__CR6_LT_REV, (vector short)__b, __a); in vec_any_ge()
13412 static __inline__ int __ATTRS_o_ai vec_any_ge(vector unsigned short __a, in vec_any_ge()
13413 vector unsigned short __b) { in vec_any_ge()
13417 static __inline__ int __ATTRS_o_ai vec_any_ge(vector unsigned short __a, in vec_any_ge()
13418 vector bool short __b) { in vec_any_ge()
13419 return __builtin_altivec_vcmpgtuh_p(__CR6_LT_REV, (vector unsigned short)__b, in vec_any_ge()
13423 static __inline__ int __ATTRS_o_ai vec_any_ge(vector bool short __a, in vec_any_ge()
13424 vector short __b) { in vec_any_ge()
13425 return __builtin_altivec_vcmpgtuh_p(__CR6_LT_REV, (vector unsigned short)__b, in vec_any_ge()
13426 (vector unsigned short)__a); in vec_any_ge()
13429 static __inline__ int __ATTRS_o_ai vec_any_ge(vector bool short __a, in vec_any_ge()
13430 vector unsigned short __b) { in vec_any_ge()
13432 (vector unsigned short)__a); in vec_any_ge()
13435 static __inline__ int __ATTRS_o_ai vec_any_ge(vector bool short __a, in vec_any_ge()
13436 vector bool short __b) { in vec_any_ge()
13437 return __builtin_altivec_vcmpgtuh_p(__CR6_LT_REV, (vector unsigned short)__b, in vec_any_ge()
13438 (vector unsigned short)__a); in vec_any_ge()
13441 static __inline__ int __ATTRS_o_ai vec_any_ge(vector int __a, vector int __b) { in vec_any_ge()
13445 static __inline__ int __ATTRS_o_ai vec_any_ge(vector int __a, in vec_any_ge()
13446 vector bool int __b) { in vec_any_ge()
13447 return __builtin_altivec_vcmpgtsw_p(__CR6_LT_REV, (vector int)__b, __a); in vec_any_ge()
13450 static __inline__ int __ATTRS_o_ai vec_any_ge(vector unsigned int __a, in vec_any_ge()
13451 vector unsigned int __b) { in vec_any_ge()
13455 static __inline__ int __ATTRS_o_ai vec_any_ge(vector unsigned int __a, in vec_any_ge()
13456 vector bool int __b) { in vec_any_ge()
13457 return __builtin_altivec_vcmpgtuw_p(__CR6_LT_REV, (vector unsigned int)__b, in vec_any_ge()
13461 static __inline__ int __ATTRS_o_ai vec_any_ge(vector bool int __a, in vec_any_ge()
13462 vector int __b) { in vec_any_ge()
13463 return __builtin_altivec_vcmpgtuw_p(__CR6_LT_REV, (vector unsigned int)__b, in vec_any_ge()
13464 (vector unsigned int)__a); in vec_any_ge()
13467 static __inline__ int __ATTRS_o_ai vec_any_ge(vector bool int __a, in vec_any_ge()
13468 vector unsigned int __b) { in vec_any_ge()
13470 (vector unsigned int)__a); in vec_any_ge()
13473 static __inline__ int __ATTRS_o_ai vec_any_ge(vector bool int __a, in vec_any_ge()
13474 vector bool int __b) { in vec_any_ge()
13475 return __builtin_altivec_vcmpgtuw_p(__CR6_LT_REV, (vector unsigned int)__b, in vec_any_ge()
13476 (vector unsigned int)__a); in vec_any_ge()
13480 static __inline__ int __ATTRS_o_ai vec_any_ge(vector signed long long __a, in vec_any_ge()
13481 vector signed long long __b) { in vec_any_ge()
13485 static __inline__ int __ATTRS_o_ai vec_any_ge(vector unsigned long long __a, in vec_any_ge()
13486 vector unsigned long long __b) { in vec_any_ge()
13490 static __inline__ int __ATTRS_o_ai vec_any_ge(vector signed long long __a, in vec_any_ge()
13491 vector bool long long __b) { in vec_any_ge()
13493 (vector signed long long)__b, __a); in vec_any_ge()
13496 static __inline__ int __ATTRS_o_ai vec_any_ge(vector unsigned long long __a, in vec_any_ge()
13497 vector bool long long __b) { in vec_any_ge()
13499 (vector unsigned long long)__b, __a); in vec_any_ge()
13502 static __inline__ int __ATTRS_o_ai vec_any_ge(vector bool long long __a, in vec_any_ge()
13503 vector signed long long __b) { in vec_any_ge()
13505 (vector unsigned long long)__b, in vec_any_ge()
13506 (vector unsigned long long)__a); in vec_any_ge()
13509 static __inline__ int __ATTRS_o_ai vec_any_ge(vector bool long long __a, in vec_any_ge()
13510 vector unsigned long long __b) { in vec_any_ge()
13512 (vector unsigned long long)__a); in vec_any_ge()
13515 static __inline__ int __ATTRS_o_ai vec_any_ge(vector bool long long __a, in vec_any_ge()
13516 vector bool long long __b) { in vec_any_ge()
13518 (vector unsigned long long)__b, in vec_any_ge()
13519 (vector unsigned long long)__a); in vec_any_ge()
13523 static __inline__ int __ATTRS_o_ai vec_any_ge(vector float __a, in vec_any_ge()
13524 vector float __b) { in vec_any_ge()
13533 static __inline__ int __ATTRS_o_ai vec_any_ge(vector double __a, in vec_any_ge()
13534 vector double __b) { in vec_any_ge()
13541 static __inline__ int __ATTRS_o_ai vec_any_gt(vector signed char __a, in vec_any_gt()
13542 vector signed char __b) { in vec_any_gt()
13546 static __inline__ int __ATTRS_o_ai vec_any_gt(vector signed char __a, in vec_any_gt()
13547 vector bool char __b) { in vec_any_gt()
13549 (vector signed char)__b); in vec_any_gt()
13552 static __inline__ int __ATTRS_o_ai vec_any_gt(vector unsigned char __a, in vec_any_gt()
13553 vector unsigned char __b) { in vec_any_gt()
13557 static __inline__ int __ATTRS_o_ai vec_any_gt(vector unsigned char __a, in vec_any_gt()
13558 vector bool char __b) { in vec_any_gt()
13560 (vector unsigned char)__b); in vec_any_gt()
13563 static __inline__ int __ATTRS_o_ai vec_any_gt(vector bool char __a, in vec_any_gt()
13564 vector signed char __b) { in vec_any_gt()
13565 return __builtin_altivec_vcmpgtub_p(__CR6_EQ_REV, (vector unsigned char)__a, in vec_any_gt()
13566 (vector unsigned char)__b); in vec_any_gt()
13569 static __inline__ int __ATTRS_o_ai vec_any_gt(vector bool char __a, in vec_any_gt()
13570 vector unsigned char __b) { in vec_any_gt()
13571 return __builtin_altivec_vcmpgtub_p(__CR6_EQ_REV, (vector unsigned char)__a, in vec_any_gt()
13575 static __inline__ int __ATTRS_o_ai vec_any_gt(vector bool char __a, in vec_any_gt()
13576 vector bool char __b) { in vec_any_gt()
13577 return __builtin_altivec_vcmpgtub_p(__CR6_EQ_REV, (vector unsigned char)__a, in vec_any_gt()
13578 (vector unsigned char)__b); in vec_any_gt()
13581 static __inline__ int __ATTRS_o_ai vec_any_gt(vector short __a, in vec_any_gt()
13582 vector short __b) { in vec_any_gt()
13586 static __inline__ int __ATTRS_o_ai vec_any_gt(vector short __a, in vec_any_gt()
13587 vector bool short __b) { in vec_any_gt()
13588 return __builtin_altivec_vcmpgtsh_p(__CR6_EQ_REV, __a, (vector short)__b); in vec_any_gt()
13591 static __inline__ int __ATTRS_o_ai vec_any_gt(vector unsigned short __a, in vec_any_gt()
13592 vector unsigned short __b) { in vec_any_gt()
13596 static __inline__ int __ATTRS_o_ai vec_any_gt(vector unsigned short __a, in vec_any_gt()
13597 vector bool short __b) { in vec_any_gt()
13599 (vector unsigned short)__b); in vec_any_gt()
13602 static __inline__ int __ATTRS_o_ai vec_any_gt(vector bool short __a, in vec_any_gt()
13603 vector short __b) { in vec_any_gt()
13604 return __builtin_altivec_vcmpgtuh_p(__CR6_EQ_REV, (vector unsigned short)__a, in vec_any_gt()
13605 (vector unsigned short)__b); in vec_any_gt()
13608 static __inline__ int __ATTRS_o_ai vec_any_gt(vector bool short __a, in vec_any_gt()
13609 vector unsigned short __b) { in vec_any_gt()
13610 return __builtin_altivec_vcmpgtuh_p(__CR6_EQ_REV, (vector unsigned short)__a, in vec_any_gt()
13614 static __inline__ int __ATTRS_o_ai vec_any_gt(vector bool short __a, in vec_any_gt()
13615 vector bool short __b) { in vec_any_gt()
13616 return __builtin_altivec_vcmpgtuh_p(__CR6_EQ_REV, (vector unsigned short)__a, in vec_any_gt()
13617 (vector unsigned short)__b); in vec_any_gt()
13620 static __inline__ int __ATTRS_o_ai vec_any_gt(vector int __a, vector int __b) { in vec_any_gt()
13624 static __inline__ int __ATTRS_o_ai vec_any_gt(vector int __a, in vec_any_gt()
13625 vector bool int __b) { in vec_any_gt()
13626 return __builtin_altivec_vcmpgtsw_p(__CR6_EQ_REV, __a, (vector int)__b); in vec_any_gt()
13629 static __inline__ int __ATTRS_o_ai vec_any_gt(vector unsigned int __a, in vec_any_gt()
13630 vector unsigned int __b) { in vec_any_gt()
13634 static __inline__ int __ATTRS_o_ai vec_any_gt(vector unsigned int __a, in vec_any_gt()
13635 vector bool int __b) { in vec_any_gt()
13637 (vector unsigned int)__b); in vec_any_gt()
13640 static __inline__ int __ATTRS_o_ai vec_any_gt(vector bool int __a, in vec_any_gt()
13641 vector int __b) { in vec_any_gt()
13642 return __builtin_altivec_vcmpgtuw_p(__CR6_EQ_REV, (vector unsigned int)__a, in vec_any_gt()
13643 (vector unsigned int)__b); in vec_any_gt()
13646 static __inline__ int __ATTRS_o_ai vec_any_gt(vector bool int __a, in vec_any_gt()
13647 vector unsigned int __b) { in vec_any_gt()
13648 return __builtin_altivec_vcmpgtuw_p(__CR6_EQ_REV, (vector unsigned int)__a, in vec_any_gt()
13652 static __inline__ int __ATTRS_o_ai vec_any_gt(vector bool int __a, in vec_any_gt()
13653 vector bool int __b) { in vec_any_gt()
13654 return __builtin_altivec_vcmpgtuw_p(__CR6_EQ_REV, (vector unsigned int)__a, in vec_any_gt()
13655 (vector unsigned int)__b); in vec_any_gt()
13659 static __inline__ int __ATTRS_o_ai vec_any_gt(vector signed long long __a, in vec_any_gt()
13660 vector signed long long __b) { in vec_any_gt()
13664 static __inline__ int __ATTRS_o_ai vec_any_gt(vector unsigned long long __a, in vec_any_gt()
13665 vector unsigned long long __b) { in vec_any_gt()
13669 static __inline__ int __ATTRS_o_ai vec_any_gt(vector signed long long __a, in vec_any_gt()
13670 vector bool long long __b) { in vec_any_gt()
13672 (vector signed long long)__b); in vec_any_gt()
13675 static __inline__ int __ATTRS_o_ai vec_any_gt(vector unsigned long long __a, in vec_any_gt()
13676 vector bool long long __b) { in vec_any_gt()
13678 (vector unsigned long long)__b); in vec_any_gt()
13681 static __inline__ int __ATTRS_o_ai vec_any_gt(vector bool long long __a, in vec_any_gt()
13682 vector signed long long __b) { in vec_any_gt()
13684 (vector unsigned long long)__a, in vec_any_gt()
13685 (vector unsigned long long)__b); in vec_any_gt()
13688 static __inline__ int __ATTRS_o_ai vec_any_gt(vector bool long long __a, in vec_any_gt()
13689 vector unsigned long long __b) { in vec_any_gt()
13691 (vector unsigned long long)__a, __b); in vec_any_gt()
13694 static __inline__ int __ATTRS_o_ai vec_any_gt(vector bool long long __a, in vec_any_gt()
13695 vector bool long long __b) { in vec_any_gt()
13697 (vector unsigned long long)__a, in vec_any_gt()
13698 (vector unsigned long long)__b); in vec_any_gt()
13702 static __inline__ int __ATTRS_o_ai vec_any_gt(vector float __a, in vec_any_gt()
13703 vector float __b) { in vec_any_gt()
13712 static __inline__ int __ATTRS_o_ai vec_any_gt(vector double __a, in vec_any_gt()
13713 vector double __b) { in vec_any_gt()
13720 static __inline__ int __ATTRS_o_ai vec_any_le(vector signed char __a, in vec_any_le()
13721 vector signed char __b) { in vec_any_le()
13725 static __inline__ int __ATTRS_o_ai vec_any_le(vector signed char __a, in vec_any_le()
13726 vector bool char __b) { in vec_any_le()
13728 (vector signed char)__b); in vec_any_le()
13731 static __inline__ int __ATTRS_o_ai vec_any_le(vector unsigned char __a, in vec_any_le()
13732 vector unsigned char __b) { in vec_any_le()
13736 static __inline__ int __ATTRS_o_ai vec_any_le(vector unsigned char __a, in vec_any_le()
13737 vector bool char __b) { in vec_any_le()
13739 (vector unsigned char)__b); in vec_any_le()
13742 static __inline__ int __ATTRS_o_ai vec_any_le(vector bool char __a, in vec_any_le()
13743 vector signed char __b) { in vec_any_le()
13744 return __builtin_altivec_vcmpgtub_p(__CR6_LT_REV, (vector unsigned char)__a, in vec_any_le()
13745 (vector unsigned char)__b); in vec_any_le()
13748 static __inline__ int __ATTRS_o_ai vec_any_le(vector bool char __a, in vec_any_le()
13749 vector unsigned char __b) { in vec_any_le()
13750 return __builtin_altivec_vcmpgtub_p(__CR6_LT_REV, (vector unsigned char)__a, in vec_any_le()
13754 static __inline__ int __ATTRS_o_ai vec_any_le(vector bool char __a, in vec_any_le()
13755 vector bool char __b) { in vec_any_le()
13756 return __builtin_altivec_vcmpgtub_p(__CR6_LT_REV, (vector unsigned char)__a, in vec_any_le()
13757 (vector unsigned char)__b); in vec_any_le()
13760 static __inline__ int __ATTRS_o_ai vec_any_le(vector short __a, in vec_any_le()
13761 vector short __b) { in vec_any_le()
13765 static __inline__ int __ATTRS_o_ai vec_any_le(vector short __a, in vec_any_le()
13766 vector bool short __b) { in vec_any_le()
13767 return __builtin_altivec_vcmpgtsh_p(__CR6_LT_REV, __a, (vector short)__b); in vec_any_le()
13770 static __inline__ int __ATTRS_o_ai vec_any_le(vector unsigned short __a, in vec_any_le()
13771 vector unsigned short __b) { in vec_any_le()
13775 static __inline__ int __ATTRS_o_ai vec_any_le(vector unsigned short __a, in vec_any_le()
13776 vector bool short __b) { in vec_any_le()
13778 (vector unsigned short)__b); in vec_any_le()
13781 static __inline__ int __ATTRS_o_ai vec_any_le(vector bool short __a, in vec_any_le()
13782 vector short __b) { in vec_any_le()
13783 return __builtin_altivec_vcmpgtuh_p(__CR6_LT_REV, (vector unsigned short)__a, in vec_any_le()
13784 (vector unsigned short)__b); in vec_any_le()
13787 static __inline__ int __ATTRS_o_ai vec_any_le(vector bool short __a, in vec_any_le()
13788 vector unsigned short __b) { in vec_any_le()
13789 return __builtin_altivec_vcmpgtuh_p(__CR6_LT_REV, (vector unsigned short)__a, in vec_any_le()
13793 static __inline__ int __ATTRS_o_ai vec_any_le(vector bool short __a, in vec_any_le()
13794 vector bool short __b) { in vec_any_le()
13795 return __builtin_altivec_vcmpgtuh_p(__CR6_LT_REV, (vector unsigned short)__a, in vec_any_le()
13796 (vector unsigned short)__b); in vec_any_le()
13799 static __inline__ int __ATTRS_o_ai vec_any_le(vector int __a, vector int __b) { in vec_any_le()
13803 static __inline__ int __ATTRS_o_ai vec_any_le(vector int __a, in vec_any_le()
13804 vector bool int __b) { in vec_any_le()
13805 return __builtin_altivec_vcmpgtsw_p(__CR6_LT_REV, __a, (vector int)__b); in vec_any_le()
13808 static __inline__ int __ATTRS_o_ai vec_any_le(vector unsigned int __a, in vec_any_le()
13809 vector unsigned int __b) { in vec_any_le()
13813 static __inline__ int __ATTRS_o_ai vec_any_le(vector unsigned int __a, in vec_any_le()
13814 vector bool int __b) { in vec_any_le()
13816 (vector unsigned int)__b); in vec_any_le()
13819 static __inline__ int __ATTRS_o_ai vec_any_le(vector bool int __a, in vec_any_le()
13820 vector int __b) { in vec_any_le()
13821 return __builtin_altivec_vcmpgtuw_p(__CR6_LT_REV, (vector unsigned int)__a, in vec_any_le()
13822 (vector unsigned int)__b); in vec_any_le()
13825 static __inline__ int __ATTRS_o_ai vec_any_le(vector bool int __a, in vec_any_le()
13826 vector unsigned int __b) { in vec_any_le()
13827 return __builtin_altivec_vcmpgtuw_p(__CR6_LT_REV, (vector unsigned int)__a, in vec_any_le()
13831 static __inline__ int __ATTRS_o_ai vec_any_le(vector bool int __a, in vec_any_le()
13832 vector bool int __b) { in vec_any_le()
13833 return __builtin_altivec_vcmpgtuw_p(__CR6_LT_REV, (vector unsigned int)__a, in vec_any_le()
13834 (vector unsigned int)__b); in vec_any_le()
13838 static __inline__ int __ATTRS_o_ai vec_any_le(vector signed long long __a, in vec_any_le()
13839 vector signed long long __b) { in vec_any_le()
13843 static __inline__ int __ATTRS_o_ai vec_any_le(vector unsigned long long __a, in vec_any_le()
13844 vector unsigned long long __b) { in vec_any_le()
13848 static __inline__ int __ATTRS_o_ai vec_any_le(vector signed long long __a, in vec_any_le()
13849 vector bool long long __b) { in vec_any_le()
13851 (vector signed long long)__b); in vec_any_le()
13854 static __inline__ int __ATTRS_o_ai vec_any_le(vector unsigned long long __a, in vec_any_le()
13855 vector bool long long __b) { in vec_any_le()
13857 (vector unsigned long long)__b); in vec_any_le()
13860 static __inline__ int __ATTRS_o_ai vec_any_le(vector bool long long __a, in vec_any_le()
13861 vector signed long long __b) { in vec_any_le()
13863 (vector unsigned long long)__a, in vec_any_le()
13864 (vector unsigned long long)__b); in vec_any_le()
13867 static __inline__ int __ATTRS_o_ai vec_any_le(vector bool long long __a, in vec_any_le()
13868 vector unsigned long long __b) { in vec_any_le()
13870 (vector unsigned long long)__a, __b); in vec_any_le()
13873 static __inline__ int __ATTRS_o_ai vec_any_le(vector bool long long __a, in vec_any_le()
13874 vector bool long long __b) { in vec_any_le()
13876 (vector unsigned long long)__a, in vec_any_le()
13877 (vector unsigned long long)__b); in vec_any_le()
13881 static __inline__ int __ATTRS_o_ai vec_any_le(vector float __a, in vec_any_le()
13882 vector float __b) { in vec_any_le()
13891 static __inline__ int __ATTRS_o_ai vec_any_le(vector double __a, in vec_any_le()
13892 vector double __b) { in vec_any_le()
13899 static __inline__ int __ATTRS_o_ai vec_any_lt(vector signed char __a, in vec_any_lt()
13900 vector signed char __b) { in vec_any_lt()
13904 static __inline__ int __ATTRS_o_ai vec_any_lt(vector signed char __a, in vec_any_lt()
13905 vector bool char __b) { in vec_any_lt()
13906 return __builtin_altivec_vcmpgtsb_p(__CR6_EQ_REV, (vector signed char)__b, in vec_any_lt()
13910 static __inline__ int __ATTRS_o_ai vec_any_lt(vector unsigned char __a, in vec_any_lt()
13911 vector unsigned char __b) { in vec_any_lt()
13915 static __inline__ int __ATTRS_o_ai vec_any_lt(vector unsigned char __a, in vec_any_lt()
13916 vector bool char __b) { in vec_any_lt()
13917 return __builtin_altivec_vcmpgtub_p(__CR6_EQ_REV, (vector unsigned char)__b, in vec_any_lt()
13921 static __inline__ int __ATTRS_o_ai vec_any_lt(vector bool char __a, in vec_any_lt()
13922 vector signed char __b) { in vec_any_lt()
13923 return __builtin_altivec_vcmpgtub_p(__CR6_EQ_REV, (vector unsigned char)__b, in vec_any_lt()
13924 (vector unsigned char)__a); in vec_any_lt()
13927 static __inline__ int __ATTRS_o_ai vec_any_lt(vector bool char __a, in vec_any_lt()
13928 vector unsigned char __b) { in vec_any_lt()
13930 (vector unsigned char)__a); in vec_any_lt()
13933 static __inline__ int __ATTRS_o_ai vec_any_lt(vector bool char __a, in vec_any_lt()
13934 vector bool char __b) { in vec_any_lt()
13935 return __builtin_altivec_vcmpgtub_p(__CR6_EQ_REV, (vector unsigned char)__b, in vec_any_lt()
13936 (vector unsigned char)__a); in vec_any_lt()
13939 static __inline__ int __ATTRS_o_ai vec_any_lt(vector short __a, in vec_any_lt()
13940 vector short __b) { in vec_any_lt()
13944 static __inline__ int __ATTRS_o_ai vec_any_lt(vector short __a, in vec_any_lt()
13945 vector bool short __b) { in vec_any_lt()
13946 return __builtin_altivec_vcmpgtsh_p(__CR6_EQ_REV, (vector short)__b, __a); in vec_any_lt()
13949 static __inline__ int __ATTRS_o_ai vec_any_lt(vector unsigned short __a, in vec_any_lt()
13950 vector unsigned short __b) { in vec_any_lt()
13954 static __inline__ int __ATTRS_o_ai vec_any_lt(vector unsigned short __a, in vec_any_lt()
13955 vector bool short __b) { in vec_any_lt()
13956 return __builtin_altivec_vcmpgtuh_p(__CR6_EQ_REV, (vector unsigned short)__b, in vec_any_lt()
13960 static __inline__ int __ATTRS_o_ai vec_any_lt(vector bool short __a, in vec_any_lt()
13961 vector short __b) { in vec_any_lt()
13962 return __builtin_altivec_vcmpgtuh_p(__CR6_EQ_REV, (vector unsigned short)__b, in vec_any_lt()
13963 (vector unsigned short)__a); in vec_any_lt()
13966 static __inline__ int __ATTRS_o_ai vec_any_lt(vector bool short __a, in vec_any_lt()
13967 vector unsigned short __b) { in vec_any_lt()
13969 (vector unsigned short)__a); in vec_any_lt()
13972 static __inline__ int __ATTRS_o_ai vec_any_lt(vector bool short __a, in vec_any_lt()
13973 vector bool short __b) { in vec_any_lt()
13974 return __builtin_altivec_vcmpgtuh_p(__CR6_EQ_REV, (vector unsigned short)__b, in vec_any_lt()
13975 (vector unsigned short)__a); in vec_any_lt()
13978 static __inline__ int __ATTRS_o_ai vec_any_lt(vector int __a, vector int __b) { in vec_any_lt()
13982 static __inline__ int __ATTRS_o_ai vec_any_lt(vector int __a, in vec_any_lt()
13983 vector bool int __b) { in vec_any_lt()
13984 return __builtin_altivec_vcmpgtsw_p(__CR6_EQ_REV, (vector int)__b, __a); in vec_any_lt()
13987 static __inline__ int __ATTRS_o_ai vec_any_lt(vector unsigned int __a, in vec_any_lt()
13988 vector unsigned int __b) { in vec_any_lt()
13992 static __inline__ int __ATTRS_o_ai vec_any_lt(vector unsigned int __a, in vec_any_lt()
13993 vector bool int __b) { in vec_any_lt()
13994 return __builtin_altivec_vcmpgtuw_p(__CR6_EQ_REV, (vector unsigned int)__b, in vec_any_lt()
13998 static __inline__ int __ATTRS_o_ai vec_any_lt(vector bool int __a, in vec_any_lt()
13999 vector int __b) { in vec_any_lt()
14000 return __builtin_altivec_vcmpgtuw_p(__CR6_EQ_REV, (vector unsigned int)__b, in vec_any_lt()
14001 (vector unsigned int)__a); in vec_any_lt()
14004 static __inline__ int __ATTRS_o_ai vec_any_lt(vector bool int __a, in vec_any_lt()
14005 vector unsigned int __b) { in vec_any_lt()
14007 (vector unsigned int)__a); in vec_any_lt()
14010 static __inline__ int __ATTRS_o_ai vec_any_lt(vector bool int __a, in vec_any_lt()
14011 vector bool int __b) { in vec_any_lt()
14012 return __builtin_altivec_vcmpgtuw_p(__CR6_EQ_REV, (vector unsigned int)__b, in vec_any_lt()
14013 (vector unsigned int)__a); in vec_any_lt()
14017 static __inline__ int __ATTRS_o_ai vec_any_lt(vector signed long long __a, in vec_any_lt()
14018 vector signed long long __b) { in vec_any_lt()
14022 static __inline__ int __ATTRS_o_ai vec_any_lt(vector unsigned long long __a, in vec_any_lt()
14023 vector unsigned long long __b) { in vec_any_lt()
14027 static __inline__ int __ATTRS_o_ai vec_any_lt(vector signed long long __a, in vec_any_lt()
14028 vector bool long long __b) { in vec_any_lt()
14030 (vector signed long long)__b, __a); in vec_any_lt()
14033 static __inline__ int __ATTRS_o_ai vec_any_lt(vector unsigned long long __a, in vec_any_lt()
14034 vector bool long long __b) { in vec_any_lt()
14036 (vector unsigned long long)__b, __a); in vec_any_lt()
14039 static __inline__ int __ATTRS_o_ai vec_any_lt(vector bool long long __a, in vec_any_lt()
14040 vector signed long long __b) { in vec_any_lt()
14042 (vector unsigned long long)__b, in vec_any_lt()
14043 (vector unsigned long long)__a); in vec_any_lt()
14046 static __inline__ int __ATTRS_o_ai vec_any_lt(vector bool long long __a, in vec_any_lt()
14047 vector unsigned long long __b) { in vec_any_lt()
14049 (vector unsigned long long)__a); in vec_any_lt()
14052 static __inline__ int __ATTRS_o_ai vec_any_lt(vector bool long long __a, in vec_any_lt()
14053 vector bool long long __b) { in vec_any_lt()
14055 (vector unsigned long long)__b, in vec_any_lt()
14056 (vector unsigned long long)__a); in vec_any_lt()
14060 static __inline__ int __ATTRS_o_ai vec_any_lt(vector float __a, in vec_any_lt()
14061 vector float __b) { in vec_any_lt()
14070 static __inline__ int __ATTRS_o_ai vec_any_lt(vector double __a, in vec_any_lt()
14071 vector double __b) { in vec_any_lt()
14079 vec_any_nan(vector float __a) { in vec_any_nan()
14085 static __inline__ int __ATTRS_o_ai vec_any_ne(vector signed char __a, in vec_any_ne()
14086 vector signed char __b) { in vec_any_ne()
14087 return __builtin_altivec_vcmpequb_p(__CR6_LT_REV, (vector char)__a, in vec_any_ne()
14088 (vector char)__b); in vec_any_ne()
14091 static __inline__ int __ATTRS_o_ai vec_any_ne(vector signed char __a, in vec_any_ne()
14092 vector bool char __b) { in vec_any_ne()
14093 return __builtin_altivec_vcmpequb_p(__CR6_LT_REV, (vector char)__a, in vec_any_ne()
14094 (vector char)__b); in vec_any_ne()
14097 static __inline__ int __ATTRS_o_ai vec_any_ne(vector unsigned char __a, in vec_any_ne()
14098 vector unsigned char __b) { in vec_any_ne()
14099 return __builtin_altivec_vcmpequb_p(__CR6_LT_REV, (vector char)__a, in vec_any_ne()
14100 (vector char)__b); in vec_any_ne()
14103 static __inline__ int __ATTRS_o_ai vec_any_ne(vector unsigned char __a, in vec_any_ne()
14104 vector bool char __b) { in vec_any_ne()
14105 return __builtin_altivec_vcmpequb_p(__CR6_LT_REV, (vector char)__a, in vec_any_ne()
14106 (vector char)__b); in vec_any_ne()
14109 static __inline__ int __ATTRS_o_ai vec_any_ne(vector bool char __a, in vec_any_ne()
14110 vector signed char __b) { in vec_any_ne()
14111 return __builtin_altivec_vcmpequb_p(__CR6_LT_REV, (vector char)__a, in vec_any_ne()
14112 (vector char)__b); in vec_any_ne()
14115 static __inline__ int __ATTRS_o_ai vec_any_ne(vector bool char __a, in vec_any_ne()
14116 vector unsigned char __b) { in vec_any_ne()
14117 return __builtin_altivec_vcmpequb_p(__CR6_LT_REV, (vector char)__a, in vec_any_ne()
14118 (vector char)__b); in vec_any_ne()
14121 static __inline__ int __ATTRS_o_ai vec_any_ne(vector bool char __a, in vec_any_ne()
14122 vector bool char __b) { in vec_any_ne()
14123 return __builtin_altivec_vcmpequb_p(__CR6_LT_REV, (vector char)__a, in vec_any_ne()
14124 (vector char)__b); in vec_any_ne()
14127 static __inline__ int __ATTRS_o_ai vec_any_ne(vector short __a, in vec_any_ne()
14128 vector short __b) { in vec_any_ne()
14132 static __inline__ int __ATTRS_o_ai vec_any_ne(vector short __a, in vec_any_ne()
14133 vector bool short __b) { in vec_any_ne()
14134 return __builtin_altivec_vcmpequh_p(__CR6_LT_REV, __a, (vector short)__b); in vec_any_ne()
14137 static __inline__ int __ATTRS_o_ai vec_any_ne(vector unsigned short __a, in vec_any_ne()
14138 vector unsigned short __b) { in vec_any_ne()
14139 return __builtin_altivec_vcmpequh_p(__CR6_LT_REV, (vector short)__a, in vec_any_ne()
14140 (vector short)__b); in vec_any_ne()
14143 static __inline__ int __ATTRS_o_ai vec_any_ne(vector unsigned short __a, in vec_any_ne()
14144 vector bool short __b) { in vec_any_ne()
14145 return __builtin_altivec_vcmpequh_p(__CR6_LT_REV, (vector short)__a, in vec_any_ne()
14146 (vector short)__b); in vec_any_ne()
14149 static __inline__ int __ATTRS_o_ai vec_any_ne(vector bool short __a, in vec_any_ne()
14150 vector short __b) { in vec_any_ne()
14151 return __builtin_altivec_vcmpequh_p(__CR6_LT_REV, (vector short)__a, in vec_any_ne()
14152 (vector short)__b); in vec_any_ne()
14155 static __inline__ int __ATTRS_o_ai vec_any_ne(vector bool short __a, in vec_any_ne()
14156 vector unsigned short __b) { in vec_any_ne()
14157 return __builtin_altivec_vcmpequh_p(__CR6_LT_REV, (vector short)__a, in vec_any_ne()
14158 (vector short)__b); in vec_any_ne()
14161 static __inline__ int __ATTRS_o_ai vec_any_ne(vector bool short __a, in vec_any_ne()
14162 vector bool short __b) { in vec_any_ne()
14163 return __builtin_altivec_vcmpequh_p(__CR6_LT_REV, (vector short)__a, in vec_any_ne()
14164 (vector short)__b); in vec_any_ne()
14167 static __inline__ int __ATTRS_o_ai vec_any_ne(vector pixel __a, in vec_any_ne()
14168 vector pixel __b) { in vec_any_ne()
14169 return __builtin_altivec_vcmpequh_p(__CR6_LT_REV, (vector short)__a, in vec_any_ne()
14170 (vector short)__b); in vec_any_ne()
14173 static __inline__ int __ATTRS_o_ai vec_any_ne(vector int __a, vector int __b) { in vec_any_ne()
14177 static __inline__ int __ATTRS_o_ai vec_any_ne(vector int __a, in vec_any_ne()
14178 vector bool int __b) { in vec_any_ne()
14179 return __builtin_altivec_vcmpequw_p(__CR6_LT_REV, __a, (vector int)__b); in vec_any_ne()
14182 static __inline__ int __ATTRS_o_ai vec_any_ne(vector unsigned int __a, in vec_any_ne()
14183 vector unsigned int __b) { in vec_any_ne()
14184 return __builtin_altivec_vcmpequw_p(__CR6_LT_REV, (vector int)__a, in vec_any_ne()
14185 (vector int)__b); in vec_any_ne()
14188 static __inline__ int __ATTRS_o_ai vec_any_ne(vector unsigned int __a, in vec_any_ne()
14189 vector bool int __b) { in vec_any_ne()
14190 return __builtin_altivec_vcmpequw_p(__CR6_LT_REV, (vector int)__a, in vec_any_ne()
14191 (vector int)__b); in vec_any_ne()
14194 static __inline__ int __ATTRS_o_ai vec_any_ne(vector bool int __a, in vec_any_ne()
14195 vector int __b) { in vec_any_ne()
14196 return __builtin_altivec_vcmpequw_p(__CR6_LT_REV, (vector int)__a, in vec_any_ne()
14197 (vector int)__b); in vec_any_ne()
14200 static __inline__ int __ATTRS_o_ai vec_any_ne(vector bool int __a, in vec_any_ne()
14201 vector unsigned int __b) { in vec_any_ne()
14202 return __builtin_altivec_vcmpequw_p(__CR6_LT_REV, (vector int)__a, in vec_any_ne()
14203 (vector int)__b); in vec_any_ne()
14206 static __inline__ int __ATTRS_o_ai vec_any_ne(vector bool int __a, in vec_any_ne()
14207 vector bool int __b) { in vec_any_ne()
14208 return __builtin_altivec_vcmpequw_p(__CR6_LT_REV, (vector int)__a, in vec_any_ne()
14209 (vector int)__b); in vec_any_ne()
14213 static __inline__ int __ATTRS_o_ai vec_any_ne(vector signed long long __a, in vec_any_ne()
14214 vector signed long long __b) { in vec_any_ne()
14218 static __inline__ int __ATTRS_o_ai vec_any_ne(vector unsigned long long __a, in vec_any_ne()
14219 vector unsigned long long __b) { in vec_any_ne()
14220 return __builtin_altivec_vcmpequd_p(__CR6_LT_REV, (vector long long)__a, in vec_any_ne()
14221 (vector long long)__b); in vec_any_ne()
14224 static __inline__ int __ATTRS_o_ai vec_any_ne(vector signed long long __a, in vec_any_ne()
14225 vector bool long long __b) { in vec_any_ne()
14227 (vector signed long long)__b); in vec_any_ne()
14230 static __inline__ int __ATTRS_o_ai vec_any_ne(vector unsigned long long __a, in vec_any_ne()
14231 vector bool long long __b) { in vec_any_ne()
14233 __CR6_LT_REV, (vector signed long long)__a, (vector signed long long)__b); in vec_any_ne()
14236 static __inline__ int __ATTRS_o_ai vec_any_ne(vector bool long long __a, in vec_any_ne()
14237 vector signed long long __b) { in vec_any_ne()
14239 __CR6_LT_REV, (vector signed long long)__a, (vector signed long long)__b); in vec_any_ne()
14242 static __inline__ int __ATTRS_o_ai vec_any_ne(vector bool long long __a, in vec_any_ne()
14243 vector unsigned long long __b) { in vec_any_ne()
14245 __CR6_LT_REV, (vector signed long long)__a, (vector signed long long)__b); in vec_any_ne()
14248 static __inline__ int __ATTRS_o_ai vec_any_ne(vector bool long long __a, in vec_any_ne()
14249 vector bool long long __b) { in vec_any_ne()
14251 __CR6_LT_REV, (vector signed long long)__a, (vector signed long long)__b); in vec_any_ne()
14255 static __inline__ int __ATTRS_o_ai vec_any_ne(vector float __a, in vec_any_ne()
14256 vector float __b) { in vec_any_ne()
14265 static __inline__ int __ATTRS_o_ai vec_any_ne(vector double __a, in vec_any_ne()
14266 vector double __b) { in vec_any_ne()
14274 vec_any_nge(vector float __a, vector float __b) { in vec_any_nge()
14281 vec_any_ngt(vector float __a, vector float __b) { in vec_any_ngt()
14288 vec_any_nle(vector float __a, vector float __b) { in vec_any_nle()
14295 vec_any_nlt(vector float __a, vector float __b) { in vec_any_nlt()
14302 vec_any_numeric(vector float __a) { in vec_any_numeric()
14309 vec_any_out(vector float __a, vector float __b) { in vec_any_out()
14333 static __inline__ vector unsigned long long __attribute__((__always_inline__))
14334 __builtin_crypto_vsbox(vector unsigned long long __a) { in __builtin_crypto_vsbox()
14338 static __inline__ vector unsigned long long __attribute__((__always_inline__))
14339 __builtin_crypto_vcipher(vector unsigned long long __a, in __builtin_crypto_vcipher()
14340 vector unsigned long long __b) { in __builtin_crypto_vcipher()
14344 static __inline__ vector unsigned long long __attribute__((__always_inline__))
14345 __builtin_crypto_vcipherlast(vector unsigned long long __a, in __builtin_crypto_vcipherlast()
14346 vector unsigned long long __b) { in __builtin_crypto_vcipherlast()
14350 static __inline__ vector unsigned long long __attribute__((__always_inline__))
14351 __builtin_crypto_vncipher(vector unsigned long long __a, in __builtin_crypto_vncipher()
14352 vector unsigned long long __b) { in __builtin_crypto_vncipher()
14356 static __inline__ vector unsigned long long __attribute__((__always_inline__))
14357 __builtin_crypto_vncipherlast(vector unsigned long long __a, in __builtin_crypto_vncipherlast()
14358 vector unsigned long long __b) { in __builtin_crypto_vncipherlast()
14366 _Generic((X), vector unsigned int \
14367 : __builtin_crypto_vshasigmaw, vector unsigned long long \
14372 static __inline__ vector unsigned char __ATTRS_o_ai
14373 __builtin_crypto_vpermxor(vector unsigned char __a, vector unsigned char __b, in __builtin_crypto_vpermxor()
14374 vector unsigned char __c) { in __builtin_crypto_vpermxor()
14378 static __inline__ vector unsigned short __ATTRS_o_ai
14379 __builtin_crypto_vpermxor(vector unsigned short __a, vector unsigned short __b, in __builtin_crypto_vpermxor()
14380 vector unsigned short __c) { in __builtin_crypto_vpermxor()
14381 return (vector unsigned short)__builtin_altivec_crypto_vpermxor( in __builtin_crypto_vpermxor()
14382 (vector unsigned char)__a, (vector unsigned char)__b, in __builtin_crypto_vpermxor()
14383 (vector unsigned char)__c); in __builtin_crypto_vpermxor()
14386 static __inline__ vector unsigned int __ATTRS_o_ai __builtin_crypto_vpermxor( in __builtin_crypto_vpermxor()
14387 vector unsigned int __a, vector unsigned int __b, vector unsigned int __c) { in __builtin_crypto_vpermxor()
14388 return (vector unsigned int)__builtin_altivec_crypto_vpermxor( in __builtin_crypto_vpermxor()
14389 (vector unsigned char)__a, (vector unsigned char)__b, in __builtin_crypto_vpermxor()
14390 (vector unsigned char)__c); in __builtin_crypto_vpermxor()
14393 static __inline__ vector unsigned long long __ATTRS_o_ai
14394 __builtin_crypto_vpermxor(vector unsigned long long __a, in __builtin_crypto_vpermxor()
14395 vector unsigned long long __b, in __builtin_crypto_vpermxor()
14396 vector unsigned long long __c) { in __builtin_crypto_vpermxor()
14397 return (vector unsigned long long)__builtin_altivec_crypto_vpermxor( in __builtin_crypto_vpermxor()
14398 (vector unsigned char)__a, (vector unsigned char)__b, in __builtin_crypto_vpermxor()
14399 (vector unsigned char)__c); in __builtin_crypto_vpermxor()
14402 static __inline__ vector unsigned char __ATTRS_o_ai
14403 __builtin_crypto_vpmsumb(vector unsigned char __a, vector unsigned char __b) { in __builtin_crypto_vpmsumb()
14407 static __inline__ vector unsigned short __ATTRS_o_ai
14408 __builtin_crypto_vpmsumb(vector unsigned short __a, vector unsigned short __b) { in __builtin_crypto_vpmsumb()
14412 static __inline__ vector unsigned int __ATTRS_o_ai
14413 __builtin_crypto_vpmsumb(vector unsigned int __a, vector unsigned int __b) { in __builtin_crypto_vpmsumb()
14417 static __inline__ vector unsigned long long __ATTRS_o_ai
14418 __builtin_crypto_vpmsumb(vector unsigned long long __a, in __builtin_crypto_vpmsumb()
14419 vector unsigned long long __b) { in __builtin_crypto_vpmsumb()
14423 static __inline__ vector signed char __ATTRS_o_ai
14424 vec_vgbbd(vector signed char __a) { in vec_vgbbd()
14425 return __builtin_altivec_vgbbd((vector unsigned char)__a); in vec_vgbbd()
14431 static __inline__ vector unsigned char __ATTRS_o_ai
14432 vec_vgbbd(vector unsigned char __a) { in vec_vgbbd()
14436 static __inline__ vector long long __ATTRS_o_ai
14437 vec_vbpermq(vector signed char __a, vector signed char __b) { in vec_vbpermq()
14438 return __builtin_altivec_vbpermq((vector unsigned char)__a, in vec_vbpermq()
14439 (vector unsigned char)__b); in vec_vbpermq()
14442 static __inline__ vector long long __ATTRS_o_ai
14443 vec_vbpermq(vector unsigned char __a, vector unsigned char __b) { in vec_vbpermq()
14448 static __inline__ vector unsigned long long __attribute__((__always_inline__))
14449 vec_bperm(vector unsigned __int128 __a, vector unsigned char __b) { in vec_bperm()
14450 return __builtin_altivec_vbpermq((vector unsigned char)__a, in vec_bperm()
14451 (vector unsigned char)__b); in vec_bperm()