Searched defs:Sign (Results 1 - 25 of 36) sorted by relevance

12

/external/chromium/crypto/
H A Dhmac_mac.cc42 bool HMAC::Sign(const std::string& data, function in class:crypto::HMAC
H A Dhmac_openssl.cc43 bool HMAC::Sign(const std::string& data, function in class:crypto::HMAC
47 DCHECK(!plat_->key.empty()); // Init must be called before Sign.
H A Dhmac_nss.cc76 bool HMAC::Sign(const std::string& data, function in class:crypto::HMAC
80 // Init has not been called before Sign.
H A Dhmac_win.cc157 bool HMAC::Sign(const std::string& data, function in class:crypto::HMAC
/external/chromium_org/crypto/
H A Dhmac_openssl.cc43 bool HMAC::Sign(const base::StringPiece& data, function in class:crypto::HMAC
46 DCHECK(!plat_->key.empty()); // Init must be called before Sign.
H A Dec_signature_creator_openssl.cc26 bool ECSignatureCreatorImpl::Sign(const uint8* data, function in class:crypto::ECSignatureCreatorImpl
H A Dhmac_nss.cc76 bool HMAC::Sign(const base::StringPiece& data, function in class:crypto::HMAC
80 // Init has not been called before Sign.
H A Dsignature_creator_nss.cc47 bool SignatureCreator::Sign(RSAPrivateKey* key, function in class:crypto::SignatureCreator
H A Dsignature_creator_openssl.cc29 bool SignatureCreator::Sign(RSAPrivateKey* key, function in class:crypto::SignatureCreator
H A Dec_signature_creator_nss.cc69 bool ECSignatureCreatorImpl::Sign(const uint8* data, function in class:crypto::ECSignatureCreatorImpl
84 // Sign the secret data and save it to |result|.
H A Dhmac_win.cc169 bool HMAC::Sign(const base::StringPiece& data, function in class:crypto::HMAC
/external/chromium_org/third_party/WebKit/Source/modules/crypto/
H A DNormalizeAlgorithm.h47 Sign, enumerator in enum:WebCore::AlgorithmOperation
/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/chrome/browser/chromeos/login/
H A Downer_manager.cc81 void OwnerManager::Sign(const BrowserThread::ID thread_id, function in class:chromeos::OwnerManager
101 if (!utils_->Sign(data, &signature, private_key_.get())) {
H A Downer_key_utils.cc49 bool Sign(const std::string& data,
149 bool OwnerKeyUtilsImpl::Sign(const std::string& data, function in class:chromeos::OwnerKeyUtilsImpl
/external/llvm/lib/MC/
H A DMCAsmInfo.cpp112 int Sign = Value >> (8 * sizeof(Value) - 1); local
118 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
/external/chromium_org/net/tools/testserver/
H A Dminica.py48 def Sign(self, message): member in class:RSA
245 asn1.BitString(privkey.Sign(tbsCert)),
294 asn1.BitString(issuer_key.Sign(basic_resp_data_der)),
/external/chromium_org/third_party/WebKit/Source/platform/
H A DDecimal.h53 enum Sign { enum in class:WebCore::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 DDecimalTest.cpp79 typedef Decimal::Sign Sign; typedef in class:DecimalTest
80 protected: static const Sign Positive = Decimal::Positive;
81 protected: static const Sign Negative = Decimal::Negative;
83 Decimal encode(uint64_t coefficient, int exponent, Sign sign)
/external/llvm/include/llvm/CodeGen/
H A DJITCodeEmitter.h195 int32_t Sign = Value >> (8 * sizeof(Value) - 1); local
201 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
H A DMachineCodeEmitter.h191 uint64_t Sign = Value >> (8 * sizeof(Value) - 1); local
197 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
/external/llvm/lib/Support/
H A DDwarf.cpp495 const char *llvm::dwarf::DecimalSignString(unsigned Sign) { argument
496 switch (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.h60 ASSERT(Sign() > 0);
90 if (Sign() < 0 && Significand() == 0) {
94 if (Sign() < 0) {
139 int Sign() const { function in class:v8::internal::Double
147 ASSERT(Sign() > 0);
/external/v8/src/
H A Ddouble.h60 ASSERT(Sign() > 0);
90 if (Sign() < 0 && Significand() == 0) {
94 if (Sign() < 0) {
145 int Sign() const { function in class:v8::internal::Double
153 ASSERT(Sign() > 0);

Completed in 1151 milliseconds

12