HomeSort by: relevance | last modified time | path
    Searched defs:NewBitWidth (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SMTConv.h 659 uint64_t NewBitWidth = Ctx.getTypeSize(NewTy);
660 LHS = (*doCast)(Solver, LHS, NewTy, NewBitWidth, LTy, LBitWidth);
662 LBitWidth = NewBitWidth;
666 uint64_t NewBitWidth = Ctx.getTypeSize(NewTy);
667 RHS = (*doCast)(Solver, RHS, NewTy, NewBitWidth, RTy, RBitWidth);
669 RBitWidth = NewBitWidth;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp 2209 unsigned NewBitWidth = (*MaxValue + 1).logBase2() + 1;
2212 if (!shouldChangeType(Ty->getScalarType()->getIntegerBitWidth(), NewBitWidth))
2221 Type *NewTy = Ty->getWithNewBitWidth(NewBitWidth);
2229 if (A->getType()->getScalarSizeInBits() > NewBitWidth ||
2230 B->getType()->getScalarSizeInBits() > NewBitWidth)

Completed in 49 milliseconds