Searched refs:CO (Results 1 - 25 of 45) sorted by relevance

12

/openbsd-current/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/template/
H A Dnested2.C1 template <class T> class CO { class
8 class CO<T>::CI1::CI2 {};
/openbsd-current/games/hack/
H A Dhack.topl.c69 extern int CO;
145 if(tlx + strlen(s) > CO) putsym('\n');
157 if(tlx + 8 > CO) putsym('\n'), tly++;
225 n0 + strlen(toplines) + 3 < CO-8 && /* leave room for --More-- */
237 if(n0 >= CO){
240 for(n = 0; n < CO; n++) if(bp[n] == ' ')
242 if(!n0) for(n = 0; n < CO-1; n++)
244 if(!n0) n0 = CO-2;
275 if(curx == CO)
276 putsym('\n'); /* 1 <= curx <= CO; avoi
[all...]
H A Dhack.termcap.c76 int CO, LI; /* used in pri.c and whatis.c */ variable
109 CO = tgetnum("co");
111 if(CO < COLNO || LI < ROWNO+2)
H A Dhack.pager.c76 extern int CO, LI; /* usually COLNO and ROWNO+2 */
146 bufr = (char *) alloc((unsigned) CO);
147 while (fgets(bufr, CO, fp) && (!strip || *bufr == '\t') &&
306 lth = CO - maxlen - 2; /* Use full screen width */
/openbsd-current/regress/usr.bin/rcs/
H A DMakefile7 CO?= co macro
98 @${CO} -q -l test
109 @${CO} -q -l test
120 @${CO} -q -u test
126 @${CO} -q -l test
138 @${CO} -q -l test
158 @${CO} -q -l test
188 @RCSINIT=-l ${CO} -q test
212 @${CO} -q -l test
223 @${CO}
[all...]
/openbsd-current/games/worms/
H A Dworms.c175 int CO, LI, last, bottom, ch, length, number, trail; local
238 CO = COLS;
240 last = CO - 1;
242 if (!(ip = reallocarray(NULL, LI, CO * sizeof(short))) ||
249 ip += CO;
251 for (ip = ref[0], n = LI * CO; --n >= 0;)
282 for (x = CO; --x >= 0;) {
/openbsd-current/gnu/llvm/lldb/utils/TableGen/
H A DLLDBOptionDefEmitter.cpp166 for (CommandOption &CO : Options)
167 emitOption(CO, OS);
/openbsd-current/gnu/llvm/llvm/include/llvm/CodeGen/
H A DMachineOutliner.h129 /// CO respectively.
130 void setCallInfo(unsigned CID, unsigned CO) { argument
132 CallOverhead = CO;
/openbsd-current/gnu/usr.bin/binutils-2.17/gas/
H A Dbfin-parse.h156 CO = 382, enumerator in enum:yytokentype
331 #define CO 382 macro
/openbsd-current/libexec/getty/
H A Dgettytab.h136 #define CO gettyflags[6].value macro
H A Dmain.c535 if (CO)
/openbsd-current/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp2176 ClassOptions CO = ClassOptions::None; local
2182 CO |= ClassOptions::HasUniqueName;
2189 CO |= ClassOptions::Nested;
2197 CO |= ClassOptions::Scoped;
2202 CO |= ClassOptions::Scoped;
2208 return CO;
2232 ClassOptions CO = getCommonClassOptions(Ty); local
2237 CO |= ClassOptions::ForwardReference;
2258 EnumRecord ER(EnumeratorCount, CO, FTI, FullName, Ty->getIdentifier(),
2415 ClassOptions CO local
2429 ClassOptions CO = getCommonClassOptions(Ty); local
2479 ClassOptions CO = ClassOptions::Sealed | getCommonClassOptions(Ty); local
[all...]
/openbsd-current/gnu/usr.bin/perl/dist/Devel-PPPort/
H A DMakefile.PL278 $co .= <<'CO'
284 CO
/openbsd-current/gnu/llvm/clang/lib/Analysis/
H A DReachableCode.cpp577 const AbstractConditionalOperator *CO = local
579 return CO->getQuestionLoc();
H A DThreadSafetyCommon.cpp642 const AbstractConditionalOperator *CO, CallingContext *Ctx) {
643 auto *C = translate(CO->getCond(), Ctx);
644 auto *T = translate(CO->getTrueExpr(), Ctx);
645 auto *E = translate(CO->getFalseExpr(), Ctx);
641 translateAbstractConditionalOperator( const AbstractConditionalOperator *CO, CallingContext *Ctx) argument
H A DUninitializedValues.cpp325 if (const auto *CO = dyn_cast<ConditionalOperator>(E)) {
326 classify(CO->getTrueExpr(), C);
327 classify(CO->getFalseExpr(), C);
H A DPathDiagnostic.cpp609 const ConditionalOperator *CO,
611 return PathDiagnosticLocation(CO->getColonLoc(), SM, SingleLocK);
608 createConditionalColonLoc( const ConditionalOperator *CO, const SourceManager &SM) argument
/openbsd-current/gnu/llvm/llvm/tools/sancov/
H A Dsancov.cpp678 if (const auto *CO = dyn_cast<object::COFFObjectFile>(&O)) {
680 CO->export_directories()) {
688 Result.insert(CO->getImageBase() + RVA);
/openbsd-current/gnu/llvm/clang/lib/Sema/
H A DAnalysisBasedWarnings.cpp884 const ConditionalOperator *CO = cast<ConditionalOperator>(Term); local
887 Range = CO->getCond()->getSourceRange();
889 CreateIfFixit(S, CO, CO->getTrueExpr(), CO->getFalseExpr(),
H A DSemaLambda.cpp618 if (ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E)) {
619 if (EnumDecl *ED = findEnumForBlockReturn(CO->getTrueExpr()))
620 if (ED == findEnumForBlockReturn(CO->getFalseExpr()))
/openbsd-current/gnu/llvm/clang/lib/AST/
H A DJSONNodeDumper.cpp1424 for (const ExprWithCleanups::CleanupObject &CO : EWC->getObjects())
1425 if (auto *BD = CO.dyn_cast<BlockDecl *>()) {
1427 } else if (auto *CLE = CO.dyn_cast<CompoundLiteralExpr *>()) {
H A DExpr.cpp188 if (const ConditionalOperator *CO = dyn_cast<ConditionalOperator>(E))
189 return CO->getTrueExpr()->isKnownToHaveBooleanValue(Semantic) &&
190 CO->getFalseExpr()->isKnownToHaveBooleanValue(Semantic);
2544 if (auto *CO = dyn_cast<ConditionalOperator>(E))
2545 return CO->getTrueExpr()->isReadIfDiscardedInCPlusPlus11() &&
2546 CO->getFalseExpr()->isReadIfDiscardedInCPlusPlus11();
/openbsd-current/gnu/usr.bin/binutils-2.17/gas/config/
H A Dbfin-lex.l183 [cC][oO] return CO;
/openbsd-current/gnu/llvm/llvm/lib/Target/Hexagon/
H A DHexagonSplitDouble.cpp616 auto CO = MachineOperand::CreateReg(R, Op.isDef(), Op.isImplicit(), isKill, local
619 NewI->addOperand(CO);
/openbsd-current/gnu/llvm/clang/include/clang/Analysis/
H A DPathDiagnostic.h284 const ConditionalOperator *CO,

Completed in 298 milliseconds

12