Home
last modified time | relevance | path

Searched refs:is_zero (Results 1 – 9 of 9) sorted by relevance

/freebsd-14.2/crypto/openssl/crypto/ec/
H A Decp_nistp256.c941 is_zero--; in smallfelem_is_zero()
942 is_zero &= is_zero << 32; in smallfelem_is_zero()
943 is_zero &= is_zero << 16; in smallfelem_is_zero()
944 is_zero &= is_zero << 8; in smallfelem_is_zero()
945 is_zero &= is_zero << 4; in smallfelem_is_zero()
946 is_zero &= is_zero << 2; in smallfelem_is_zero()
947 is_zero &= is_zero << 1; in smallfelem_is_zero()
948 is_zero = 0 - (is_zero >> 63); in smallfelem_is_zero()
962 is_zero |= is_p; in smallfelem_is_zero()
964 result = is_zero; in smallfelem_is_zero()
[all …]
H A Decp_nistp521.c867 limb is_zero, is_p; in felem_is_zero() local
897 is_zero = 0; in felem_is_zero()
898 is_zero |= ftmp[0]; in felem_is_zero()
899 is_zero |= ftmp[1]; in felem_is_zero()
900 is_zero |= ftmp[2]; in felem_is_zero()
901 is_zero |= ftmp[3]; in felem_is_zero()
902 is_zero |= ftmp[4]; in felem_is_zero()
908 is_zero--; in felem_is_zero()
913 is_zero = 0 - (is_zero >> 63); in felem_is_zero()
928 is_zero |= is_p; in felem_is_zero()
[all …]
H A Decp_nistz256.c195 static BN_ULONG is_zero(BN_ULONG in) in is_zero() function
219 return is_zero(res); in is_equal()
241 res = is_zero(res); in is_one()
349 in1infty = is_zero(in1infty); in ecp_nistz256_point_add()
350 in2infty = is_zero(in2infty); in ecp_nistz256_point_add()
483 in1infty = is_zero(in1infty); in ecp_nistz256_point_add_affine()
484 in2infty = is_zero(in2infty); in ecp_nistz256_point_add_affine()
1083 infty = 0 - is_zero(infty); in ecp_nistz256_points_mul()
/freebsd-14.2/tests/sys/fs/fusefs/
H A Dfallocate.cc48 is_zero(const char *buf, uint64_t size) in is_zero() function
87 is_zero(buf, length)); in expect_vop_stddeallocate()
/freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM64/
H A DEmulateInstructionARM64.cpp1142 bool is_zero = Bit32(opcode, 24) == 0; in EmulateCBZ() local
1150 if (m_ignore_conditions || ((operand == 0) == is_zero)) { in EmulateCBZ()
/freebsd-14.2/contrib/googletest/googlemock/test/
H A Dgmock-matchers-arithmetic_test.cc936 const Matcher<int> is_zero = Eq(0); in TEST() local
937 EXPECT_TRUE(Value(0, is_zero)); in TEST()
938 EXPECT_FALSE(Value('a', is_zero)); in TEST()
H A Dgmock-matchers-comparisons_test.cc2117 const Matcher<const double&> is_zero = Eq(0); in TEST() local
2119 EXPECT_FALSE(ExplainMatchResult(is_zero, 1.5, &listener2)); in TEST()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/
H A DPatternMatch.h536 struct is_zero { struct
545 inline is_zero m_Zero() { return is_zero(); } in m_Zero() argument
/freebsd-14.2/contrib/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp3771 bool is_zero = myexponent == 0 && all_zero_significand; in initFromIEEEAPInt() local
3792 is_nan = is_zero && sign; in initFromIEEEAPInt()
3803 if (is_zero) { in initFromIEEEAPInt()