Home
last modified time | relevance | path

Searched refs:MORE (Results 1 – 25 of 45) sorted by relevance

12

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Support/
H A Dregcomp.c252 #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 Dregcomp.c147 #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 Dregcomp.c196 #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 DInstructionSelect.cpp113 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 DLegalizer.cpp320 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 DUtils.cpp229 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 DCombiner.cpp115 MachineOptimizationRemarkEmitter MORE(MF, /*MBFI=*/nullptr); in combineMachineInstrs() local
H A DRegBankSelect.cpp96 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 DMachineFunctionPass.cpp79 MachineOptimizationRemarkEmitter MORE(MF, nullptr); in runOnFunction() local
80 MORE.emit([&]() { in runOnFunction()
H A DMachineOutliner.cpp462 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 DEarlyIfConversion.cpp885 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 DUtils.h150 MachineOptimizationRemarkEmitter &MORE,
154 MachineOptimizationRemarkEmitter &MORE,
161 MachineOptimizationRemarkEmitter &MORE,
H A DRegBankSelect.h505 std::unique_ptr<MachineOptimizationRemarkEmitter> MORE; variable
/netbsd-src/sys/arch/macppc/dev/
H A Dam79c950reg.h75 #define MORE 0x10 /* More than one retry needed */ macro
H A Dam79c950.c498 if (xmtfs & MORE) in mc_tint()
/netbsd-src/sys/arch/mac68k/dev/
H A Dif_mcreg.h75 #define MORE 0x10 /* More than one retry needed */ macro
H A Dif_mc.c499 if (xmtfs & MORE) in mc_tint()
/netbsd-src/games/rogue/
H A Dinventory.c316 MORE: in id_com()
339 goto MORE; in id_com()
/netbsd-src/usr.bin/msgs/
H A Dmsgs.c105 #define MORE "More? [ynq]" macro
543 ask(lct? MORE : (msg==lastmsg? NOMORE : NEXT)); in main()
/netbsd-src/games/fortune/datfiles/
H A Dunamerican-o.real43 NO MORE BULLSHIT
/netbsd-src/external/gpl2/xcvs/dist/contrib/
H A Dintro.doc109 MORE INFORMATION
/netbsd-src/external/gpl2/groff/dist/
H A DMANIFEST36 MORE.STUFF Useful stuff in other packages.
H A DChangeLog.117313 * 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 DChangeLog.11610 * 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 DREADME122 The intel map can contain NO MORE THAN FOUR PRIMARY PARTITIONS.

12