Home
last modified time | relevance | path

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

/src/crypto/openssl/crypto/ec/
H A Decp_nistp256.c937 u64 is_zero = small[0] | small[1] | small[2] | small[3]; in smallfelem_is_zero() local
938 is_zero--; in smallfelem_is_zero()
939 is_zero &= is_zero << 32; in smallfelem_is_zero()
940 is_zero &= is_zero << 16; in smallfelem_is_zero()
941 is_zero &= is_zero << 8; in smallfelem_is_zero()
942 is_zero &= is_zero << 4; in smallfelem_is_zero()
943 is_zero &= is_zero << 2; in smallfelem_is_zero()
944 is_zero &= is_zero << 1; in smallfelem_is_zero()
945 is_zero = 0 - (is_zero >> 63); in smallfelem_is_zero()
957 is_zero |= is_p; in smallfelem_is_zero()
[all …]
H A Decp_nistp521.c783 limb is_zero, is_p; in felem_is_zero() local
813 is_zero = 0; in felem_is_zero()
814 is_zero |= ftmp[0]; in felem_is_zero()
815 is_zero |= ftmp[1]; in felem_is_zero()
816 is_zero |= ftmp[2]; in felem_is_zero()
817 is_zero |= ftmp[3]; in felem_is_zero()
818 is_zero |= ftmp[4]; in felem_is_zero()
819 is_zero |= ftmp[5]; in felem_is_zero()
820 is_zero |= ftmp[6]; in felem_is_zero()
821 is_zero |= ftmp[7]; in felem_is_zero()
[all …]
H A Decp_nistz256.c186 static BN_ULONG is_zero(BN_ULONG in) in is_zero() function
210 return is_zero(res); in is_equal()
232 res = is_zero(res); in is_one()
340 in1infty = is_zero(in1infty); in ecp_nistz256_point_add()
341 in2infty = is_zero(in2infty); in ecp_nistz256_point_add()
472 in1infty = is_zero(in1infty); in ecp_nistz256_point_add_affine()
473 in2infty = is_zero(in2infty); in ecp_nistz256_point_add_affine()
1059 infty = 0 - is_zero(infty); in ecp_nistz256_points_mul()
/src/tests/sys/fs/fusefs/
H A Dfallocate.cc47 is_zero(const char *buf, uint64_t size) in is_zero() function
86 is_zero(buf, length)); in expect_vop_stddeallocate()
/src/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()
/src/contrib/googletest/googlemock/test/
H A Dgmock-matchers-arithmetic_test.cc1119 const Matcher<int> is_zero = Eq(0); in TEST() local
1120 EXPECT_TRUE(Value(0, is_zero)); in TEST()
1121 EXPECT_FALSE(Value('a', is_zero)); in TEST()
H A Dgmock-matchers-comparisons_test.cc2182 const Matcher<const double&> is_zero = Eq(0); in TEST() local
2184 EXPECT_FALSE(ExplainMatchResult(is_zero, 1.5, &listener2)); in TEST()
/src/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
/src/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()