Searched refs:Sign (Results 1 - 25 of 102) sorted by relevance

12345

/external/llvm/lib/Support/
H A DLEB128.cpp32 int Sign = Value >> (8 * sizeof(Value) - 1); local
38 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
/external/llvm/lib/Transforms/Utils/
H A DCmpInstAnalysis.cpp72 Value *llvm::getICmpValue(bool Sign, unsigned Code, Value *LHS, Value *RHS, argument
78 case 1: NewICmpPred = Sign ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT; break;
80 case 3: NewICmpPred = Sign ? ICmpInst::ICMP_SGE : ICmpInst::ICMP_UGE; break;
81 case 4: NewICmpPred = Sign ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT; break;
83 case 6: NewICmpPred = Sign ? ICmpInst::ICMP_SLE : ICmpInst::ICMP_ULE; break;
/external/chromium_org/third_party/WebKit/Source/platform/
H A DDecimal.h53 enum Sign { enum in class:blink::Decimal
64 EncodedData(Sign, int exponent, uint64_t coefficient);
77 Sign sign() const { return m_sign; }
78 void setSign(Sign sign) { m_sign = sign; }
88 EncodedData(Sign, FormatClass);
94 Sign m_sign;
98 Decimal(Sign, int exponent, uint64_t coefficient);
154 static Decimal infinity(Sign);
156 static Decimal zero(Sign);
173 static inline Sign invertSig
[all...]
H A DDecimal.cpp233 Decimal::EncodedData::EncodedData(Sign sign, FormatClass formatClass)
241 Decimal::EncodedData::EncodedData(Sign sign, int exponent, uint64_t coefficient)
283 Decimal::Decimal(Sign sign, int exponent, uint64_t coefficient)
341 const Sign lhsSign = lhs.sign();
342 const Sign rhsSign = rhs.sign();
379 const Sign lhsSign = lhs.sign();
380 const Sign rhsSign = rhs.sign();
417 const Sign lhsSign = lhs.sign();
418 const Sign rhsSign = rhs.sign();
419 const Sign resultSig
[all...]
/external/llvm/include/llvm/Transforms/Utils/
H A DCmpInstAnalysis.h56 Value *getICmpValue(bool Sign, unsigned Code, Value *LHS, Value *RHS,
/external/chromium_org/crypto/
H A Dec_signature_creator.h51 virtual bool Sign(const uint8* data,
56 // by Sign) to a `raw' ECDSA signature which consists of a pair of
H A Dec_signature_creator_impl.h18 virtual bool Sign(const uint8* data,
H A Dhmac.cc50 if (!Sign(data, computed_digest.get(), digest_length))
H A Dhmac.h65 bool Sign(const base::StringPiece& data, unsigned char* digest,
71 // over using Sign() with a manual comparison (such as memcmp), as such
H A Dsignature_creator.h46 static bool Sign(RSAPrivateKey* key,
H A Dhmac_unittest.cc81 EXPECT_TRUE(hmac.Sign(message_data, calculated_hmac, kSHA1DigestSize));
151 EXPECT_TRUE(hmac.Sign(data_string, digest, kSHA1DigestSize));
177 EXPECT_TRUE(hmac.Sign(data, calculated_hmac, kSHA256DigestSize));
218 EXPECT_TRUE(hmac.Sign(message_data, calculated_hmac, kSHA1DigestSize));
233 EXPECT_TRUE(hmac2.Sign(message_data, calculated_hmac2, kSHA256DigestSize));
246 EXPECT_TRUE(hmac.Sign(data_string, digest, kSHA1DigestSize));
290 EXPECT_TRUE(hmac.Sign(data, digest, kSHA1DigestSize));
H A Dhkdf.cc39 result = prk_hmac.Sign(secret, prk, sizeof(prk));
69 result = hmac.Sign(base::StringPiece(buf.get(), j), digest, sizeof(digest));
H A Dec_signature_creator_unittest.cc42 ASSERT_TRUE(signer->Sign(reinterpret_cast<const uint8*>(data.c_str()),
H A Dhmac_openssl.cc51 bool HMAC::Sign(const base::StringPiece& data, function in class:crypto::HMAC
54 DCHECK(!plat_->key.empty()); // Init must be called before Sign.
/external/chromium_org/third_party/WebKit/Source/wtf/dtoa/
H A Ddouble.h60 ASSERT(Sign() > 0);
90 if (Sign() < 0 && Significand() == 0) {
94 if (Sign() < 0) {
145 int Sign() const { function in class:WTF::double_conversion::Double
153 ASSERT(Sign() > 0);
/external/chromium_org/v8/src/
H A Ddouble.h37 DCHECK(Sign() > 0);
67 if (Sign() < 0 && Significand() == 0) {
71 if (Sign() < 0) {
116 int Sign() const { function in class:v8::internal::Double
124 DCHECK(Sign() > 0);
H A Ddtoa.cc38 if (Double(v).Sign() < 0) {
/external/chromium_org/chrome/browser/profile_resetter/
H A Djtl_foundation.cc24 if (!hmac_.Sign(input, digest, arraysize(digest))) {
/external/chromium_org/net/quic/crypto/
H A Dchannel_id.h23 // Sign signs |signed_data| using the ChannelID private key and puts the
25 virtual bool Sign(base::StringPiece signed_data,
H A Dchannel_id_chromium.h26 virtual bool Sign(base::StringPiece signed_data,
/external/chromium_org/v8/test/cctest/
H A Dtest-double.cc141 TEST(Sign) {
142 CHECK_EQ(1, Double(1.0).Sign());
143 CHECK_EQ(1, Double(V8_INFINITY).Sign());
144 CHECK_EQ(-1, Double(-V8_INFINITY).Sign());
145 CHECK_EQ(1, Double(0.0).Sign());
146 CHECK_EQ(-1, Double(-0.0).Sign());
148 CHECK_EQ(1, Double(min_double64).Sign());
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMAddressingModes.h590 uint8_t Sign = (Imm >> 7) & 0x1;
600 FPUnion.I |= Sign << 31;
612 uint32_t Sign = Imm.lshr(31).getZExtValue() & 1;
629 return ((int)Sign << 7) | (Exp << 4) | Mantissa;
640 uint64_t Sign = Imm.lshr(63).getZExtValue() & 1;
657 return ((int)Sign << 7) | (Exp << 4) | Mantissa;
/external/chromium_org/content/public/browser/
H A Dmedia_device_id.cc25 hmac.Sign(raw_unique_id + salt, &digest[0], digest.size());
/external/chromium_org/remoting/protocol/
H A Dauth_util.cc61 if (!response.Sign(shared_secret, out_bytes, kAuthDigestLength)) {
62 NOTREACHED() << "HMAC::Sign failed";
/external/clang/include/clang/Basic/
H A DSpecifiers.h73 /*DeclSpec::TSS*/ unsigned Sign : 2; member in struct:clang::WrittenBuiltinSpecs

Completed in 310 milliseconds

12345