Searched refs:getC (Results 1 - 3 of 3) sorted by relevance

/openbsd-current/bin/csh/
H A Dlex.c71 * Peekc is a peek character for getC, peekread for readc.
77 * all work, the history routines read with getC, and make use both
79 * of getC at the call of a history reference is such that calls
80 * to getC from the history routines will always yield calls of
128 #define getC(f) ((getCtmp = peekc) ? (peekc = 0, getCtmp) : getC1(f)) macro
232 while ((c = getC(DOALL)) == ' ' || c == '\t')
241 c1 = getC(DOALL);
254 c = getC(0);
268 c = getC(0);
287 c = getC(
[all...]
/openbsd-current/gnu/llvm/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp418 const SCEV *DependenceInfo::Constraint::getC() const { function in class:DependenceInfo::Constraint
484 " (" << *getA() << "*X + " << *getB() << "*Y = " << *getC() << ")\n";
487 *getB() << "*Y = " << *getC() << "\n";
554 Prod1 = SE->getMulExpr(X->getC(), Y->getB());
555 Prod2 = SE->getMulExpr(X->getB(), Y->getC());
568 const SCEV *C1B2 = SE->getMulExpr(X->getC(), Y->getB());
569 const SCEV *C1A2 = SE->getMulExpr(X->getC(), Y->getA());
570 const SCEV *C2B1 = SE->getMulExpr(Y->getC(), X->getB());
571 const SCEV *C2A1 = SE->getMulExpr(Y->getC(), X->getA());
637 if (isKnownPredicate(CmpInst::ICMP_EQ, Sum, Y->getC()))
[all...]
/openbsd-current/gnu/llvm/llvm/include/llvm/Analysis/
H A DDependenceAnalysis.h448 /// getC - If constraint is a line AX + BY = C, returns C.
450 const SCEV *getC() const;

Completed in 131 milliseconds