/external/llvm/lib/Support/ |
APInt.cpp | 77 void APInt::initSlowCase(unsigned numBits, uint64_t val, bool isSigned) { 80 if (isSigned && int64_t(val) < 0) 871 double APInt::roundToDouble(bool isSigned) const { 876 if (isSigned) { 884 bool isNeg = isSigned ? (*this)[BitWidth-1] : false; 899 if (!isSigned || !isNeg) [all...] |
/external/llvm/lib/Transforms/InstCombine/ |
InstCombineCalls.cpp | 641 InstCombiner::BuilderTy &Builder, bool IsSigned) { 649 Pred = IsSigned ? ICmpInst::ICMP_SLT : ICmpInst::ICMP_ULT; 652 Pred = IsSigned ? ICmpInst::ICMP_SLE : ICmpInst::ICMP_ULE; 655 Pred = IsSigned ? ICmpInst::ICMP_SGT : ICmpInst::ICMP_UGT; 658 Pred = IsSigned ? ICmpInst::ICMP_SGE : ICmpInst::ICMP_UGE; [all...] |
InstCombineCasts.cpp | 160 bool isSigned) { 162 C = ConstantExpr::getIntegerCast(C, Ty, isSigned /*Sext or ZExt*/); 185 Value *LHS = EvaluateInDifferentType(I->getOperand(0), Ty, isSigned); 186 Value *RHS = EvaluateInDifferentType(I->getOperand(1), Ty, isSigned); 205 Value *True = EvaluateInDifferentType(I->getOperand(1), Ty, isSigned); 206 Value *False = EvaluateInDifferentType(I->getOperand(2), Ty, isSigned); 215 EvaluateInDifferentType(OPN->getIncomingValue(i), Ty, isSigned); [all...] |
InstCombineInternal.h | 556 Value *InsertRangeTest(Value *V, Constant *Lo, Constant *Hi, bool isSigned, 564 Value *EvaluateInDifferentType(Value *V, Type *Ty, bool isSigned);
|
/external/llvm/lib/Transforms/Utils/ |
BuildLibCalls.cpp | 302 /*isSigned*/true, 359 Char = B.CreateIntCast(Char, B.getInt32Ty(), /*isSigned*/true,
|
/external/opencv/otherlibs/highgui/ |
grfmt_exr.cpp | 596 bool issigned = depth < 0; local 660 int offset = issigned ? 1 << (depth - 1) : 0;
|
/external/opencv3/modules/imgcodecs/src/ |
grfmt_exr.cpp | 583 bool issigned = depth == CV_8S || depth == CV_16S || depth == CV_32S; local 650 int offset = issigned ? 1 << (depth - 1) : 0;
|
/prebuilts/gradle-plugin/com/android/tools/build/builder-model/0.10.0/ |
builder-model-0.10.0.jar | |
/prebuilts/gradle-plugin/com/android/tools/build/builder-model/0.7.0/ |
builder-model-0.7.0.jar | |
/prebuilts/gradle-plugin/com/android/tools/build/builder-model/0.7.4/ |
builder-model-0.7.4.jar | |
/prebuilts/gradle-plugin/com/android/tools/build/builder-model/0.8.0/ |
builder-model-0.8.0.jar | |
/prebuilts/gradle-plugin/com/android/tools/build/builder-model/0.8.1/ |
builder-model-0.8.1.jar | |
/prebuilts/gradle-plugin/com/android/tools/build/builder-model/0.8.3/ |
builder-model-0.8.3.jar | |
/prebuilts/gradle-plugin/com/android/tools/build/builder-model/0.9.0/ |
builder-model-0.9.0.jar | |
/prebuilts/gradle-plugin/com/android/tools/build/builder-model/0.9.1/ |
builder-model-0.9.1.jar | |
/prebuilts/gradle-plugin/com/android/tools/build/builder-model/0.9.3/ |
builder-model-0.9.3.jar | |
/external/llvm/include/llvm/IR/ |
InstrTypes.h | 710 bool isSigned, ///< Whether to regard S as signed or not 719 bool isSigned, ///< Whether to regard S as signed or not [all...] |
/external/llvm/lib/Target/Mips/ |
MipsFastISel.cpp | 103 bool selectFPToInt(const Instruction *I, bool IsSigned); [all...] |
/external/protobuf/java/src/main/java/com/google/protobuf/ |
TextFormat.java | [all...] |
/external/clang/lib/CodeGen/ |
CGExprScalar.cpp | [all...] |
CGExprCXX.cpp | 575 bool isSigned 605 if (isSigned && count.isNegative()) 655 // 1) if isSigned, we need to check whether numElements is negative; 683 } else if (isSigned) { [all...] |
/external/llvm/include/llvm/ADT/ |
APInt.h | 184 void initSlowCase(unsigned numBits, uint64_t val, bool isSigned); 228 /// If isSigned is true then val is treated as if it were a signed value 235 /// \param isSigned how to treat signedness of val 236 APInt(unsigned numBits, uint64_t val, bool isSigned = false) 242 initSlowCase(numBits, val, isSigned); [all...] |
/external/llvm/lib/CodeGen/SelectionDAG/ |
LegalizeVectorOps.cpp | 125 SDValue PromoteFP_TO_INT(SDValue Op, bool isSigned); 468 SDValue VectorLegalizer::PromoteFP_TO_INT(SDValue Op, bool isSigned) { 482 if (!isSigned && TLI.isOperationLegalOrCustom(ISD::FP_TO_UINT, NewVT)) { [all...] |
/external/eigen/Eigen/src/SparseCore/ |
SparseVector.h | 339 EIGEN_STATIC_ASSERT(NumTraits<Index>::IsSigned,THE_INDEX_TYPE_MUST_BE_A_SIGNED_TYPE);
|
/external/libchrome/base/numerics/ |
safe_math_impl.h | 27 template <size_t Size, bool IsSigned>
|