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

  /src/bin/csh/
lex.c 76 * Peekc is a peek character for getC, peekread for readc.
82 * all work, the history routines read with getC, and make use both
84 * of getC at the call of a history reference is such that calls
85 * to getC from the history routines will always yield calls of
133 #define getC(f) ((getCtmp = peekc) ? (peekc = 0, getCtmp) : getC1(f))
266 while ((c = getC(DOALL)) == ' ' || c == '\t')
275 c1 = getC(DOALL);
288 c = getC(0);
302 c = getC(0);
322 c = getC(0)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
DependenceAnalysis.cpp 353 const SCEV *DependenceInfo::Constraint::getC() const {
419 " (" << *getA() << "*X + " << *getB() << "*Y = " << *getC() << ")\n";
422 *getB() << "*Y = " << *getC() << "\n";
489 Prod1 = SE->getMulExpr(X->getC(), Y->getB());
490 Prod2 = SE->getMulExpr(X->getB(), Y->getC());
503 const SCEV *C1B2 = SE->getMulExpr(X->getC(), Y->getB());
504 const SCEV *C1A2 = SE->getMulExpr(X->getC(), Y->getA());
505 const SCEV *C2B1 = SE->getMulExpr(Y->getC(), X->getB());
506 const SCEV *C2A1 = SE->getMulExpr(Y->getC(), X->getA());
572 if (isKnownPredicate(CmpInst::ICMP_EQ, Sum, Y->getC()))
    [all...]

Completed in 50 milliseconds