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

  /src/games/hack/
hack.terminfo.c 79 int CO, LI; /* used in pri.c and whatis.c */
87 CO = columns;
89 if (CO < COLNO || LI < ROWNO + 2)
  /src/games/backgammon/common_source/
fancy.c 75 static int CO; /* number of columns */
605 tputs(CL, CO, addbuf); /* put CL in buffer */
664 tputs(CD, CO - curr, addbuf);
724 CO = tgetnum("co"); /* get number of columns */
725 if (CO == -1)
726 CO = 65;
751 if (LI < 24 || CO < 72 || !(CL && UP && ND)) {
  /src/games/worms/
worms.c 203 int CO, LI, last, bottom, ch, number, trail;
378 CO = COLS;
381 if (CO == 0 || LI == 0) {
383 errx(1, "screen must be a rectangle, not (%dx%d)", CO, LI);
388 * that a LI * CO * sizeof(short *) cannot overflow an int
390 if (CO >= (int)(INT_MAX / (2 * sizeof(short *)) / LI)) {
392 errx(1, "screen (%dx%d) too large for worms", CO, LI);
395 /* now known that LI*CO cannot overflow an int => also not a long */
397 if (LI < 3 || CO < 3 || LI * CO < 40)
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Analysis/
ReachableCode.cpp 572 const AbstractConditionalOperator *CO =
574 return CO->getQuestionLoc();
CFG.cpp 1435 auto *CO = cast<ConditionalOperator>(Child);
1442 assert(!CO->getType()->getAsCXXRecordDecl() || CO->isGLValue() ||
1446 findConstructionContexts(Layer, CO->getLHS());
1447 findConstructionContexts(Layer, CO->getRHS());
  /src/libexec/getty/
gettytab.h 151 #define CO gettyflags[6].value
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonSplitDouble.cpp 617 auto CO = MachineOperand::CreateReg(R, Op.isDef(), Op.isImplicit(), isKill,
620 NewI->addOperand(CO);
  /src/external/gpl2/rcs/include/
conf.h 218 #define CO "/usr/bin/co" /* name of 'co' program */
  /src/external/apache2/llvm/dist/clang/lib/Sema/
AnalysisBasedWarnings.cpp 881 const ConditionalOperator *CO = cast<ConditionalOperator>(Term);
884 Range = CO->getCond()->getSourceRange();
886 CreateIfFixit(S, CO, CO->getTrueExpr(), CO->getFalseExpr(),
SemaExpr.cpp 18145 auto *CO = cast<ConditionalOperator>(E);
18146 ExprResult LHS = Rebuild(CO->getLHS());
18149 ExprResult RHS = Rebuild(CO->getRHS());
18155 LHS = CO->getLHS();
18157 RHS = CO->getRHS();
18158 return S.ActOnConditionalOp(CO->getQuestionLoc(), CO->getColonLoc(),
18159 CO->getCond(), LHS.get(), RHS.get());
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
NewGVN.cpp 989 auto *CO = getCopyOf(V);
990 return CO && isa<PHINode>(CO);
  /src/external/gpl3/binutils/dist/gas/config/
bfin-parse.h 179 CO = 380, /* CO */
357 #define CO 380
bfin-parse.c 663 CO = 380, /* CO */
841 #define CO 380
1051 YYSYMBOL_CO = 125, /* CO */
1620 "NS", "S", "CO", "SCO", "TH", "TL", "BP", "BREV", "X", "Z", "M", "MMOD",
6614 case 238: /* sco: CO */
  /src/external/gpl3/binutils.old/dist/gas/config/
bfin-parse.h 179 CO = 380, /* CO */
357 #define CO 380
bfin-parse.c 663 CO = 380, /* CO */
841 #define CO 380
1051 YYSYMBOL_CO = 125, /* CO */
1620 "NS", "S", "CO", "SCO", "TH", "TL", "BP", "BREV", "X", "Z", "M", "MMOD",
6614 case 238: /* sco: CO */
  /src/external/apache2/llvm/dist/clang/lib/AST/
ItaniumMangle.cpp 2434 // ::= co # ~
2435 case OO_Tilde: Out << "co"; break;
4717 const ConditionalOperator *CO = cast<ConditionalOperator>(E);
4719 mangleExpression(CO->getCond());
4720 mangleExpression(CO->getLHS(), Arity);
4721 mangleExpression(CO->getRHS(), Arity);
  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
BugReporter.cpp 1381 const auto *CO = cast<ConditionalOperator>(S);
1382 return CO->getCond() == Cond ||
1383 CO->getLHS() == Cond ||
1384 CO->getRHS() == Cond;
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ValueTracking.cpp 3188 ConstantExpr *CO = dyn_cast<ConstantExpr>(V);
3190 if (CO && CO == BaseVal) {
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
CodeViewDebug.cpp 2050 ClassOptions CO = ClassOptions::None;
2056 CO |= ClassOptions::HasUniqueName;
2063 CO |= ClassOptions::Nested;
2071 CO |= ClassOptions::Scoped;
2076 CO |= ClassOptions::Scoped;
2082 return CO;
2106 ClassOptions CO = getCommonClassOptions(Ty);
2111 CO |= ClassOptions::ForwardReference;
2131 EnumRecord ER(EnumeratorCount, CO, FTI, FullName, Ty->getIdentifier(),
2287 ClassOptions CO
    [all...]

Completed in 99 milliseconds