HomeSort by relevance Sort by last modified time
    Searched refs:IsSigned (Results 1 - 25 of 52) sorted by null

1 2 3

  /external/clang/lib/CodeGen/
CGRecordLayout.h 75 unsigned IsSigned : 1;
85 : Offset(), Size(), IsSigned(), StorageSize(), StorageAlignment() {}
87 CGBitFieldInfo(unsigned Offset, unsigned Size, bool IsSigned,
89 : Offset(Offset), Size(Size), IsSigned(IsSigned),
CGRecordLayoutBuilder.cpp 216 Info.IsSigned = FD->getType()->isSignedIntegerOrEnumerationType();
643 bool IsSigned = FD->getType()->isSignedIntegerOrEnumerationType();
666 return CGBitFieldInfo(Offset, Size, IsSigned, StorageSize, StorageAlignment);
    [all...]
  /external/clang/lib/Basic/
TargetInfo.cpp 179 unsigned BitWidth, bool IsSigned) const {
181 return IsSigned ? SignedChar : UnsignedChar;
183 return IsSigned ? SignedShort : UnsignedShort;
185 return IsSigned ? SignedInt : UnsignedInt;
187 return IsSigned ? SignedLong : UnsignedLong;
189 return IsSigned ? SignedLongLong : UnsignedLongLong;
194 bool IsSigned) const {
196 return IsSigned ? SignedChar : UnsignedChar;
198 return IsSigned ? SignedShort : UnsignedShort;
200 return IsSigned ? SignedInt : UnsignedInt
    [all...]
  /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,
MathFunctions.h 393 eigen_assert(!NumTraits<Scalar>::IsSigned || y >= 0);
445 return run(Scalar(NumTraits<Scalar>::IsSigned ? -1 : 0), Scalar(1));
509 return run(Scalar(NumTraits<Scalar>::IsSigned ? -10 : 0), Scalar(10));
514 offset = NumTraits<Scalar>::IsSigned ? (1 << (EIGEN_PLAIN_ENUM_MIN(rand_bits,scalar_bits)-1)) : 0
DenseBase.h 21 EIGEN_STATIC_ASSERT(NumTraits<DenseIndex>::IsSigned,THE_INDEX_TYPE_MUST_BE_A_SIGNED_TYPE);
  /external/llvm/lib/Transforms/Utils/
SimplifyIndVar.cpp 75 bool IsSigned);
189 bool IsSigned) {
205 if ((!IsSigned || SE->isKnownNonNegative(S)) &&
206 SE->isKnownPredicate(IsSigned ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT,
213 if (IsSigned && !SE->isKnownNonNegative(LessOne))
216 if (!SE->isKnownPredicate(IsSigned ?
246 bool IsSigned = Rem->getOpcode() == Instruction::SRem;
247 if (IsSigned || Rem->getOpcode() == Instruction::URem) {
248 eliminateIVRemainder(Rem, IVOperand, IsSigned);
  /external/clang/lib/Frontend/
InitPreprocessor.cpp 181 /// signedness of 'isSigned' and with a value suffix of 'ValSuffix' (e.g. LL).
183 StringRef ValSuffix, bool isSigned,
185 llvm::APInt MaxVal = isSigned ? llvm::APInt::getSignedMaxValue(TypeWidth)
187 Builder.defineMacro(MacroName, MaxVal.toString(10, isSigned) + ValSuffix);
200 bool IsSigned = TI.isTypeSigned(Ty);
202 for (const char *Fmt = IsSigned ? "di" : "ouxX"; *Fmt; ++Fmt) {
228 bool IsSigned = TI.isTypeSigned(Ty);
233 Ty = IsSigned ? TI.getInt64Type() : TI.getUInt64Type();
235 const char *Prefix = IsSigned ? "__INT" : "__UINT";
248 bool IsSigned = TI.isTypeSigned(Ty)
    [all...]
  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 654 bool IsSigned; // Was a sext user seen before a zext?
657 IsSigned(false) {}
666 bool IsSigned = Cast->getOpcode() == Instruction::SExt;
667 if (!IsSigned && Cast->getOpcode() != Instruction::ZExt)
690 WI.IsSigned = IsSigned;
695 if (WI.IsSigned != IsSigned)
727 bool IsSigned;
750 IsSigned(WI.IsSigned)
    [all...]
  /external/llvm/include/llvm-c/
ExecutionEngine.h 56 LLVMBool IsSigned);
65 LLVMBool IsSigned);
  /external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 82 bool IsSigned) {
84 if (IsSigned)
94 bool IsSigned) {
98 APInt Remainder(C1.getBitWidth(), /*Val=*/0ULL, IsSigned);
99 if (IsSigned)
798 bool IsSigned = I.getOpcode() == Instruction::SDiv;
801 if ((IsSigned && match(LHS, m_SDiv(m_Value(X), m_APInt(C1)))) ||
802 (!IsSigned && match(LHS, m_UDiv(m_Value(X), m_APInt(C1))))) {
803 APInt Product(C1->getBitWidth(), /*Val=*/0ULL, IsSigned);
804 if (!MultiplyOverflows(*C1, *C2, Product, IsSigned))
    [all...]
InstCombineCompares.cpp 49 bool IsSigned) {
50 if (!IsSigned)
61 Constant *In2, bool IsSigned = false) {
70 IsSigned))
78 IsSigned);
83 bool IsSigned) {
84 if (!IsSigned)
96 Constant *In2, bool IsSigned = false) {
105 IsSigned))
113 IsSigned);
    [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngineBindings.cpp 40 LLVMBool IsSigned) {
42 GenVal->IntVal = APInt(unwrap<IntegerType>(Ty)->getBitWidth(), N, IsSigned);
72 LLVMBool IsSigned) {
74 if (IsSigned)
  /external/llvm/lib/Target/PowerPC/
PPCFastISel.cpp 136 bool SelectIToFP(const Instruction *I, bool IsSigned);
137 bool SelectFPToI(const Instruction *I, bool IsSigned);
169 unsigned SrcReg, bool IsSigned);
170 unsigned PPCMoveToFPReg(MVT VT, unsigned SrcReg, bool IsSigned);
919 bool IsSigned) {
924 if (!PPCEmitIntExt(MVT::i32, SrcReg, MVT::i64, TmpReg, !IsSigned))
    [all...]
  /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/clang/include/clang/Basic/
TargetInfo.h 253 IntType getIntTypeByWidth(unsigned BitWidth, bool IsSigned) const;
256 IntType getLeastIntTypeByWidth(unsigned BitWidth, bool IsSigned) const;
  /external/llvm/include/llvm/CodeGen/
DIE.h 256 static dwarf::Form BestForm(bool IsSigned, uint64_t Int) {
257 if (IsSigned) {
  /external/eigen/test/
integer_types.cpp 57 VERIFY(int(NumTraits<Scalar>::IsSigned) == is_signed);
  /external/llvm/include/llvm/Analysis/
ScalarEvolution.h 506 /// computable, return CouldNotCompute. isSigned specifies whether the
509 const Loop *L, bool isSigned, bool IsSubExpr);
511 const Loop *L, bool isSigned, bool IsSubExpr);
609 const SCEV *getConstant(Type *Ty, uint64_t V, bool isSigned = false);
    [all...]
  /external/llvm/include/llvm/MC/
MCAssembler.h 462 /// IsSigned - True if this is a sleb128, false if uleb128.
463 bool IsSigned;
470 Value(&Value_), IsSigned(IsSigned_) { Contents.push_back(0); }
477 bool isSigned() const { return IsSigned; }
    [all...]
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp 332 ScalarEvolution::getConstant(Type *Ty, uint64_t V, bool isSigned) {
334 return getConstant(ConstantInt::get(ITy, V, isSigned));
    [all...]
  /external/eigen/Eigen/src/SparseCore/
SparseVector.h 339 EIGEN_STATIC_ASSERT(NumTraits<Index>::IsSigned,THE_INDEX_TYPE_MUST_BE_A_SIGNED_TYPE);
  /external/llvm/lib/Target/AArch64/
AArch64InstrInfo.cpp     [all...]
  /external/llvm/lib/Target/Mips/
MipsFastISel.cpp 99 bool selectFPToInt(const Instruction *I, bool IsSigned);
897 bool MipsFastISel::selectFPToInt(const Instruction *I, bool IsSigned) {
901 if (!IsSigned)
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.h     [all...]

Completed in 838 milliseconds

1 2 3