Home
last modified time | relevance | path

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

/freebsd/crypto/openssl/crypto/ec/
H A Decp_nistp256.c940 u64 is_zero = small[0] | small[1] | small[2] | small[3]; in smallfelem_is_zero() local
941 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()
[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()
903 is_zero |= ftmp[5]; in felem_is_zero()
904 is_zero |= ftmp[6]; in felem_is_zero()
905 is_zero |= ftmp[7]; 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/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/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM64/
H A DEmulateInstructionARM64.cpp1144 bool is_zero = Bit32(opcode, 24) == 0; in EmulateCBZ() local
1152 if (m_ignore_conditions || ((operand == 0) == is_zero)) { in EmulateCBZ()
/freebsd/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.cc2126 const Matcher<const double&> is_zero = Eq(0); in TEST() local
2128 EXPECT_FALSE(ExplainMatchResult(is_zero, 1.5, &listener2)); in TEST()
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DPatternMatch.h603 struct is_zero { struct
612 inline is_zero m_Zero() { return is_zero(); } in m_Zero() argument
/freebsd/contrib/llvm-project/llvm/lib/Support/
H A DAPFloat.cpp3845 bool is_zero = myexponent == 0 && all_zero_significand; in initFromIEEEAPInt() local
3866 is_nan = is_zero && sign; in initFromIEEEAPInt()
3877 if (is_zero) { in initFromIEEEAPInt()