Home
last modified time | relevance | path

Searched refs:Signed (Results 1 – 25 of 53) sorted by relevance

123

/external/llvm/lib/Target/AArch64/MCTargetDesc/
DAArch64AsmBackend.cpp462 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/
DStringRefTest.cpp361 } 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/
D2005-09-27-Crash.ll4 %arraytype.Signed = type { i32, [0 x i32] }
6 %structtype.test = type { i32, %arraytype.Signed }
/external/webkit/Source/JavaScriptCore/assembler/
DMacroAssemblerX86Common.h56 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 …]
DMacroAssemblerARM.h57 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()
DMacroAssemblerSH4.h72 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 …]
DMacroAssemblerMIPS.h72 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 …]
DMacroAssemblerSH4.cpp63 const Condition MacroAssemblerSH4::Signed = SH4Assembler::SI; member in JSC::MacroAssemblerSH4
DMacroAssemblerARMv7.h115 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/
DSigned.java16 public @interface Signed { annotation
/external/llvm/lib/Target/NVPTX/
DNVPTX.h115 Signed, enumerator
DNVPTXISelDAGToDAG.cpp210 fromType = NVPTX::PTXLdStInstCode::Signed; in SelectLoad()
378 FromType = NVPTX::PTXLdStInstCode::Signed; in SelectLoadVector()
/external/e2fsprogs/
DSUBMITTING-PATCHES38 Signed-off-by: Random J Developer <random@developer.example.org>
/external/dropbear/libtommath/
Dtommath.out51 \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/
DHACKING103 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/
DAPInt.h1286 void toString(SmallVectorImpl<char> &Str, unsigned Radix, bool Signed,
1304 std::string toString(unsigned Radix, bool Signed) const;
/external/libusb/
DChangeLog72 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/
Dgitlog-to-changelog102 Signed-off-by: Joe User <user\@example.com>
327 @line = grep !/^(?:Signed-off-by:[ ].*>$
/external/llvm/lib/Support/
DAPInt.cpp2125 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/
DASTContext.cpp7289 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/
DBuiltinTypes.def96 //===- Signed Types -------------------------------------------------------===//
/external/oprofile/events/x86-64/family11h/
Dunit_masks16 # Signed off : Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
Devents16 # Signed off : Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
/external/llvm/lib/CodeGen/SelectionDAG/
DLegalizeFloatTypes.cpp564 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/
DX86InstrArithmetic.td155 // 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.

123