| /openbsd-src/lib/libc/regex/ |
| H A D | regcomp.c | 110 #define MORE() (p->end - p->next > 0) macro 112 #define SEE(c) (MORE() && PEEK() == (c)) 247 while (MORE() && (c = PEEK()) != '|' && c != stop) in p_ere() 272 assert(!MORE() || SEE(stop)); in p_ere() 288 assert(MORE()); /* caller should have ensured this */ in p_ere_exp() 294 REQUIRE(MORE(), REG_EPAREN); in p_ere_exp() 307 REQUIRE(MORE() && GETNEXT() == ')', REG_EPAREN); in p_ere_exp() 338 REQUIRE(MORE(), REG_EESCAPE); in p_ere_exp() 343 REQUIRE(!MORE() || !isdigit((uch)PEEK()), REG_BADRPT); in p_ere_exp() 352 if (!MORE()) in p_ere_exp() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/Support/ |
| H A D | regcomp.c | 252 #define MORE() (p->end - p->next > 0) macro 254 #define SEE(c) (MORE() && PEEK() == (c)) 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() 508 REQUIRE(MORE(), REG_EESCAPE); in p_ere_exp() [all …]
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/GlobalISel/ |
| H A D | InstructionSelect.cpp | 110 MachineOptimizationRemarkEmitter MORE(MF, /*MBFI=*/nullptr); in runOnMachineFunction() local 122 reportGISelFailure(MF, TPC, MORE, "gisel-select", in runOnMachineFunction() 195 reportGISelFailure(MF, TPC, MORE, "gisel-select", "cannot select", MI); in runOnMachineFunction() 271 reportGISelFailure(MF, TPC, MORE, "gisel-select", in runOnMachineFunction() 279 MF, TPC, MORE, "gisel-select", in runOnMachineFunction() 290 reportGISelFailure(MF, TPC, MORE, R); in runOnMachineFunction()
|
| H A D | Legalizer.cpp | 315 MachineOptimizationRemarkEmitter MORE(MF, /*MBFI=*/nullptr); in runOnMachineFunction() local 346 reportGISelFailure(MF, TPC, MORE, "gisel-legalize", in runOnMachineFunction() 357 reportGISelFailure(MF, TPC, MORE, R); in runOnMachineFunction() 368 reportGISelWarning(MF, TPC, MORE, R); in runOnMachineFunction()
|
| H A D | Utils.cpp | 247 MachineOptimizationRemarkEmitter &MORE, in reportGISelDiagnostic() argument 259 MORE.emit(R); in reportGISelDiagnostic() 263 MachineOptimizationRemarkEmitter &MORE, in reportGISelWarning() argument 265 reportGISelDiagnostic(DS_Warning, MF, TPC, MORE, R); in reportGISelWarning() 269 MachineOptimizationRemarkEmitter &MORE, in reportGISelFailure() argument 272 reportGISelDiagnostic(DS_Error, MF, TPC, MORE, R); in reportGISelFailure() 276 MachineOptimizationRemarkEmitter &MORE, in reportGISelFailure() argument 283 if (TPC.isGlobalISelAbortEnabled() || MORE.allowExtraAnalysis(PassName)) in reportGISelFailure() 285 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 | 95 MORE = std::make_unique<MachineOptimizationRemarkEmitter>(MF, MBFI); in init() 707 reportGISelFailure(MF, *TPC, *MORE, "gisel-regbankselect", in assignRegisterBanks() 721 reportGISelFailure(MF, *TPC, *MORE, "gisel-regbankselect", in checkFunctionIsLegal()
|
| H A D | LoadStoreOpt.cpp | 406 MachineOptimizationRemarkEmitter MORE(*MF, nullptr); in doSingleStoreMerge() local 407 MORE.emit([&]() { in doSingleStoreMerge()
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/ |
| H A D | MachineFunctionPass.cpp | 98 MachineOptimizationRemarkEmitter MORE(MF, nullptr); in runOnFunction() local 99 MORE.emit([&]() { in runOnFunction()
|
| H A D | MachineOutliner.cpp | 477 MachineOptimizationRemarkEmitter MORE(*(C.getMF()), nullptr); in emitNotOutliningCheaperRemark() local 478 MORE.emit([&]() { in emitNotOutliningCheaperRemark() 505 MachineOptimizationRemarkEmitter MORE(*OF.MF, nullptr); in emitOutlinedFunctionRemark() local 525 MORE.emit(R); in emitOutlinedFunctionRemark() 985 MachineOptimizationRemarkEmitter MORE(*MF, nullptr); in emitInstrCountChangedRemark() local 986 MORE.emit([&]() { in emitInstrCountChangedRemark()
|
| H A D | MIRSampleProfile.cpp | 125 MachineOptimizationRemarkEmitter *MORE) { in setInitVals() argument 130 ORE = MORE; in setInitVals()
|
| H A D | EarlyIfConversion.cpp | 889 MachineOptimizationRemarkEmitter MORE(*MBB.getParent(), nullptr); in shouldConvertIf() local 902 MORE.emit([&]() { in shouldConvertIf() 988 MORE.emit([&]() { in shouldConvertIf() 1004 MORE.emit([&]() { in shouldConvertIf()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/GlobalISel/ |
| H A D | Utils.h | 154 MachineOptimizationRemarkEmitter &MORE, 158 MachineOptimizationRemarkEmitter &MORE, 165 MachineOptimizationRemarkEmitter &MORE,
|
| H A D | RegBankSelect.h | 505 std::unique_ptr<MachineOptimizationRemarkEmitter> MORE; variable
|
| /openbsd-src/gnu/usr.bin/perl/ext/re/ |
| H A D | re.pm | 88 $flags{More} = $flags{MORE} = 698 =item MORE
|
| /openbsd-src/sys/arch/macppc/dev/ |
| H A D | if_mc.c | 128 #define MORE 0x10 /* More than one retry needed */ macro 757 if (xmtfs & MORE) in mc_tint()
|
| /openbsd-src/gnu/usr.bin/cvs/contrib/ |
| H A D | intro.doc | 109 MORE INFORMATION
|
| /openbsd-src/usr.bin/file/magdir/ |
| H A D | jpeg | 122 # Here things get sticky. We can do ONE MORE marker segment with
|
| H A D | msdos | 328 #COMP.cOM MORE.COm
|
| /openbsd-src/gnu/lib/libreadline/ |
| H A D | CHANGELOG | 122 [THERE ARE NO MORE #ifdef SHELL LINES IN THE C SOURCE FILES.] 129 [THERE ARE NO MORE #ifdef SHELL LINES IN ANY OF THE SOURCE FILES.]
|
| /openbsd-src/regress/bin/ksh/ |
| H A D | regress.t | 677 MORE=[abc] 681 echo "<$MORE>"
|
| /openbsd-src/gnu/usr.bin/perl/pod/ |
| H A D | perldsc.pod | 715 =head1 MORE ELABORATE RECORDS 718 =head2 Declaration of MORE ELABORATE RECORDS
|
| H A D | perlhack.pod | 1141 =head1 MORE READING FOR GUTS HACKERS
|
| /openbsd-src/usr.bin/vi/docs/ |
| H A D | changelog | 613 default and scrolling commands. MORE EX PARSER CHANGES.
|
| /openbsd-src/usr.sbin/amd/doc/ |
| H A D | amdref.texinfo | 592 mt Xinu MORE/bsd. Contributed by Jan-Simon Pendry @t{<jsp@@doc.ic.ac.uk>}
|