Lines Matching refs:is_p
828 u64 is_p; in smallfelem_is_zero() local
840 is_p = (small[0] ^ kPrime[0]) | (small[1] ^ kPrime[1]) | in smallfelem_is_zero()
842 is_p--; in smallfelem_is_zero()
843 is_p &= is_p << 32; in smallfelem_is_zero()
844 is_p &= is_p << 16; in smallfelem_is_zero()
845 is_p &= is_p << 8; in smallfelem_is_zero()
846 is_p &= is_p << 4; in smallfelem_is_zero()
847 is_p &= is_p << 2; in smallfelem_is_zero()
848 is_p &= is_p << 1; in smallfelem_is_zero()
849 is_p = ((s64)is_p) >> 63; in smallfelem_is_zero()
851 is_zero |= is_p; in smallfelem_is_zero()