Lines Matching refs:crypto_int32_z

571   crypto_int32 crypto_int32_z = 0;  in crypto_int32_load()  local
572 crypto_int32_z |= ((crypto_int32) (*crypto_int32_s++)) << 0; in crypto_int32_load()
573 crypto_int32_z |= ((crypto_int32) (*crypto_int32_s++)) << 8; in crypto_int32_load()
574 crypto_int32_z |= ((crypto_int32) (*crypto_int32_s++)) << 16; in crypto_int32_load()
575 crypto_int32_z |= ((crypto_int32) (*crypto_int32_s++)) << 24; in crypto_int32_load()
576 return crypto_int32_z; in crypto_int32_load()
748 crypto_int32 crypto_int32_q,crypto_int32_z; in crypto_int32_nonzero_mask() local
749 …__asm__ ("xorl %0,%0\n movl $-1,%1\n testl %2,%2\n cmovnel %1,%0" : "=&r"(crypto_int32_z), "=&r"(c… in crypto_int32_nonzero_mask()
750 return crypto_int32_z; in crypto_int32_nonzero_mask()
752 crypto_int32 crypto_int32_z; in crypto_int32_nonzero_mask()
753 __asm__ ("cmp %w1,0\n csetm %w0,ne" : "=r"(crypto_int32_z) : "r"(crypto_int32_x) : "cc"); in crypto_int32_nonzero_mask()
754 return crypto_int32_z; in crypto_int32_nonzero_mask()
765 crypto_int32 crypto_int32_q,crypto_int32_z; in crypto_int32_nonzero_01() local
766 …__asm__ ("xorl %0,%0\n movl $1,%1\n testl %2,%2\n cmovnel %1,%0" : "=&r"(crypto_int32_z), "=&r"(cr… in crypto_int32_nonzero_01()
767 return crypto_int32_z; in crypto_int32_nonzero_01()
769 crypto_int32 crypto_int32_z; in crypto_int32_nonzero_01()
770 __asm__ ("cmp %w1,0\n cset %w0,ne" : "=r"(crypto_int32_z) : "r"(crypto_int32_x) : "cc"); in crypto_int32_nonzero_01()
771 return crypto_int32_z; in crypto_int32_nonzero_01()
782 crypto_int32 crypto_int32_q,crypto_int32_z; in crypto_int32_positive_mask() local
783 …__asm__ ("xorl %0,%0\n movl $-1,%1\n testl %2,%2\n cmovgl %1,%0" : "=&r"(crypto_int32_z), "=&r"(cr… in crypto_int32_positive_mask()
784 return crypto_int32_z; in crypto_int32_positive_mask()
786 crypto_int32 crypto_int32_z; in crypto_int32_positive_mask()
787 __asm__ ("cmp %w1,0\n csetm %w0,gt" : "=r"(crypto_int32_z) : "r"(crypto_int32_x) : "cc"); in crypto_int32_positive_mask()
788 return crypto_int32_z; in crypto_int32_positive_mask()
790 crypto_int32 crypto_int32_z = -crypto_int32_x; in crypto_int32_positive_mask()
791 crypto_int32_z ^= crypto_int32_x & crypto_int32_z; in crypto_int32_positive_mask()
792 return crypto_int32_negative_mask(crypto_int32_z); in crypto_int32_positive_mask()
800 crypto_int32 crypto_int32_q,crypto_int32_z; in crypto_int32_positive_01() local
801 …__asm__ ("xorl %0,%0\n movl $1,%1\n testl %2,%2\n cmovgl %1,%0" : "=&r"(crypto_int32_z), "=&r"(cry… in crypto_int32_positive_01()
802 return crypto_int32_z; in crypto_int32_positive_01()
804 crypto_int32 crypto_int32_z; in crypto_int32_positive_01()
805 __asm__ ("cmp %w1,0\n cset %w0,gt" : "=r"(crypto_int32_z) : "r"(crypto_int32_x) : "cc"); in crypto_int32_positive_01()
806 return crypto_int32_z; in crypto_int32_positive_01()
808 crypto_int32 crypto_int32_z = -crypto_int32_x; in crypto_int32_positive_01()
809 crypto_int32_z ^= crypto_int32_x & crypto_int32_z; in crypto_int32_positive_01()
810 return crypto_int32_unsigned_topbit_01(crypto_int32_z); in crypto_int32_positive_01()
818 crypto_int32 crypto_int32_q,crypto_int32_z; in crypto_int32_zero_mask() local
819 …__asm__ ("xorl %0,%0\n movl $-1,%1\n testl %2,%2\n cmovel %1,%0" : "=&r"(crypto_int32_z), "=&r"(cr… in crypto_int32_zero_mask()
820 return crypto_int32_z; in crypto_int32_zero_mask()
822 crypto_int32 crypto_int32_z; in crypto_int32_zero_mask()
823 __asm__ ("cmp %w1,0\n csetm %w0,eq" : "=r"(crypto_int32_z) : "r"(crypto_int32_x) : "cc"); in crypto_int32_zero_mask()
824 return crypto_int32_z; in crypto_int32_zero_mask()
834 crypto_int32 crypto_int32_q,crypto_int32_z; in crypto_int32_zero_01() local
835 …__asm__ ("xorl %0,%0\n movl $1,%1\n testl %2,%2\n cmovel %1,%0" : "=&r"(crypto_int32_z), "=&r"(cry… in crypto_int32_zero_01()
836 return crypto_int32_z; in crypto_int32_zero_01()
838 crypto_int32 crypto_int32_z; in crypto_int32_zero_01()
839 __asm__ ("cmp %w1,0\n cset %w0,eq" : "=r"(crypto_int32_z) : "r"(crypto_int32_x) : "cc"); in crypto_int32_zero_01()
840 return crypto_int32_z; in crypto_int32_zero_01()
850 crypto_int32 crypto_int32_q,crypto_int32_z; in crypto_int32_unequal_mask() local
851 …__asm__ ("xorl %0,%0\n movl $-1,%1\n cmpl %3,%2\n cmovnel %1,%0" : "=&r"(crypto_int32_z), "=&r"(cr… in crypto_int32_unequal_mask()
852 return crypto_int32_z; in crypto_int32_unequal_mask()
854 crypto_int32 crypto_int32_z; in crypto_int32_unequal_mask()
855 …__asm__ ("cmp %w1,%w2\n csetm %w0,ne" : "=r"(crypto_int32_z) : "r"(crypto_int32_x), "r"(crypto_int… in crypto_int32_unequal_mask()
856 return crypto_int32_z; in crypto_int32_unequal_mask()
866 crypto_int32 crypto_int32_q,crypto_int32_z; in crypto_int32_unequal_01() local
867 …__asm__ ("xorl %0,%0\n movl $1,%1\n cmpl %3,%2\n cmovnel %1,%0" : "=&r"(crypto_int32_z), "=&r"(cry… in crypto_int32_unequal_01()
868 return crypto_int32_z; in crypto_int32_unequal_01()
870 crypto_int32 crypto_int32_z; in crypto_int32_unequal_01()
871 …__asm__ ("cmp %w1,%w2\n cset %w0,ne" : "=r"(crypto_int32_z) : "r"(crypto_int32_x), "r"(crypto_int3… in crypto_int32_unequal_01()
872 return crypto_int32_z; in crypto_int32_unequal_01()
882 crypto_int32 crypto_int32_q,crypto_int32_z; in crypto_int32_equal_mask() local
883 …__asm__ ("xorl %0,%0\n movl $-1,%1\n cmpl %3,%2\n cmovel %1,%0" : "=&r"(crypto_int32_z), "=&r"(cry… in crypto_int32_equal_mask()
884 return crypto_int32_z; in crypto_int32_equal_mask()
886 crypto_int32 crypto_int32_z; in crypto_int32_equal_mask()
887 …__asm__ ("cmp %w1,%w2\n csetm %w0,eq" : "=r"(crypto_int32_z) : "r"(crypto_int32_x), "r"(crypto_int… in crypto_int32_equal_mask()
888 return crypto_int32_z; in crypto_int32_equal_mask()
898 crypto_int32 crypto_int32_q,crypto_int32_z; in crypto_int32_equal_01() local
899 …__asm__ ("xorl %0,%0\n movl $1,%1\n cmpl %3,%2\n cmovel %1,%0" : "=&r"(crypto_int32_z), "=&r"(cryp… in crypto_int32_equal_01()
900 return crypto_int32_z; in crypto_int32_equal_01()
902 crypto_int32 crypto_int32_z; in crypto_int32_equal_01()
903 …__asm__ ("cmp %w1,%w2\n cset %w0,eq" : "=r"(crypto_int32_z) : "r"(crypto_int32_x), "r"(crypto_int3… in crypto_int32_equal_01()
904 return crypto_int32_z; in crypto_int32_equal_01()
921 crypto_int64 crypto_int32_z = (crypto_int64)crypto_int32_y - (crypto_int64)crypto_int32_x; in crypto_int32_min()
922 crypto_int32_z ^= crypto_int32_r & (crypto_int32_z ^ crypto_int32_y); in crypto_int32_min()
923 crypto_int32_z = crypto_int32_negative_mask(crypto_int32_z); in crypto_int32_min()
924 crypto_int32_z &= crypto_int32_r; in crypto_int32_min()
925 return crypto_int32_x ^ crypto_int32_z; in crypto_int32_min()
940 crypto_int64 crypto_int32_z = (crypto_int64)crypto_int32_y - (crypto_int64)crypto_int32_x; in crypto_int32_max()
941 crypto_int32_z ^= crypto_int32_r & (crypto_int32_z ^ crypto_int32_y); in crypto_int32_max()
942 crypto_int32_z = crypto_int32_negative_mask(crypto_int32_z); in crypto_int32_max()
943 crypto_int32_z &= crypto_int32_r; in crypto_int32_max()
944 return crypto_int32_y ^ crypto_int32_z; in crypto_int32_max()
954 crypto_int32 crypto_int32_z; in crypto_int32_minmax() local
955 …__asm__ ("cmpl %2,%1\n movl %1,%0\n cmovgl %2,%1\n cmovgl %0,%2" : "=&r"(crypto_int32_z), "+&r"(cr… in crypto_int32_minmax()
965 crypto_int64 crypto_int32_z = (crypto_int64)crypto_int32_y - (crypto_int64)crypto_int32_x; in crypto_int32_minmax() local
966 crypto_int32_z ^= crypto_int32_r & (crypto_int32_z ^ crypto_int32_y); in crypto_int32_minmax()
967 crypto_int32_z = crypto_int32_negative_mask(crypto_int32_z); in crypto_int32_minmax()
968 crypto_int32_z &= crypto_int32_r; in crypto_int32_minmax()
969 crypto_int32_x ^= crypto_int32_z; in crypto_int32_minmax()
970 crypto_int32_y ^= crypto_int32_z; in crypto_int32_minmax()
980 crypto_int32 crypto_int32_q,crypto_int32_z; in crypto_int32_smaller_mask() local
981 …__asm__ ("xorl %0,%0\n movl $-1,%1\n cmpl %3,%2\n cmovll %1,%0" : "=&r"(crypto_int32_z), "=&r"(cry… in crypto_int32_smaller_mask()
982 return crypto_int32_z; in crypto_int32_smaller_mask()
984 crypto_int32 crypto_int32_z; in crypto_int32_smaller_mask()
985 …__asm__ ("cmp %w1,%w2\n csetm %w0,lt" : "=r"(crypto_int32_z) : "r"(crypto_int32_x), "r"(crypto_int… in crypto_int32_smaller_mask()
986 return crypto_int32_z; in crypto_int32_smaller_mask()
989 crypto_int32 crypto_int32_z = crypto_int32_x - crypto_int32_y; in crypto_int32_smaller_mask()
990 crypto_int32_z ^= crypto_int32_r & (crypto_int32_z ^ crypto_int32_x); in crypto_int32_smaller_mask()
991 return crypto_int32_negative_mask(crypto_int32_z); in crypto_int32_smaller_mask()
999 crypto_int32 crypto_int32_q,crypto_int32_z; in crypto_int32_smaller_01() local
1000 …__asm__ ("xorl %0,%0\n movl $1,%1\n cmpl %3,%2\n cmovll %1,%0" : "=&r"(crypto_int32_z), "=&r"(cryp… in crypto_int32_smaller_01()
1001 return crypto_int32_z; in crypto_int32_smaller_01()
1003 crypto_int32 crypto_int32_z; in crypto_int32_smaller_01()
1004 …__asm__ ("cmp %w1,%w2\n cset %w0,lt" : "=r"(crypto_int32_z) : "r"(crypto_int32_x), "r"(crypto_int3… in crypto_int32_smaller_01()
1005 return crypto_int32_z; in crypto_int32_smaller_01()
1008 crypto_int32 crypto_int32_z = crypto_int32_x - crypto_int32_y; in crypto_int32_smaller_01()
1009 crypto_int32_z ^= crypto_int32_r & (crypto_int32_z ^ crypto_int32_x); in crypto_int32_smaller_01()
1010 return crypto_int32_unsigned_topbit_01(crypto_int32_z); in crypto_int32_smaller_01()
1018 crypto_int32 crypto_int32_q,crypto_int32_z; in crypto_int32_leq_mask() local
1019 …__asm__ ("xorl %0,%0\n movl $-1,%1\n cmpl %3,%2\n cmovlel %1,%0" : "=&r"(crypto_int32_z), "=&r"(cr… in crypto_int32_leq_mask()
1020 return crypto_int32_z; in crypto_int32_leq_mask()
1022 crypto_int32 crypto_int32_z; in crypto_int32_leq_mask()
1023 …__asm__ ("cmp %w1,%w2\n csetm %w0,le" : "=r"(crypto_int32_z) : "r"(crypto_int32_x), "r"(crypto_int… in crypto_int32_leq_mask()
1024 return crypto_int32_z; in crypto_int32_leq_mask()
1034 crypto_int32 crypto_int32_q,crypto_int32_z; in crypto_int32_leq_01() local
1035 …__asm__ ("xorl %0,%0\n movl $1,%1\n cmpl %3,%2\n cmovlel %1,%0" : "=&r"(crypto_int32_z), "=&r"(cry… in crypto_int32_leq_01()
1036 return crypto_int32_z; in crypto_int32_leq_01()
1038 crypto_int32 crypto_int32_z; in crypto_int32_leq_01()
1039 …__asm__ ("cmp %w1,%w2\n cset %w0,le" : "=r"(crypto_int32_z) : "r"(crypto_int32_x), "r"(crypto_int3… in crypto_int32_leq_01()
1040 return crypto_int32_z; in crypto_int32_leq_01()