Searched refs:IsSigned (Results 1 - 25 of 42) sorted by relevance

12

/external/clang/lib/CodeGen/
H A DCGRecordLayout.h75 unsigned IsSigned : 1; member in struct:clang::CodeGen::CGBitFieldInfo
85 : Offset(), Size(), IsSigned(), StorageSize(), StorageAlignment() {}
87 CGBitFieldInfo(unsigned Offset, unsigned Size, bool IsSigned, argument
89 : Offset(Offset), Size(Size), IsSigned(IsSigned),
H A DCGRecordLayoutBuilder.cpp216 Info.IsSigned = FD->getType()->isSignedIntegerOrEnumerationType();
616 bool IsSigned = FD->getType()->isSignedIntegerOrEnumerationType(); local
639 return CGBitFieldInfo(Offset, Size, IsSigned, StorageSize, StorageAlignment);
806 << " IsSigned:" << IsSigned
/external/clang/lib/Basic/
H A DTargetInfo.cpp157 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
[all...]
/external/chromium_org/third_party/WebKit/Source/platform/
H A DCheckedInt.h193 struct IsSigned struct in namespace:blink::detail
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
[all...]
/external/llvm/lib/Transforms/Utils/
H A DSimplifyIndVar.cpp82 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; local
253 if (IsSigned || Rem->getOpcode() == Instruction::URem) {
254 eliminateIVRemainder(Rem, IVOperand, IsSigned);
193 eliminateIVRemainder(BinaryOperator *Rem, Value *IVOperand, bool IsSigned) argument
/external/eigen/Eigen/src/Core/
H A DNumTraits.h42 * \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, enumerator in enum:Eigen::GenericNumTraits::__anon20662
137 IsSigned = NumTraits<Scalar>::IsSigned,
H A DMathFunctions.h393 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
H A DDenseBase.h21 EIGEN_STATIC_ASSERT(NumTraits<DenseIndex>::IsSigned,THE_INDEX_TYPE_MUST_BE_A_SIGNED_TYPE);
/external/llvm/include/llvm-c/
H A DExecutionEngine.h57 LLVMBool IsSigned);
66 LLVMBool IsSigned);
/external/clang/lib/Frontend/
H A DInitPreprocessor.cpp219 bool IsSigned = TI.isTypeSigned(Ty); local
224 Ty = IsSigned ? TI.getInt64Type() : TI.getIntTypeByWidth(64, false);
226 const char *Prefix = IsSigned ? "__INT" : "__UINT";
240 bool IsSigned = TI.isTypeSigned(Ty); local
245 Ty = IsSigned ? TI.getInt64Type() : TI.getIntTypeByWidth(64, false);
247 const char *Prefix = IsSigned ? "__INT" : "__UINT";
251 static void DefineLeastWidthIntType(unsigned TypeWidth, bool IsSigned, argument
254 TargetInfo::IntType Ty = TI.getLeastIntTypeByWidth(TypeWidth, IsSigned);
258 const char *Prefix = IsSigned ? "__INT_LEAST" : "__UINT_LEAST";
263 static void DefineFastIntType(unsigned TypeWidth, bool IsSigned, argument
[all...]
/external/llvm/lib/Transforms/Scalar/
H A DIndVarSimplify.cpp653 bool IsSigned; // Was an sext user seen before a zext? member in struct:__anon26283::WideIVInfo
656 IsSigned(false) {}
665 bool IsSigned = Cast->getOpcode() == Instruction::SExt; local
666 if (!IsSigned && Cast->getOpcode() != Instruction::ZExt)
676 WI.IsSigned = IsSigned;
681 if (WI.IsSigned != IsSigned)
713 bool IsSigned; member in class:__anon26284::WidenIV
736 IsSigned(W
777 getExtend(Value *NarrowOper, Type *WideType, bool IsSigned, Instruction *Use) argument
[all...]
/external/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp48 LLVMBool IsSigned) {
50 GenVal->IntVal = APInt(unwrap<IntegerType>(Ty)->getBitWidth(), N, IsSigned);
80 LLVMBool IsSigned) {
82 if (IsSigned)
46 LLVMCreateGenericValueOfInt(LLVMTypeRef Ty, unsigned long long N, LLVMBool IsSigned) argument
79 LLVMGenericValueToInt(LLVMGenericValueRef GenValRef, LLVMBool IsSigned) argument
/external/llvm/lib/Target/PowerPC/
H A DPPCFastISel.cpp131 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) { argument
943 if (!IsSigned
874 PPCMoveToFPReg(MVT SrcVT, unsigned SrcReg, bool IsSigned) argument
991 PPCMoveToIntReg(const Instruction *I, MVT VT, unsigned SrcReg, bool IsSigned) argument
1024 SelectFPToI(const Instruction *I, bool IsSigned) argument
[all...]
/external/llvm/lib/Target/AArch64/InstPrinter/
H A DAArch64InstPrinter.cpp75 bool IsSigned = (Opcode == AArch64::SBFMXri || Opcode == AArch64::SBFMWri); local
84 if (IsSigned)
90 if (IsSigned)
97 if (Is64Bit && IsSigned)
148 O << '\t' << (IsSigned ? "sbfiz" : "ubfiz") << '\t'
156 O << '\t' << (IsSigned ? "sbfx" : "ubfx") << '\t'
/external/clang/include/clang/Basic/
H A DTargetInfo.h231 IntType getIntTypeByWidth(unsigned BitWidth, bool IsSigned) const;
234 IntType getLeastIntTypeByWidth(unsigned BitWidth, bool IsSigned) const;
/external/llvm/lib/CodeGen/AsmPrinter/
H A DDIE.h256 static dwarf::Form BestForm(bool IsSigned, uint64_t Int) { argument
257 if (IsSigned) {
/external/eigen/test/
H A Dinteger_types.cpp57 VERIFY(int(NumTraits<Scalar>::IsSigned) == is_signed);
/external/llvm/lib/Target/AArch64/
H A DAArch64InstrInfo.cpp1876 bool IsSigned = false;
2006 IsSigned = true;
2011 IsSigned = true;
2018 IsSigned = true;
2061 if (IsSigned) {
2067 IsSigned = true;
2071 IsSigned = false;
2076 int MaxOff = (1 << (MaskBits - IsSigned)) - 1;
2077 int MinOff = (IsSigned ? (-MaxOff - 1) : 0);
/external/llvm/include/llvm/Analysis/
H A DScalarEvolution.h922 bool IsSigned, bool NoWrap);
928 bool IsSigned, bool NoWrap);
/external/llvm/include/llvm/MC/
H A DMCAssembler.h465 /// IsSigned - True if this is a sleb128, false if uleb128.
466 bool IsSigned; member in class:llvm::MCLEBFragment
473 Value(&Value_), IsSigned(IsSigned_) { Contents.push_back(0); }
480 bool isSigned() const { return IsSigned; }
/external/llvm/lib/Analysis/
H A DScalarEvolution.cpp4774 bool IsSigned = Cond == ICmpInst::ICMP_SLT;
4775 ExitLimit EL = HowManyLessThans(LHS, RHS, L, IsSigned, IsSubExpr);
4781 bool IsSigned = Cond == ICmpInst::ICMP_SGT;
4782 ExitLimit EL = HowManyGreaterThans(LHS, RHS, L, IsSigned, IsSubExpr);
6549 bool IsSigned, bool NoWrap) {
6555 if (IsSigned) {
6578 bool IsSigned, bool NoWrap) {
6584 if (IsSigned) {
6622 const Loop *L, bool IsSigned,
6635 IV->getNoWrapFlags(IsSigned
[all...]
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp39 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);
37 HasAddOverflow(ConstantInt *Result, ConstantInt *In1, ConstantInt *In2, bool IsSigned) argument
71 HasSubOverflow(ConstantInt *Result, ConstantInt *In1, ConstantInt *In2, bool IsSigned) argument
[all...]
/external/eigen/Eigen/src/SparseCore/
H A DSparseVector.h339 EIGEN_STATIC_ASSERT(NumTraits<Index>::IsSigned,THE_INDEX_TYPE_MUST_BE_A_SIGNED_TYPE);
/external/chromium_org/base/numerics/
H A Dsafe_math_impl.h26 template <size_t Size, bool IsSigned>
/external/chromium_org/v8/src/base/
H A Dsafe_math_impl.h56 template <size_t Size, bool IsSigned>

Completed in 646 milliseconds

12