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

1 2 3 4 5 6 7 8

  /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),
  /external/eigen/test/
numext.cpp 16 if(NumTraits<T>::IsSigned)
26 if(NumTraits<T>::IsSigned)
  /external/clang/lib/Basic/
TargetInfo.cpp 186 unsigned BitWidth, bool IsSigned) const {
188 return IsSigned ? SignedChar : UnsignedChar;
190 return IsSigned ? SignedShort : UnsignedShort;
192 return IsSigned ? SignedInt : UnsignedInt;
194 return IsSigned ? SignedLong : UnsignedLong;
196 return IsSigned ? SignedLongLong : UnsignedLongLong;
201 bool IsSigned) const {
203 return IsSigned ? SignedChar : UnsignedChar;
205 return IsSigned ? SignedShort : UnsignedShort;
207 return IsSigned ? SignedInt : UnsignedInt
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
SimplifyIndVar.cpp 81 bool IsSigned);
191 bool IsSigned) {
207 if ((!IsSigned || SE->isKnownNonNegative(S)) &&
208 SE->isKnownPredicate(IsSigned ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT,
215 if (IsSigned && !SE->isKnownNonNegative(LessOne))
218 if (!SE->isKnownPredicate(IsSigned ?
253 bool IsSigned = Rem->getOpcode() == Instruction::SRem;
254 if (IsSigned || Rem->getOpcode() == Instruction::URem) {
255 eliminateIVRemainder(Rem, IVOperand, IsSigned);
422 bool IsSigned = Rem->getOpcode() == Instruction::SRem
    [all...]
  /external/llvm/include/llvm/Transforms/Utils/
LoopUtils.h 93 RecurrenceType(nullptr), IsSigned(false) {}
99 UnsafeAlgebraInst(UAI), RecurrenceType(RT), IsSigned(Signed) {
221 /// source operands are added to CI, and IsSigned is updated to indicate if
224 Type *RT, bool &IsSigned,
237 bool isSigned() { return IsSigned; }
254 bool IsSigned;
  /external/llvm/include/llvm-c/
ExecutionEngine.h 56 LLVMBool IsSigned);
65 LLVMBool IsSigned);
  /external/swiftshader/third_party/LLVM/include/llvm-c/
ExecutionEngine.h 39 LLVMBool IsSigned);
48 LLVMBool IsSigned);
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm-c/
ExecutionEngine.h 56 LLVMBool IsSigned);
65 LLVMBool IsSigned);
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm-c/
ExecutionEngine.h 56 LLVMBool IsSigned);
65 LLVMBool IsSigned);
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm-c/
ExecutionEngine.h 56 LLVMBool IsSigned);
65 LLVMBool IsSigned);
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm-c/
ExecutionEngine.h 56 LLVMBool IsSigned);
65 LLVMBool IsSigned);
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm-c/
ExecutionEngine.h 56 LLVMBool IsSigned);
65 LLVMBool IsSigned);
  /prebuilts/clang/host/linux-x86/clang-3960126/prebuilt_include/llvm/include/llvm-c/
ExecutionEngine.h 56 LLVMBool IsSigned);
65 LLVMBool IsSigned);
  /prebuilts/clang/host/linux-x86/clang-3977809/prebuilt_include/llvm/include/llvm-c/
ExecutionEngine.h 56 LLVMBool IsSigned);
65 LLVMBool IsSigned);
  /prebuilts/clang/host/linux-x86/clang-4053586/prebuilt_include/llvm/include/llvm-c/
ExecutionEngine.h 56 LLVMBool IsSigned);
65 LLVMBool IsSigned);
  /external/swiftshader/third_party/LLVM/lib/ExecutionEngine/
ExecutionEngineBindings.cpp 27 LLVMBool IsSigned) {
29 GenVal->IntVal = APInt(unwrap<IntegerType>(Ty)->getBitWidth(), N, IsSigned);
59 LLVMBool IsSigned) {
61 if (IsSigned)
  /external/llvm/lib/Transforms/Utils/
SimplifyIndVar.cpp 77 bool IsSigned);
272 bool IsSigned) {
288 if ((!IsSigned || SE->isKnownNonNegative(S)) &&
289 SE->isKnownPredicate(IsSigned ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT,
295 if (IsSigned && !SE->isKnownNonNegative(LessOne))
298 if (!SE->isKnownPredicate(IsSigned ?
430 bool IsSigned = Rem->getOpcode() == Instruction::SRem;
431 if (IsSigned || Rem->getOpcode() == Instruction::URem) {
432 eliminateIVRemainder(Rem, IVOperand, IsSigned);
  /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/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)
822 bool IsSigned = I.getOpcode() == Instruction::SDiv;
825 if ((IsSigned && match(LHS, m_SDiv(m_Value(X), m_APInt(C1)))) ||
826 (!IsSigned && match(LHS, m_UDiv(m_Value(X), m_APInt(C1))))) {
827 APInt Product(C1->getBitWidth(), /*Val=*/0ULL, IsSigned);
    [all...]
  /external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
IndVarSimplify.cpp 726 bool IsSigned; // Was an sext user seen before a zext?
728 WideIVInfo() : NarrowIV(0), WidestNativeType(0), IsSigned(false) {}
751 bool IsSigned = Cast->getOpcode() == Instruction::SExt;
752 if (!IsSigned && Cast->getOpcode() != Instruction::ZExt)
762 WI.IsSigned = IsSigned;
767 if (WI.IsSigned != IsSigned)
799 bool IsSigned;
822 IsSigned(WI.IsSigned)
    [all...]
  /prebuilts/clang/host/darwin-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Transforms/Utils/
LoopUtils.h 103 UnsafeAlgebraInst(UAI), RecurrenceType(RT), IsSigned(Signed) {
224 /// source operands are added to CI, and IsSigned is updated to indicate if
227 Type *RT, bool &IsSigned,
240 bool isSigned() { return IsSigned; }
257 bool IsSigned = false;
  /prebuilts/clang/host/darwin-x86/clang-3960126/prebuilt_include/llvm/include/llvm/Transforms/Utils/
LoopUtils.h 103 UnsafeAlgebraInst(UAI), RecurrenceType(RT), IsSigned(Signed) {
224 /// source operands are added to CI, and IsSigned is updated to indicate if
227 Type *RT, bool &IsSigned,
240 bool isSigned() { return IsSigned; }
257 bool IsSigned = false;
  /prebuilts/clang/host/darwin-x86/clang-3977809/prebuilt_include/llvm/include/llvm/Transforms/Utils/
LoopUtils.h 103 UnsafeAlgebraInst(UAI), RecurrenceType(RT), IsSigned(Signed) {
224 /// source operands are added to CI, and IsSigned is updated to indicate if
227 Type *RT, bool &IsSigned,
240 bool isSigned() { return IsSigned; }
257 bool IsSigned = false;
  /prebuilts/clang/host/darwin-x86/clang-4053586/prebuilt_include/llvm/include/llvm/Transforms/Utils/
LoopUtils.h 103 UnsafeAlgebraInst(UAI), RecurrenceType(RT), IsSigned(Signed) {
224 /// source operands are added to CI, and IsSigned is updated to indicate if
227 Type *RT, bool &IsSigned,
240 bool isSigned() { return IsSigned; }
257 bool IsSigned = false;
  /prebuilts/clang/host/linux-x86/clang-3957855/prebuilt_include/llvm/include/llvm/Transforms/Utils/
LoopUtils.h 103 UnsafeAlgebraInst(UAI), RecurrenceType(RT), IsSigned(Signed) {
224 /// source operands are added to CI, and IsSigned is updated to indicate if
227 Type *RT, bool &IsSigned,
240 bool isSigned() { return IsSigned; }
257 bool IsSigned = false;

Completed in 968 milliseconds

1 2 3 4 5 6 7 8