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

12

/external/boringssl/src/tool/
H A Dsign.cc31 bool Sign(const std::vector<std::string> &args) { function
/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.cpp299 const char *llvm::dwarf::DecimalSignString(unsigned Sign) { argument
300 switch (Sign) {
/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/libchrome/crypto/
H A Dhmac.cc61 bool HMAC::Sign(const base::StringPiece& data, function in class:crypto::HMAC
87 if (!Sign(data, computed_digest.get(), digest_length))
/external/swiftshader/third_party/LLVM/lib/MC/
H A DMCAsmInfo.cpp115 int Sign = Value >> (8 * sizeof(Value) - 1); local
121 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
/external/protobuf/src/google/protobuf/stubs/
H A Dmathutil.h82 static T Sign(T value) { function in class:google::protobuf::MathUtil
/external/swiftshader/third_party/LLVM/lib/CodeGen/AsmPrinter/
H A DAsmPrinterDwarf.cpp45 int Sign = Value >> (8 * sizeof(Value) - 1); local
51 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
/external/avb/test/
H A Davb_atx_validate_unittest.cc63 bool Sign(const void* data_to_sign, size_t length, uint8_t signature[]) { function in class:__anon883::ScopedRSA
224 key.Sign(&metadata_.product_intermediate_key_certificate.signed_data,
234 ASSERT_TRUE(key.Sign(&metadata_.product_signing_key_certificate.signed_data,
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/
H A DJITCodeEmitter.h194 int32_t Sign = Value >> (8 * sizeof(Value) - 1); local
200 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
H A DBinaryObject.h314 int Sign = Value >> (8 * sizeof(Value) - 1); local
320 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
H A DMachineCodeEmitter.h189 uint64_t Sign = Value >> (8 * sizeof(Value) - 1); local
195 IsMore = Value != Sign || ((Byte ^ Sign) & 0x40) != 0;
/external/swiftshader/third_party/LLVM/lib/Support/
H A DDwarf.cpp478 const char *llvm::dwarf::DecimalSignString(unsigned Sign) { argument
479 switch (Sign) {
/external/capstone/arch/AArch64/
H A DAArch64AddressingModes.h191 uint8_t Sign = (Imm >> 7) & 0x1; local
201 FPUnion.I |= Sign << 31;
/external/pdfium/core/fpdfdoc/
H A Dcpdf_formfield.h99 Sign enumerator in enum:FormFieldType::CPDF_FormField::Type
/external/pdfium/third_party/bigint/
H A DBigInteger.hh30 enum Sign { negative = -1, zero = 0, positive = 1 }; enum in class:BigInteger
33 Sign sign;
47 BigInteger(const Blk *b, Index blen, Sign s);
55 BigInteger(const BigUnsigned &x, Sign s);
86 Sign getSign() const { return sign; }
222 sign = Sign(-sign);
/external/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);
/external/llvm/lib/Fuzzer/
H A DFuzzerDriver.cpp112 long Sign = 1; local
115 Sign = -1;
123 return Res * Sign;
/external/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMAddressingModes.h658 uint8_t Sign = (Imm >> 7) & 0x1; local
668 FPUnion.I |= Sign << 31;
680 uint32_t Sign = Imm.lshr(15).getZExtValue() & 1; local
695 return ((int)Sign << 7) | (Exp << 4) | Mantissa;
706 uint32_t Sign = Imm.lshr(31).getZExtValue() & 1; local
723 return ((int)Sign << 7) | (Exp << 4) | Mantissa;
734 uint64_t Sign = Imm.lshr(63).getZExtValue() & 1; local
751 return ((int)Sign << 7) | (Exp << 4) | Mantissa;
/external/capstone/arch/ARM/
H A DARMAddressingModes.h651 uint8_t Sign = (Imm >> 7) & 0x1; local
661 FPUnion.I |= Sign << 31;
/external/llvm/include/llvm/ADT/
H A DAPFloat.h344 /// \name Sign operations.
353 static APFloat copySign(APFloat Value, const APFloat &Sign) { argument
354 Value.copySign(Sign);
641 /// Sign bit of the number.
/external/llvm/lib/ProfileData/Coverage/
H A DCoverageMapping.cpp44 Counter C, int Sign, SmallVectorImpl<std::pair<unsigned, int>> &Terms) {
49 Terms.push_back(std::make_pair(C.getCounterID(), Sign));
53 extractTerms(E.LHS, Sign, Terms);
54 extractTerms(E.RHS, E.Kind == CounterExpression::Subtract ? -Sign : Sign,
43 extractTerms( Counter C, int Sign, SmallVectorImpl<std::pair<unsigned, int>> &Terms) argument
/external/clang/include/clang/Basic/
H A DSpecifiers.h86 /*DeclSpec::TSS*/ unsigned Sign : 2; member in struct:clang::WrittenBuiltinSpecs
/external/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64AddressingModes.h349 uint8_t Sign = (Imm >> 7) & 0x1; local
359 FPUnion.I |= Sign << 31;
371 uint32_t Sign = Imm.lshr(15).getZExtValue() & 1; local
386 return ((int)Sign << 7) | (Exp << 4) | Mantissa;
397 uint32_t Sign = Imm.lshr(31).getZExtValue() & 1; local
414 return ((int)Sign << 7) | (Exp << 4) | Mantissa;
425 uint64_t Sign = Imm.lshr(63).getZExtValue() & 1; local
442 return ((int)Sign << 7) | (Exp << 4) | Mantissa;
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp71 static Value *getNewICmpValue(bool Sign, unsigned Code, Value *LHS, Value *RHS, argument
74 if (Value *NewConstant = getICmpValue(Sign, Code, LHS, RHS, NewPred))

Completed in 668 milliseconds

12