/external/eigen/Eigen/src/Core/ |
NumTraits.h | 42 * \li An enum value \a IsSigned. It is equal to \c 1 if \a T is a signed type and to 0 if \a T is unsigned. 55 IsSigned = std::numeric_limits<T>::is_signed, 137 IsSigned = NumTraits<Scalar>::IsSigned,
|
/external/clang/lib/CodeGen/ |
CGRecordLayout.h | 75 unsigned IsSigned : 1; 85 : Offset(), Size(), IsSigned(), StorageSize(), StorageOffset() {} 87 CGBitFieldInfo(unsigned Offset, unsigned Size, bool IsSigned, 89 : Offset(Offset), Size(Size), IsSigned(IsSigned),
|
CGRecordLayoutBuilder.cpp | 227 Info.IsSigned = FD->getType()->isSignedIntegerOrEnumerationType(); 659 bool IsSigned = FD->getType()->isSignedIntegerOrEnumerationType(); 682 return CGBitFieldInfo(Offset, Size, IsSigned, StorageSize, StorageOffset); [all...] |
/external/clang/lib/Frontend/ |
InitPreprocessor.cpp | 183 /// signedness of 'isSigned' and with a value suffix of 'ValSuffix' (e.g. LL). 185 StringRef ValSuffix, bool isSigned, 187 llvm::APInt MaxVal = isSigned ? llvm::APInt::getSignedMaxValue(TypeWidth) 189 Builder.defineMacro(MacroName, MaxVal.toString(10, isSigned) + ValSuffix); 202 bool IsSigned = TI.isTypeSigned(Ty); 204 for (const char *Fmt = IsSigned ? "di" : "ouxX"; *Fmt; ++Fmt) { 230 bool IsSigned = TI.isTypeSigned(Ty); 235 Ty = IsSigned ? TI.getInt64Type() : TI.getUInt64Type(); 237 const char *Prefix = IsSigned ? "__INT" : "__UINT"; 250 bool IsSigned = TI.isTypeSigned(Ty) [all...] |
/external/compiler-rt/lib/ubsan/ |
ubsan_handlers.cc | 111 bool IsSigned = Data->Type.isSignedIntegerTy(); 112 ErrorType ET = IsSigned ? ErrorType::SignedIntegerOverflow 122 << (IsSigned ? "signed" : "unsigned") 145 bool IsSigned = Data->Type.isSignedIntegerTy(); 146 ErrorType ET = IsSigned ? ErrorType::SignedIntegerOverflow 154 if (IsSigned)
|
/external/llvm/include/llvm/Transforms/Utils/ |
LoopUtils.h | 89 RecurrenceType(nullptr), IsSigned(false) {} 95 UnsafeAlgebraInst(UAI), RecurrenceType(RT), IsSigned(Signed) { 210 /// source operands are added to CI, and IsSigned is updated to indicate if 213 Type *RT, bool &IsSigned, 226 bool isSigned() { return IsSigned; } 243 bool IsSigned;
|
/external/llvm/lib/Transforms/Utils/ |
SimplifyIndVar.cpp | 77 bool IsSigned); 237 bool IsSigned) { 253 if ((!IsSigned || SE->isKnownNonNegative(S)) && 254 SE->isKnownPredicate(IsSigned ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT, 260 if (IsSigned && !SE->isKnownNonNegative(LessOne)) 263 if (!SE->isKnownPredicate(IsSigned ? 293 bool IsSigned = Rem->getOpcode() == Instruction::SRem; 294 if (IsSigned || Rem->getOpcode() == Instruction::URem) { 295 eliminateIVRemainder(Rem, IVOperand, IsSigned);
|
LoopUtils.cpp | 95 Instruction *Start, Instruction *Exit, Type *RT, bool &IsSigned, 138 if (IsSigned != IsSExtInst) 142 IsSigned = IsSExtInst; 193 bool IsSigned = false; 345 IsSigned, VisitedInsts, CastInsts)) 357 ReduxDesc.getUnsafeAlgebraInst(), RecurrenceType, IsSigned, CastInsts);
|
/external/v8/src/ |
machine-type.h | 60 bool IsSigned() {
|
/external/ceres-solver/include/ceres/ |
jet.h | 657 IsSigned,
|
/external/llvm/lib/Target/AArch64/InstPrinter/ |
AArch64InstPrinter.cpp | 71 bool IsSigned = (Opcode == AArch64::SBFMXri || Opcode == AArch64::SBFMWri); 80 if (IsSigned) 86 if (IsSigned) 93 if (Is64Bit && IsSigned) 144 O << '\t' << (IsSigned ? "sbfiz" : "ubfiz") << '\t' 152 O << '\t' << (IsSigned ? "sbfx" : "ubfx") << '\t' [all...] |
/external/llvm/include/llvm/MC/ |
MCAssembler.h | 403 /// IsSigned - True if this is a sleb128, false if uleb128. 404 bool IsSigned; 410 : MCFragment(FT_LEB, false, 0, Sec), Value(&Value_), IsSigned(IsSigned_) { 419 bool isSigned() const { return IsSigned; }
|
/external/llvm/lib/Target/NVPTX/ |
NVPTXISelDAGToDAG.cpp | [all...] |
/external/llvm/lib/Transforms/InstCombine/ |
InstCombineMulDivRem.cpp | 81 bool IsSigned) { 83 if (IsSigned) 93 bool IsSigned) { 102 if (IsSigned && C1.isMinSignedValue() && C2.isAllOnesValue()) 105 APInt Remainder(C1.getBitWidth(), /*Val=*/0ULL, IsSigned); 106 if (IsSigned) 808 bool IsSigned = I.getOpcode() == Instruction::SDiv; 811 if ((IsSigned && match(LHS, m_SDiv(m_Value(X), m_APInt(C1)))) || 812 (!IsSigned && match(LHS, m_UDiv(m_Value(X), m_APInt(C1))))) { 813 APInt Product(C1->getBitWidth(), /*Val=*/0ULL, IsSigned); [all...] |
/external/llvm/lib/Transforms/Scalar/ |
IndVarSimplify.cpp | 780 bool IsSigned = false; // Was a sext user seen before a zext? 789 bool IsSigned = Cast->getOpcode() == Instruction::SExt; 790 if (!IsSigned && Cast->getOpcode() != Instruction::ZExt) 813 WI.IsSigned = IsSigned; 818 if (WI.IsSigned != IsSigned) [all...] |
LoopStrengthReduce.cpp | [all...] |
/external/llvm/lib/Target/AArch64/ |
AArch64FastISel.cpp | [all...] |
AArch64ISelLowering.cpp | [all...] |
/external/llvm/lib/Target/AArch64/AsmParser/ |
AArch64AsmParser.cpp | [all...] |
/external/llvm/lib/Transforms/Instrumentation/ |
MemorySanitizer.cpp | 654 Origin = IRB.CreateIntCast(Origin, MS.IntptrTy, /* isSigned */ false); [all...] |
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/org.apache.ant_1.7.1.v20090120-1145/lib/ |
ant.jar | |
/prebuilts/tools/common/ant/ |
ant.jar | |
/prebuilts/tools/common/m2/repository/org/apache/ant/ant/1.7.0/ |
ant-1.7.0.jar | |
/prebuilts/tools/common/m2/repository/org/apache/ant/ant/1.8.0/ |
ant-1.8.0.jar | |
/external/jarjar/lib/ |
apache-ant-1.9.4.jar | |