Home
last modified time | relevance | path

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

/freebsd-13.1/crypto/openssl/crypto/ec/
H A Decp_nistp256.c941 is_zero--;
942 is_zero &= is_zero << 32;
943 is_zero &= is_zero << 16;
944 is_zero &= is_zero << 8;
945 is_zero &= is_zero << 4;
946 is_zero &= is_zero << 2;
947 is_zero &= is_zero << 1;
948 is_zero = 0 - (is_zero >> 63);
962 is_zero |= is_p;
964 result = is_zero;
[all …]
H A Decp_nistp521.c815 limb is_zero, is_p;
845 is_zero = 0;
846 is_zero |= ftmp[0];
847 is_zero |= ftmp[1];
848 is_zero |= ftmp[2];
849 is_zero |= ftmp[3];
850 is_zero |= ftmp[4];
856 is_zero--;
861 is_zero = 0 - (is_zero >> 63);
876 is_zero |= is_p;
[all …]
H A Decp_nistz256.c189 static BN_ULONG is_zero(BN_ULONG in) in is_zero() function
213 return is_zero(res); in is_equal()
235 res = is_zero(res); in is_one()
343 in1infty = is_zero(in1infty); in ecp_nistz256_point_add()
344 in2infty = is_zero(in2infty); in ecp_nistz256_point_add()
477 in1infty = is_zero(in1infty); in ecp_nistz256_point_add_affine()
478 in2infty = is_zero(in2infty); in ecp_nistz256_point_add_affine()
1078 infty = 0 - is_zero(infty); in ecp_nistz256_points_mul()
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Instruction/ARM64/
H A DEmulateInstructionARM64.cpp1133 bool is_zero = Bit32(opcode, 24) == 0; in EmulateCBZ() local
1141 if (m_ignore_conditions || ((operand == 0) == is_zero)) { in EmulateCBZ()
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/IR/
H A DPatternMatch.h526 struct is_zero { struct
535 inline is_zero m_Zero() { in m_Zero() argument
536 return is_zero(); in m_Zero()
/freebsd-13.1/contrib/googletest/googlemock/test/
H A Dgmock-matchers_test.cc3029 const Matcher<int> is_zero = Eq(0); in TEST() local
3030 EXPECT_TRUE(Value(0, is_zero)); in TEST()
3031 EXPECT_FALSE(Value('a', is_zero)); in TEST()
3055 const Matcher<const double&> is_zero = Eq(0); in TEST() local
3057 EXPECT_FALSE(ExplainMatchResult(is_zero, 1.5, &listener2)); in TEST()