/external/llvm/lib/Target/AArch64/MCTargetDesc/ |
D | AArch64AsmBackend.cpp | 462 int64_t Signed = Value; in adjustFixupValue() local 463 assert(Signed >= -(1LL << 16) && Signed < (1LL << 16) in adjustFixupValue() 465 if (Signed >= 0) { in adjustFixupValue() 489 int64_t Signed = Value; in adjustFixupValue() local 490 assert(Signed >= -(1LL << 32) && Signed < (1LL << 32) in adjustFixupValue() 492 if (Signed >= 0) { in adjustFixupValue() 512 int64_t Signed = Value; in adjustFixupValue() local 513 assert(Signed >= -(1LL << 48) && Signed < (1LL << 48) in adjustFixupValue() 515 if (Signed >= 0) { in adjustFixupValue()
|
/external/llvm/unittests/ADT/ |
D | StringRefTest.cpp | 361 } Signed[] = variable 427 for (size_t i = 0; i < array_lengthof(Signed); ++i) { in TEST() 428 bool S8Success = StringRef(Signed[i].Str).getAsInteger(0, S8); in TEST() 429 if (static_cast<int8_t>(Signed[i].Expected) == Signed[i].Expected) { in TEST() 431 EXPECT_EQ(S8, Signed[i].Expected); in TEST() 435 bool S16Success = StringRef(Signed[i].Str).getAsInteger(0, S16); in TEST() 436 if (static_cast<int16_t>(Signed[i].Expected) == Signed[i].Expected) { in TEST() 438 EXPECT_EQ(S16, Signed[i].Expected); in TEST() 442 bool S32Success = StringRef(Signed[i].Str).getAsInteger(0, S32); in TEST() 443 if (static_cast<int32_t>(Signed[i].Expected) == Signed[i].Expected) { in TEST() [all …]
|
/external/llvm/test/Transforms/GlobalOpt/ |
D | 2005-09-27-Crash.ll | 4 %arraytype.Signed = type { i32, [0 x i32] } 6 %structtype.test = type { i32, %arraytype.Signed }
|
/external/webkit/Source/JavaScriptCore/assembler/ |
D | MacroAssemblerX86Common.h | 56 Signed = X86Assembler::ConditionS, enumerator 863 ASSERT((cond == Zero) || (cond == NonZero) || (cond == Signed)); in branchTest32() 870 ASSERT((cond == Zero) || (cond == NonZero) || (cond == Signed)); 883 ASSERT((cond == Zero) || (cond == NonZero) || (cond == Signed)); 893 ASSERT((cond == Zero) || (cond == NonZero) || (cond == Signed)); 905 ASSERT((cond == Zero) || (cond == NonZero) || (cond == Signed)); 917 ASSERT((cond == Zero) || (cond == NonZero) || (cond == Signed)); 929 ASSERT((cond == Zero) || (cond == NonZero) || (cond == Signed)); 966 ASSERT((cond == Overflow) || (cond == Signed) || (cond == Zero) || (cond == NonZero)); in branchAdd32() 973 ASSERT((cond == Overflow) || (cond == Signed) || (cond == Zero) || (cond == NonZero)); in branchAdd32() [all …]
|
D | MacroAssemblerARM.h | 57 Signed = ARMAssembler::MI, enumerator 517 ASSERT((cond == Overflow) || (cond == Signed) || (cond == Zero) || (cond == NonZero)); in branchAdd32() 524 ASSERT((cond == Overflow) || (cond == Signed) || (cond == Zero) || (cond == NonZero)); in branchAdd32() 541 ASSERT((cond == Overflow) || (cond == Signed) || (cond == Zero) || (cond == NonZero)); in branchMul32() 553 ASSERT((cond == Overflow) || (cond == Signed) || (cond == Zero) || (cond == NonZero)); in branchMul32() 566 ASSERT((cond == Overflow) || (cond == Signed) || (cond == Zero) || (cond == NonZero)); in branchSub32() 573 ASSERT((cond == Overflow) || (cond == Signed) || (cond == Zero) || (cond == NonZero)); in branchSub32() 580 ASSERT((cond == Overflow) || (cond == Signed) || (cond == Zero) || (cond == NonZero)); in branchNeg32() 587 ASSERT((cond == Signed) || (cond == Zero) || (cond == NonZero)); in branchOr32()
|
D | MacroAssemblerSH4.h | 72 static const Condition Signed; variable 1471 ASSERT((cond == Overflow) || (cond == Signed) || (cond == Zero) || (cond == NonZero)); in branchAdd32() 1478 if (cond == Signed) { in branchAdd32() 1495 ASSERT((cond == Overflow) || (cond == Signed) || (cond == Zero) || (cond == NonZero)); in branchAdd32() 1503 ASSERT((cond == Overflow) || (cond == Signed) || (cond == Zero) || (cond == NonZero)); in branchMul32() 1522 if (cond == Signed) { in branchMul32() 1537 ASSERT((cond == Overflow) || (cond == Signed) || (cond == Zero) || (cond == NonZero)); in branchMul32() 1548 ASSERT((cond == Overflow) || (cond == Signed) || (cond == Zero) || (cond == NonZero)); in branchSub32() 1555 if (cond == Signed) { in branchSub32() 1572 ASSERT((cond == Overflow) || (cond == Signed) || (cond == Zero) || (cond == NonZero)); in branchSub32() [all …]
|
D | MacroAssemblerMIPS.h | 72 Signed, enumerator 976 if (cond == Signed) { in branch32() 1132 ASSERT((cond == Overflow) || (cond == Signed) || (cond == Zero) || (cond == NonZero)); in branchAdd32() 1159 if (cond == Signed) { in branchAdd32() 1185 ASSERT((cond == Overflow) || (cond == Signed) || (cond == Zero) || (cond == NonZero)); in branchMul32() 1210 if (cond == Signed) { in branchMul32() 1237 ASSERT((cond == Overflow) || (cond == Signed) || (cond == Zero) || (cond == NonZero)); in branchSub32() 1264 if (cond == Signed) { in branchSub32() 1290 ASSERT((cond == Signed) || (cond == Zero) || (cond == NonZero)); in branchOr32() 1291 if (cond == Signed) { in branchOr32() [all …]
|
D | MacroAssemblerSH4.cpp | 63 const Condition MacroAssemblerSH4::Signed = SH4Assembler::SI; member in JSC::MacroAssemblerSH4
|
D | MacroAssemblerARMv7.h | 115 Signed = ARMv7Assembler::ConditionMI, enumerator 1030 ASSERT((cond == Overflow) || (cond == Signed) || (cond == Zero) || (cond == NonZero)); in branchAdd32() 1037 ASSERT((cond == Overflow) || (cond == Signed) || (cond == Zero) || (cond == NonZero)); in branchAdd32() 1067 ASSERT((cond == Signed) || (cond == Zero) || (cond == NonZero)); in branchOr32() 1074 ASSERT((cond == Overflow) || (cond == Signed) || (cond == Zero) || (cond == NonZero)); in branchSub32() 1081 ASSERT((cond == Overflow) || (cond == Signed) || (cond == Zero) || (cond == NonZero)); in branchSub32()
|
/external/jsr305/ri/src/main/java/javax/annotation/ |
D | Signed.java | 16 public @interface Signed { annotation
|
/external/llvm/lib/Target/NVPTX/ |
D | NVPTX.h | 115 Signed, enumerator
|
D | NVPTXISelDAGToDAG.cpp | 210 fromType = NVPTX::PTXLdStInstCode::Signed; in SelectLoad() 378 FromType = NVPTX::PTXLdStInstCode::Signed; in SelectLoadVector()
|
/external/e2fsprogs/ |
D | SUBMITTING-PATCHES | 38 Signed-off-by: Random J Developer <random@developer.example.org>
|
/external/dropbear/libtommath/ |
D | tommath.out | 51 \BOOKMARK [2][-]{subsection.3.6.2}{Signed Comparisons}{section.3.6} 77 \BOOKMARK [2][-]{subsection.5.2.6}{Signed Multiplication}{section.5.2}
|
/external/oprofile/ |
D | HACKING | 103 When you submit a patch, we ask that you include a "Signed-off-by" 105 Signed-off-by: Random J Developer <random@developer.example.org>
|
/external/llvm/include/llvm/ADT/ |
D | APInt.h | 1286 void toString(SmallVectorImpl<char> &Str, unsigned Radix, bool Signed, 1304 std::string toString(unsigned Radix, bool Signed) const;
|
/external/libusb/ |
D | ChangeLog | 72 Signed-off-by: Martin Koegler <mkoegler@auto.tuwien.ac.at> 427 Signed-off-by: David Moore <dcm@acm.org> 573 Signed-off-by: David Moore <dcm@acm.org> 600 Signed-off-by: David Moore <dcm@acm.org> 616 Signed-off-by: Mikhail Gusarov <dottedmag@dottedmag.ent> 880 Signed-off-by: Felipe Balbi <me@felipebalbi.com> 1523 Signed-off-by: Vasily Khoruzhick <anarsoul@gmail.com>
|
/external/bison/build-aux/ |
D | gitlog-to-changelog | 102 Signed-off-by: Joe User <user\@example.com> 327 @line = grep !/^(?:Signed-off-by:[ ].*>$
|
/external/llvm/lib/Support/ |
D | APInt.cpp | 2125 bool Signed, bool formatAsCLiteral) const { in toString() argument 2168 if (!Signed) { in toString() 2195 if (Signed && isNegative()) { in toString() 2246 std::string APInt::toString(unsigned Radix = 10, bool Signed = true) const { in toString() argument 2248 toString(S, Radix, Signed, /* formatAsCLiteral = */false); in toString()
|
/external/clang/lib/AST/ |
D | ASTContext.cpp | 7289 bool Signed = false, Unsigned = false; in DecodeTypeFromStr() local 7302 assert(!Signed && "Can't use 'S' modifier multiple times!"); in DecodeTypeFromStr() 7303 Signed = true; in DecodeTypeFromStr() 7306 assert(!Signed && "Can't use both 'S' and 'U' modifiers!"); in DecodeTypeFromStr() 7323 assert(HowLong == 0 && !Signed && !Unsigned && in DecodeTypeFromStr() 7328 assert(HowLong == 0 && !Signed && !Unsigned && in DecodeTypeFromStr() 7333 assert(HowLong < 2 && !Signed && !Unsigned && in DecodeTypeFromStr() 7359 if (Signed) in DecodeTypeFromStr() 7367 assert(HowLong == 0 && !Signed && !Unsigned && "Bad modifiers for 'b'!"); in DecodeTypeFromStr() 7371 assert(HowLong == 0 && !Signed && !Unsigned && "Bad modifiers for 'z'!"); in DecodeTypeFromStr() [all …]
|
/external/clang/include/clang/AST/ |
D | BuiltinTypes.def | 96 //===- Signed Types -------------------------------------------------------===//
|
/external/oprofile/events/x86-64/family11h/ |
D | unit_masks | 16 # Signed off : Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
|
D | events | 16 # Signed off : Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | LegalizeFloatTypes.cpp | 564 bool Signed = N->getOpcode() == ISD::SINT_TO_FP; in SoftenFloatRes_XINT_TO_FP() local 579 LC = Signed ? RTLIB::getSINTTOFP(NVT, RVT):RTLIB::getUINTTOFP (NVT, RVT); in SoftenFloatRes_XINT_TO_FP() 584 SDValue Op = DAG.getNode(Signed ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND, dl, in SoftenFloatRes_XINT_TO_FP()
|
/external/llvm/lib/Target/X86/ |
D | X86InstrArithmetic.td | 155 // Register-Register Signed Integer Multiply 174 // Register-Memory Signed Integer Multiply 205 // Register-Integer Signed Integer Multiply 245 // Memory-Integer Signed Integer Multiply 332 // Signed division/remainder.
|