Lines Matching refs:is_p
940 u64 is_p; in smallfelem_is_zero() local
952 is_p = (small[0] ^ kPrime[0]) | in smallfelem_is_zero()
955 is_p--; in smallfelem_is_zero()
956 is_p &= is_p << 32; in smallfelem_is_zero()
957 is_p &= is_p << 16; in smallfelem_is_zero()
958 is_p &= is_p << 8; in smallfelem_is_zero()
959 is_p &= is_p << 4; in smallfelem_is_zero()
960 is_p &= is_p << 2; in smallfelem_is_zero()
961 is_p &= is_p << 1; in smallfelem_is_zero()
962 is_p = 0 - (is_p >> 63); in smallfelem_is_zero()
964 is_zero |= is_p; in smallfelem_is_zero()