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

/freebsd-11-stable/contrib/tcsh/
H A Dsh.lex.c67 * Peekc is a peek character for getC, peekread for readc.
73 * all work, the history routines read with getC, and make use both
75 * of getC at the call of a history reference is such that calls
76 * to getC from the history routines will always yield calls of
127 #define getC(f) (((getCtmp = peekc) != '\0') ? (peekc = 0, (eChar)getCtmp) : getC1(f)) macro
305 while ((c = getC(DOALL)) == ' ' || c == '\t')
314 c1 = getC(DOALL);
328 c = getC(0);
348 c = getC(0);
371 c = getC(
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp353 const SCEV *DependenceInfo::Constraint::getC() const { function in class:DependenceInfo::Constraint
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...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DDependenceAnalysis.h426 /// getC - If constraint is a line AX + BY = C, returns C.
428 const SCEV *getC() const;

Completed in 105 milliseconds