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

1 2

  /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();
616 bool IsSigned = FD->getType()->isSignedIntegerOrEnumerationType();
639 return CGBitFieldInfo(Offset, Size, IsSigned, StorageSize, StorageAlignment);
    [all...]
  /external/clang/lib/Basic/
TargetInfo.cpp 157 unsigned BitWidth, bool IsSigned) const {
159 return IsSigned ? SignedChar : UnsignedChar;
161 return IsSigned ? SignedShort : UnsignedShort;
163 return IsSigned ? SignedInt : UnsignedInt;
165 return IsSigned ? SignedLong : UnsignedLong;
167 return IsSigned ? SignedLongLong : UnsignedLongLong;
172 bool IsSigned) const {
174 return IsSigned ? SignedChar : UnsignedChar;
176 return IsSigned ? SignedShort : UnsignedShort;
178 return IsSigned ? SignedInt : UnsignedInt
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/
CheckedInt.h 193 struct IsSigned
203 IsSigned<IntegerType>::value
234 IsSigned<IntegerType>::value
277 bool IsTSigned = IsSigned<T>::value,
278 bool IsUSigned = IsSigned<U>::value>
303 bool IsTSigned = IsSigned<T>::value,
304 bool IsUSigned = IsSigned<U>::value,
375 return IsSigned<T>::value
391 return IsSigned<T>::value
397 bool IsSigned = IsSigned<T>::value
    [all...]
  /external/llvm/lib/Transforms/Utils/
SimplifyIndVar.cpp 82 bool IsSigned);
195 bool IsSigned) {
211 if ((!IsSigned || SE->isKnownNonNegative(S)) &&
212 SE->isKnownPredicate(IsSigned ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT,
219 if (IsSigned && !SE->isKnownNonNegative(LessOne))
222 if (!SE->isKnownPredicate(IsSigned ?
252 bool IsSigned = Rem->getOpcode() == Instruction::SRem;
253 if (IsSigned || Rem->getOpcode() == Instruction::URem) {
254 eliminateIVRemainder(Rem, IVOperand, IsSigned);
  /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/include/llvm-c/
ExecutionEngine.h 57 LLVMBool IsSigned);
66 LLVMBool IsSigned);
  /external/clang/lib/Frontend/
InitPreprocessor.cpp 182 /// signedness of 'isSigned' and with a value suffix of 'ValSuffix' (e.g. LL).
184 StringRef ValSuffix, bool isSigned,
186 llvm::APInt MaxVal = isSigned ? llvm::APInt::getSignedMaxValue(TypeWidth)
188 Builder.defineMacro(MacroName, MaxVal.toString(10, isSigned) + ValSuffix);
219 bool IsSigned = TI.isTypeSigned(Ty);
224 Ty = IsSigned ? TI.getInt64Type() : TI.getIntTypeByWidth(64, false);
226 const char *Prefix = IsSigned ? "__INT" : "__UINT";
240 bool IsSigned = TI.isTypeSigned(Ty);
245 Ty = IsSigned ? TI.getInt64Type() : TI.getIntTypeByWidth(64, false);
247 const char *Prefix = IsSigned ? "__INT" : "__UINT"
    [all...]
  /external/llvm/lib/Transforms/Scalar/
IndVarSimplify.cpp 653 bool IsSigned; // Was an sext user seen before a zext?
656 IsSigned(false) {}
665 bool IsSigned = Cast->getOpcode() == Instruction::SExt;
666 if (!IsSigned && Cast->getOpcode() != Instruction::ZExt)
676 WI.IsSigned = IsSigned;
681 if (WI.IsSigned != IsSigned)
713 bool IsSigned;
736 IsSigned(WI.IsSigned)
    [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngineBindings.cpp 48 LLVMBool IsSigned) {
50 GenVal->IntVal = APInt(unwrap<IntegerType>(Ty)->getBitWidth(), N, IsSigned);
80 LLVMBool IsSigned) {
82 if (IsSigned)
  /external/llvm/lib/Target/PowerPC/
PPCFastISel.cpp 131 bool SelectIToFP(const Instruction *I, bool IsSigned);
132 bool SelectFPToI(const Instruction *I, bool IsSigned);
162 unsigned SrcReg, bool IsSigned);
163 unsigned PPCMoveToFPReg(MVT VT, unsigned SrcReg, bool IsSigned);
875 bool IsSigned) {
880 if (!PPCEmitIntExt(MVT::i32, SrcReg, MVT::i64, TmpReg, !IsSigned))
899 if (!IsSigned) {
910 if (!PPCEmitLoad(MVT::f64, ResultReg, Addr, RC, !IsSigned, LoadOpc))
917 bool PPCFastISel::SelectIToFP(const Instruction *I, bool IsSigned) {
943 if (!IsSigned && !PPCSubTarget->hasFPCVT()
    [all...]
  /external/clang/include/clang/Basic/
TargetInfo.h 231 IntType getIntTypeByWidth(unsigned BitWidth, bool IsSigned) const;
234 IntType getLeastIntTypeByWidth(unsigned BitWidth, bool IsSigned) const;
  /external/llvm/lib/Target/AArch64/InstPrinter/
AArch64InstPrinter.cpp 75 bool IsSigned = (Opcode == AArch64::SBFMXri || Opcode == AArch64::SBFMWri);
84 if (IsSigned)
90 if (IsSigned)
97 if (Is64Bit && IsSigned)
148 O << '\t' << (IsSigned ? "sbfiz" : "ubfiz") << '\t'
156 O << '\t' << (IsSigned ? "sbfx" : "ubfx") << '\t'
    [all...]
  /external/llvm/lib/CodeGen/AsmPrinter/
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/lib/Target/AArch64/
AArch64InstrInfo.cpp     [all...]
  /external/llvm/include/llvm/Analysis/
ScalarEvolution.h 508 /// computable, return CouldNotCompute. isSigned specifies whether the
511 const Loop *L, bool isSigned, bool IsSubExpr);
513 const Loop *L, bool isSigned, bool IsSubExpr);
593 const SCEV *getConstant(Type *Ty, uint64_t V, bool isSigned = false);
    [all...]
  /external/llvm/include/llvm/MC/
MCAssembler.h 465 /// IsSigned - True if this is a sleb128, false if uleb128.
466 bool IsSigned;
473 Value(&Value_), IsSigned(IsSigned_) { Contents.push_back(0); }
480 bool isSigned() const { return IsSigned; }
    [all...]
  /external/llvm/lib/Analysis/
ScalarEvolution.cpp 328 ScalarEvolution::getConstant(Type *Ty, uint64_t V, bool isSigned) {
330 return getConstant(ConstantInt::get(ITy, V, isSigned));
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp 39 bool IsSigned) {
40 if (!IsSigned)
51 Constant *In2, bool IsSigned = false) {
60 IsSigned))
68 IsSigned);
73 bool IsSigned) {
74 if (!IsSigned)
86 Constant *In2, bool IsSigned = false) {
95 IsSigned))
103 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/chromium_org/base/numerics/
safe_math_impl.h 26 template <size_t Size, bool IsSigned>
  /external/chromium_org/v8/src/base/
safe_math_impl.h 56 template <size_t Size, bool IsSigned>

Completed in 1236 milliseconds

1 2