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

12

/external/llvm/lib/Support/
H A DLEB128.cpp32 int Sign = Value >> (8 * sizeof(Value) - 1); local
38 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
H A DDwarf.cpp511 const char *llvm::dwarf::DecimalSignString(unsigned Sign) { argument
512 switch (Sign) {
/external/chromium_org/crypto/
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.
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/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/chrome/browser/chromeos/platform_keys/
H A Dplatform_keys_service.cc45 // Callback used by |PlatformKeysService::Sign|.
62 platform_keys::subtle::Sign(token_id,
100 void PlatformKeysService::Sign(const std::string& token_id, function in class:chromeos::PlatformKeysService
H A Dplatform_keys_nss.cc374 // Continues signing with the obtained NSSCertDatabase. Used by Sign().
518 void Sign(const std::string& token_id, function in namespace:chromeos::platform_keys::subtle
/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/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 ASSERT(Sign() > 0);
67 if (Sign() < 0 && Significand() == 0) {
71 if (Sign() < 0) {
116 int Sign() const { function in class:v8::internal::Double
124 ASSERT(Sign() > 0);
/external/chromium_org/content/child/webcrypto/
H A Dshared_crypto.cc791 Status Sign(const blink::WebCryptoAlgorithm& algorithm, function in namespace:content::webcrypto
/external/clang/include/clang/Basic/
H A DSpecifiers.h73 /*DeclSpec::TSS*/ unsigned Sign : 2; member in struct:clang::WrittenBuiltinSpecs
/external/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64AddressingModes.h353 uint8_t Sign = (Imm >> 7) & 0x1; local
363 FPUnion.I |= Sign << 31;
375 uint32_t Sign = Imm.lshr(31).getZExtValue() & 1; local
392 return ((int)Sign << 7) | (Exp << 4) | Mantissa;
403 uint64_t Sign = Imm.lshr(63).getZExtValue() & 1; local
420 return ((int)Sign << 7) | (Exp << 4) | Mantissa;
/external/chromium_org/net/spdy/
H A Dspdy_test_util_common.cc307 bool MockECSignatureCreator::Sign(const uint8* data, function in class:net::MockECSignatureCreator
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp89 static Value *getNewICmpValue(bool Sign, unsigned Code, Value *LHS, Value *RHS, argument
92 if (Value *NewConstant = getICmpValue(Sign, Code, LHS, RHS, NewPred))
/external/chromium_org/third_party/icu/source/test/intltest/
H A Dcalregts.cpp1975 enum Sign { PLUS=1, MINUS=2 }; enum
2147 for (Sign sign=PLUS; sign<=MINUS; sign=(Sign)(sign+1)) {

Completed in 595 milliseconds

12