Home
last modified time | relevance | path

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

12

/freebsd/contrib/llvm-project/llvm/lib/Support/
H A Dregcomp.c252 #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 …]
/freebsd/contrib/nvi/regex/
H A Dregcomp.c139 #define MORE() (p->next < p->end) macro
141 #define SEE(c) (MORE() && PEEK() == (c))
142 #define SEETWO(a, b) (MORE() && MORE2() && PEEK() == (a) && PEEK2() == (b))
151 #define MUSTSEE(c, e) (REQUIRE(MORE() && PEEK() == (c), e))
152 #define MUSTEAT(c, e) (REQUIRE(MORE() && GETNEXT() == (c), e))
153 #define MUSTNOTSEE(c, e) (REQUIRE(!MORE() || PEEK() != (c), e))
305 while (MORE() && (c = PEEK()) != '|' && c != stop) in p_ere()
330 assert(!MORE() || SEE(stop)); in p_ere()
346 assert(MORE()); /* caller should have ensured this */ in p_ere_exp()
352 (void)REQUIRE(MORE(), REG_EPAREN); in p_ere_exp()
[all …]
/freebsd/lib/libc/regex/
H A Dregcomp.c172 #define MORE() (p->end - p->next > 0) macro
174 #define SEE(c) (MORE() && PEEK() == (c))
187 #define MUSTSEE(c, e) (REQUIRE(MORE() && PEEK() == (c), e))
188 #define MUSTEAT(c, e) (REQUIRE(MORE() && GETNEXT() == (c), e))
189 #define MUSTNOTSEE(c, e) (REQUIRE(!MORE() || PEEK() != (c), e))
403 assert(MORE()); /* caller should have ensured this */ in p_ere_exp()
412 (void)REQUIRE(MORE(), REG_EPAREN); in p_ere_exp()
471 (void)REQUIRE(MORE(), REG_EESCAPE); in p_ere_exp()
543 (void)REQUIRE(!MORE() || !isdigit((uch)PEEK()), REG_BADRPT); in p_ere_exp()
555 if (!MORE()) in p_ere_exp()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DInstructionSelect.cpp110 MachineOptimizationRemarkEmitter MORE(MF, /*MBFI=*/nullptr); in runOnMachineFunction() local
111 ISel->setRemarkEmitter(&MORE); in runOnMachineFunction()
123 reportGISelFailure(MF, TPC, MORE, "gisel-select", in runOnMachineFunction()
196 reportGISelFailure(MF, TPC, MORE, "gisel-select", "cannot select", MI); in runOnMachineFunction()
272 reportGISelFailure(MF, TPC, MORE, "gisel-select", in runOnMachineFunction()
281 MF, TPC, MORE, "gisel-select", in runOnMachineFunction()
292 reportGISelFailure(MF, TPC, MORE, R); in runOnMachineFunction()
H A DLegalizer.cpp320 MachineOptimizationRemarkEmitter MORE(MF, /*MBFI=*/nullptr); in runOnMachineFunction() local
352 reportGISelFailure(MF, TPC, MORE, "gisel-legalize", in runOnMachineFunction()
364 reportGISelWarning(MF, TPC, MORE, R); in runOnMachineFunction()
H A DUtils.cpp254 MachineOptimizationRemarkEmitter &MORE, in reportGISelDiagnostic() argument
266 MORE.emit(R); in reportGISelDiagnostic()
270 MachineOptimizationRemarkEmitter &MORE, in reportGISelWarning() argument
272 reportGISelDiagnostic(DS_Warning, MF, TPC, MORE, R); in reportGISelWarning()
276 MachineOptimizationRemarkEmitter &MORE, in reportGISelFailure() argument
279 reportGISelDiagnostic(DS_Error, MF, TPC, MORE, R); in reportGISelFailure()
283 MachineOptimizationRemarkEmitter &MORE, in reportGISelFailure() argument
290 if (TPC.isGlobalISelAbortEnabled() || MORE.allowExtraAnalysis(PassName)) in reportGISelFailure()
292 reportGISelFailure(MF, TPC, MORE, R); in reportGISelFailure()
H A DCombiner.cpp139 MachineOptimizationRemarkEmitter MORE(MF, /*MBFI=*/nullptr); in combineMachineInstrs() local
H A DRegBankSelect.cpp95 MORE = std::make_unique<MachineOptimizationRemarkEmitter>(MF, MBFI); in init()
711 reportGISelFailure(MF, *TPC, *MORE, "gisel-regbankselect", in assignRegisterBanks()
725 reportGISelFailure(MF, *TPC, *MORE, "gisel-regbankselect", in checkFunctionIsLegal()
H A DLoadStoreOpt.cpp424 MachineOptimizationRemarkEmitter MORE(*MF, nullptr); in doSingleStoreMerge() local
425 MORE.emit([&]() { in doSingleStoreMerge()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineFunctionPass.cpp101 MachineOptimizationRemarkEmitter MORE(MF, nullptr); in runOnFunction() local
102 MORE.emit([&]() { in runOnFunction()
H A DMachineOutliner.cpp532 MachineOptimizationRemarkEmitter MORE(*(C.getMF()), nullptr); in emitNotOutliningCheaperRemark() local
533 MORE.emit([&]() { in emitNotOutliningCheaperRemark()
560 MachineOptimizationRemarkEmitter MORE(*OF.MF, nullptr); in emitOutlinedFunctionRemark() local
580 MORE.emit(R); in emitOutlinedFunctionRemark()
1112 MachineOptimizationRemarkEmitter MORE(*MF, nullptr); in emitInstrCountChangedRemark() local
1113 MORE.emit([&]() { in emitInstrCountChangedRemark()
H A DMIRSampleProfile.cpp149 MachineOptimizationRemarkEmitter *MORE) { in setInitVals() argument
154 ORE = MORE; in setInitVals()
H A DEarlyIfConversion.cpp917 MachineOptimizationRemarkEmitter MORE(*MBB.getParent(), nullptr); in shouldConvertIf() local
930 MORE.emit([&]() { in shouldConvertIf()
1015 MORE.emit([&]() { in shouldConvertIf()
1031 MORE.emit([&]() { in shouldConvertIf()
/freebsd/sys/dev/sound/midi/
H A Dsequencer.h84 MORE, enumerator
H A Dsequencer.c1604 ret = MORE; in seq_convertold()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DUtils.h159 MachineOptimizationRemarkEmitter &MORE,
163 MachineOptimizationRemarkEmitter &MORE,
170 MachineOptimizationRemarkEmitter &MORE,
H A DRegBankSelect.h505 std::unique_ptr<MachineOptimizationRemarkEmitter> MORE; variable
/freebsd/usr.bin/tr/tests/
H A Dregress.06.out9 Take it down and pass it around - NO MORE bottles of beer on the wall!!!
H A Dregress2.in9 Take it down and pass it around - NO MORE bottles of beer on the wall!!!
/freebsd/contrib/bmake/
H A Dimport.sh7 PAGER=${PAGER:-${LESS:-${MORE:-more}}}
/freebsd/tools/regression/environ/
H A Denvtest.t239 run_test -b BLANK_ME -p MORE=vars -g FOO -g BLANK_ME -g AFTER_BLANK
/freebsd/usr.bin/msgs/
H A Dmsgs.c89 #define MORE "More? [ynq]" macro
518 ask(lct? MORE : (msg==lastmsg? NOMORE : NEXT)); in main()
/freebsd/sys/contrib/device-tree/src/arm64/qcom/
H A Dsm8350-sony-xperia-sagami.dtsi18 * Yes, you are correct, there is NO MORE {msm,board,pmic}-id on SM8350!
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/GISel/
H A DRISCVInstructionSelector.cpp1035 reportGISelFailure(const_cast<MachineFunction &>(*MF), *TPC, *MORE, in selectAddr()
/freebsd/contrib/tcsh/
H A DPorted317 OS : MORE/bsd 4.3+

12