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

  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CGLoopInfo.cpp 631 llvm::APSInt ValueAPS = ValueExpr->EvaluateKnownConstInt(Ctx);
632 ValueInt = ValueAPS.getSExtValue();
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExpr.cpp 3633 llvm::APSInt ValueAPS;
3634 ExprResult R = VerifyIntegerConstantExpression(E, &ValueAPS);
3639 bool ValueIsPositive = ValueAPS.isStrictlyPositive();
3640 if (!ValueIsPositive || ValueAPS.getActiveBits() > 31) {
3642 << ValueAPS.toString(10) << ValueIsPositive;

Completed in 52 milliseconds