| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/ |
| H A D | regcomp.c | 252 #define MORE() (p->next < p->end) macro 254 #define SEE(c) (MORE() && PEEK() == (c)) 255 #define SEETWO(a, b) (MORE() && MORE2() && PEEK() == (a) && PEEK2() == (b)) 264 #define MUSTSEE(c, e) (REQUIRE(MORE() && PEEK() == (c), e)) 265 #define MUSTEAT(c, e) (REQUIRE(MORE() && GETNEXT() == (c), e)) 266 #define MUSTNOTSEE(c, e) (REQUIRE(!MORE() || PEEK() != (c), e)) 404 while (MORE() && (c = PEEK()) != '|' && c != stop) in p_ere() 429 assert(!MORE() || SEE(stop)); in p_ere() 446 assert(MORE()); /* caller should have ensured this */ in p_ere_exp() 452 REQUIRE(MORE(), REG_EPAREN); in p_ere_exp() [all …]
|
| /netbsd-src/external/bsd/nvi/dist/regex/ |
| H A D | regcomp.c | 147 #define MORE() (p->next < p->end) macro 149 #define SEE(c) (MORE() && PEEK() == (c)) 150 #define SEETWO(a, b) (MORE() && MORE2() && PEEK() == (a) && PEEK2() == (b)) 159 #define MUSTSEE(c, e) (REQUIRE(MORE() && PEEK() == (c), e)) 160 #define MUSTEAT(c, e) (REQUIRE(MORE() && GETNEXT() == (c), e)) 161 #define MUSTNOTSEE(c, e) (REQUIRE(!MORE() || PEEK() != (c), e)) 324 while (MORE() && (c = PEEK()) != '|' && c != stop) in p_ere() 349 assert(!MORE() || SEE(stop)); in p_ere() 366 assert(MORE()); /* caller should have ensured this */ in p_ere_exp() 372 (void)REQUIRE(MORE(), REG_EPAREN); in p_ere_exp() [all …]
|
| /netbsd-src/lib/libc/regex/ |
| H A D | regcomp.c | 196 #define MORE() (p->next < p->end) macro 198 #define SEE(c) (MORE() && PEEK() == (c)) 199 #define SEETWO(a, b) (MORE() && MORE2() && PEEK() == (a) && PEEK2() == (b)) 211 #define MUSTSEE(c, e) (REQUIRE(MORE() && PEEK() == (c), e)) 212 #define MUSTEAT(c, e) (REQUIRE(MORE() && GETNEXT() == (c), e)) 213 #define MUSTNOTSEE(c, e) (REQUIRE(!MORE() || PEEK() != (c), e)) 458 assert(MORE()); /* caller should have ensured this */ in p_ere_exp() 467 (void)REQUIRE(MORE(), REG_EPAREN); in p_ere_exp() 524 (void)REQUIRE(MORE(), REG_EESCAPE); in p_ere_exp() 624 if (!MORE()) in p_ere_exp() [all...] |
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/ |
| H A D | InstructionSelect.cpp | 113 MachineOptimizationRemarkEmitter MORE(MF, /*MBFI=*/nullptr); in runOnMachineFunction() local 125 reportGISelFailure(MF, TPC, MORE, "gisel-select", in runOnMachineFunction() 189 reportGISelFailure(MF, TPC, MORE, "gisel-select", "cannot select", MI); in runOnMachineFunction() 253 reportGISelFailure(MF, TPC, MORE, "gisel-select", in runOnMachineFunction() 261 MF, TPC, MORE, "gisel-select", in runOnMachineFunction() 272 reportGISelFailure(MF, TPC, MORE, R); in runOnMachineFunction()
|
| H A D | Legalizer.cpp | 320 MachineOptimizationRemarkEmitter MORE(MF, /*MBFI=*/nullptr); in runOnMachineFunction() local 351 reportGISelFailure(MF, TPC, MORE, "gisel-legalize", in runOnMachineFunction() 362 reportGISelFailure(MF, TPC, MORE, R); in runOnMachineFunction() 373 reportGISelWarning(MF, TPC, MORE, R); in runOnMachineFunction()
|
| H A D | Utils.cpp | 229 MachineOptimizationRemarkEmitter &MORE, in reportGISelDiagnostic() argument 241 MORE.emit(R); in reportGISelDiagnostic() 245 MachineOptimizationRemarkEmitter &MORE, in reportGISelWarning() argument 247 reportGISelDiagnostic(DS_Warning, MF, TPC, MORE, R); in reportGISelWarning() 251 MachineOptimizationRemarkEmitter &MORE, in reportGISelFailure() argument 254 reportGISelDiagnostic(DS_Error, MF, TPC, MORE, R); in reportGISelFailure() 258 MachineOptimizationRemarkEmitter &MORE, in reportGISelFailure() argument 265 if (TPC.isGlobalISelAbortEnabled() || MORE.allowExtraAnalysis(PassName)) in reportGISelFailure() 267 reportGISelFailure(MF, TPC, MORE, R); in reportGISelFailure()
|
| H A D | Combiner.cpp | 115 MachineOptimizationRemarkEmitter MORE(MF, /*MBFI=*/nullptr); in combineMachineInstrs() local
|
| H A D | RegBankSelect.cpp | 96 MORE = std::make_unique<MachineOptimizationRemarkEmitter>(MF, MBFI); in init() 688 reportGISelFailure(MF, *TPC, *MORE, "gisel-regbankselect", in runOnMachineFunction() 727 reportGISelFailure(MF, *TPC, *MORE, "gisel-regbankselect", in runOnMachineFunction()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| H A D | MachineFunctionPass.cpp | 79 MachineOptimizationRemarkEmitter MORE(MF, nullptr); in runOnFunction() local 80 MORE.emit([&]() { in runOnFunction()
|
| H A D | MachineOutliner.cpp | 462 MachineOptimizationRemarkEmitter MORE(*(C.getMF()), nullptr); in emitNotOutliningCheaperRemark() local 463 MORE.emit([&]() { in emitNotOutliningCheaperRemark() 490 MachineOptimizationRemarkEmitter MORE(*OF.MF, nullptr); in emitOutlinedFunctionRemark() local 510 MORE.emit(R); in emitOutlinedFunctionRemark() 958 MachineOptimizationRemarkEmitter MORE(*MF, nullptr); in emitInstrCountChangedRemark() local 959 MORE.emit([&]() { in emitInstrCountChangedRemark()
|
| H A D | EarlyIfConversion.cpp | 885 MachineOptimizationRemarkEmitter MORE(*MBB.getParent(), nullptr); in shouldConvertIf() local 898 MORE.emit([&]() { in shouldConvertIf() 984 MORE.emit([&]() { in shouldConvertIf() 1000 MORE.emit([&]() { in shouldConvertIf()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/ |
| H A D | Utils.h | 150 MachineOptimizationRemarkEmitter &MORE, 154 MachineOptimizationRemarkEmitter &MORE, 161 MachineOptimizationRemarkEmitter &MORE,
|
| H A D | RegBankSelect.h | 505 std::unique_ptr<MachineOptimizationRemarkEmitter> MORE; variable
|
| /netbsd-src/sys/arch/macppc/dev/ |
| H A D | am79c950reg.h | 75 #define MORE 0x10 /* More than one retry needed */ macro
|
| H A D | am79c950.c | 498 if (xmtfs & MORE) in mc_tint()
|
| /netbsd-src/sys/arch/mac68k/dev/ |
| H A D | if_mcreg.h | 75 #define MORE 0x10 /* More than one retry needed */ macro
|
| H A D | if_mc.c | 499 if (xmtfs & MORE) in mc_tint()
|
| /netbsd-src/games/rogue/ |
| H A D | inventory.c | 316 MORE: in id_com() 339 goto MORE; in id_com()
|
| /netbsd-src/usr.bin/msgs/ |
| H A D | msgs.c | 105 #define MORE "More? [ynq]" macro 543 ask(lct? MORE : (msg==lastmsg? NOMORE : NEXT)); in main()
|
| /netbsd-src/games/fortune/datfiles/ |
| H A D | unamerican-o.real | 43 NO MORE BULLSHIT
|
| /netbsd-src/external/gpl2/xcvs/dist/contrib/ |
| H A D | intro.doc | 109 MORE INFORMATION
|
| /netbsd-src/external/gpl2/groff/dist/ |
| H A D | MANIFEST | 36 MORE.STUFF Useful stuff in other packages.
|
| H A D | ChangeLog.117 | 313 * MORE.STUFF: Updated, using a patch from Kees Zeelenberg 501 * MORE.STUFF: Updated. 1148 * MORE.STUFF: Added more info about deroff. 1534 * MORE.STUFF: Added info about deroff for djgpp. 1697 * MORE.STUFF: Added info about djgpp port of grap. 1937 * MORE.STUFF: Added info about Meta-tbl. 2137 * MORE.STUFF: Added info about unroff and troffcvt.
|
| H A D | ChangeLog.116 | 10 * MORE.STUFF: Added info about port to DOS. 363 * MORE.STUFF: Added Robert Marks's utilities. 835 * MORE.STUFF: Added website of bell labs and info about plot2dev. 1086 * NEWS, MORE.STUFF: Updated.
|
| /netbsd-src/external/bsd/pdisk/dist/ |
| H A D | README | 122 The intel map can contain NO MORE THAN FOUR PRIMARY PARTITIONS.
|