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

/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/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.cpp108 int Sign = Value >> (8 * sizeof(Value) - 1); local
114 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
/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.h192 uint64_t Sign = Value >> (8 * sizeof(Value) - 1); local
198 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
/external/llvm/lib/Support/
H A DDwarf.cpp480 const char *llvm::dwarf::DecimalSignString(unsigned Sign) { argument
481 switch (Sign) {
/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);
/external/clang/include/clang/Basic/
H A DSpecifiers.h72 /*DeclSpec::TSS*/ unsigned Sign : 2; member in struct:clang::WrittenBuiltinSpecs
/external/dropbear/libtommath/
H A Dbn.tex1115 \section{Sign Manipulation}
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp97 static Value *getNewICmpValue(bool Sign, unsigned Code, Value *LHS, Value *RHS, argument
100 if (Value *NewConstant = getICmpValue(Sign, Code, LHS, RHS, NewPred))
/external/icu4c/test/intltest/
H A Dcalregts.cpp1985 enum Sign { PLUS=1, MINUS=2 }; enum
2157 for (Sign sign=PLUS; sign<=MINUS; sign=(Sign)(sign+1)) {
/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp1590 // Sign extension. Compute the demanded bits in the result that are not
1794 SDValue Sign = TLO.DAG.getNode(ISD::FGETSIGN, dl, Ty, Op.getOperand(0)); local
1797 Sign = TLO.DAG.getNode(ISD::ZERO_EXTEND, dl, Op.getValueType(), Sign);
1802 Sign, ShAmt));
2805 // gcc prints these as sign extended. Sign extend value to 64 bits
H A DDAGCombiner.cpp4183 // Sign bits will be lost after a zext.
8875 SDValue Sign = DAG.getNode(ISD::SRL, N0.getDebugLoc(), XType, N0, local
8878 return DAG.getNode(ISD::XOR, DL, XType, Sign, DAG.getConstant(1, XType));

Completed in 1007 milliseconds