HomeSort by relevance Sort by last modified time
    Searched full:issigned (Results 51 - 75 of 134) sorted by null

1 23 4 5 6

  /external/llvm/include/llvm/IR/
InstrTypes.h 482 bool isSigned, ///< Whether to regard S as signed or not
491 bool isSigned, ///< Whether to regard S as signed or not
    [all...]
IRBuilder.h     [all...]
  /external/mesa3d/src/gallium/drivers/radeon/
AMDILPeepholeOptimizer.cpp 742 bool isSigned = ShiftInst->isArithmeticShift();
783 maskVals.push_back(ConstantInt::get(scalarType, maskVal, isSigned));
784 shiftVals.push_back(ConstantInt::get(scalarType, shiftVal, isSigned));
809 newMaskConst = ConstantInt::get(aType, maskVal, isSigned);
810 shiftValConst = ConstantInt::get(aType, shiftVal, isSigned);
    [all...]
  /external/protobuf/java/src/main/java/com/google/protobuf/
TextFormat.java     [all...]
  /external/llvm/lib/Transforms/Instrumentation/
MemorySanitizer.cpp     [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/include/llvm/Analysis/
ScalarEvolution.h 497 /// computable, return CouldNotCompute. isSigned specifies whether the
500 const Loop *L, bool isSigned, bool IsSubExpr);
580 const SCEV *getConstant(Type *Ty, uint64_t V, bool isSigned = false);
    [all...]
  /external/llvm/lib/Target/ARM/
ARMBaseRegisterInfo.cpp 634 bool isSigned = true;
663 isSigned = false;
675 if (isSigned && Offset < 0)
  /external/clang/lib/CodeGen/
CGRecordLayoutBuilder.cpp 238 bool IsSigned = FD->getType()->isSignedIntegerOrEnumerationType();
261 return CGBitFieldInfo(Offset, Size, IsSigned, StorageSize, StorageAlignment);
    [all...]
CGExprScalar.cpp     [all...]
CGExprCXX.cpp 585 bool isSigned
615 if (isSigned && count.isNegative())
665 // 1) if isSigned, we need to check whether numElements is negative;
693 } else if (isSigned) {
    [all...]
  /external/eigen/doc/
I00_CustomizingEigen.dox 163 IsSigned = 1,
  /external/llvm/lib/Transforms/Utils/
LowerSwitch.cpp 180 if (cast<ConstantInt>(Leaf.Low)->isMinValue(true /*isSigned*/)) {
BuildLibCalls.cpp 330 /*isSigned*/true,
387 Char = B.CreateIntCast(Char, B.getInt32Ty(), /*isSigned*/true,
  /external/llvm/lib/CodeGen/AsmPrinter/
DIE.h 238 static unsigned BestForm(bool IsSigned, uint64_t Int) {
239 if (IsSigned) {
  /external/llvm/lib/Support/
APInt.cpp 76 void APInt::initSlowCase(unsigned numBits, uint64_t val, bool isSigned) {
79 if (isSigned && int64_t(val) < 0)
858 double APInt::roundToDouble(bool isSigned) const {
863 if (isSigned) {
871 bool isNeg = isSigned ? (*this)[BitWidth-1] : false;
886 if (!isSigned || !isNeg)
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineCasts.cpp 161 bool isSigned) {
163 C = ConstantExpr::getIntegerCast(C, Ty, isSigned /*Sext or ZExt*/);
186 Value *LHS = EvaluateInDifferentType(I->getOperand(0), Ty, isSigned);
187 Value *RHS = EvaluateInDifferentType(I->getOperand(1), Ty, isSigned);
206 Value *True = EvaluateInDifferentType(I->getOperand(1), Ty, isSigned);
207 Value *False = EvaluateInDifferentType(I->getOperand(2), Ty, isSigned);
215 Value *V =EvaluateInDifferentType(OPN->getIncomingValue(i), Ty, isSigned);
    [all...]
InstCombineMulDivRem.cpp 715 bool isSigned = I.getOpcode() == Instruction::SDiv;
716 if ((isSigned && match(Z, m_SRem(m_Specific(X), m_Specific(Op1)))) ||
717 (!isSigned && match(Z, m_URem(m_Specific(X), m_Specific(Op1)))))
    [all...]
  /external/opencv/otherlibs/highgui/
grfmt_exr.cpp 596 bool issigned = depth < 0; local
660 int offset = issigned ? 1 << (depth - 1) : 0;
  /external/llvm/lib/Analysis/
InstructionSimplify.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeFloatTypes.cpp     [all...]
  /external/llvm/lib/Target/Hexagon/
HexagonInstrInfo.cpp     [all...]
  /external/chromium_org/third_party/WebKit/Source/wtf/text/
WTFString.cpp 953 static const bool isSigned = numeric_limits<IntegralType>::is_signed;
969 if (isSigned && length && *data == '-') {
    [all...]
  /external/clang/lib/Lex/
PPExpressions.cpp 581 if (LHS.Val.isSigned())
593 if (Res.isSigned())
  /external/clang/lib/StaticAnalyzer/Core/
SimpleSValBuilder.cpp 269 if (RHS.isSigned() && !SymbolType->isSignedIntegerOrEnumerationType())
387 if (LHSValue.isAllOnesValue() && LHSValue.isSigned())
    [all...]

Completed in 606 milliseconds

1 23 4 5 6