/freebsd/contrib/llvm-project/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 …]
|
/freebsd/contrib/nvi/regex/ |
H A D | regcomp.c | 139 #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 D | regcomp.c | 172 #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 D | InstructionSelect.cpp | 110 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 D | Legalizer.cpp | 320 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 D | Utils.cpp | 254 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 D | Combiner.cpp | 139 MachineOptimizationRemarkEmitter MORE(MF, /*MBFI=*/nullptr); in combineMachineInstrs() local
|
H A D | RegBankSelect.cpp | 95 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 D | LoadStoreOpt.cpp | 424 MachineOptimizationRemarkEmitter MORE(*MF, nullptr); in doSingleStoreMerge() local 425 MORE.emit([&]() { in doSingleStoreMerge()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | MachineFunctionPass.cpp | 101 MachineOptimizationRemarkEmitter MORE(MF, nullptr); in runOnFunction() local 102 MORE.emit([&]() { in runOnFunction()
|
H A D | MachineOutliner.cpp | 532 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 D | MIRSampleProfile.cpp | 149 MachineOptimizationRemarkEmitter *MORE) { in setInitVals() argument 154 ORE = MORE; in setInitVals()
|
H A D | EarlyIfConversion.cpp | 917 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 D | sequencer.h | 84 MORE, enumerator
|
H A D | sequencer.c | 1604 ret = MORE; in seq_convertold()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/ |
H A D | Utils.h | 159 MachineOptimizationRemarkEmitter &MORE, 163 MachineOptimizationRemarkEmitter &MORE, 170 MachineOptimizationRemarkEmitter &MORE,
|
H A D | RegBankSelect.h | 505 std::unique_ptr<MachineOptimizationRemarkEmitter> MORE; variable
|
/freebsd/usr.bin/tr/tests/ |
H A D | regress.06.out | 9 Take it down and pass it around - NO MORE bottles of beer on the wall!!!
|
H A D | regress2.in | 9 Take it down and pass it around - NO MORE bottles of beer on the wall!!!
|
/freebsd/contrib/bmake/ |
H A D | import.sh | 7 PAGER=${PAGER:-${LESS:-${MORE:-more}}}
|
/freebsd/tools/regression/environ/ |
H A D | envtest.t | 239 run_test -b BLANK_ME -p MORE=vars -g FOO -g BLANK_ME -g AFTER_BLANK
|
/freebsd/usr.bin/msgs/ |
H A D | msgs.c | 89 #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 D | sm8350-sony-xperia-sagami.dtsi | 18 * 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 D | RISCVInstructionSelector.cpp | 1035 reportGISelFailure(const_cast<MachineFunction &>(*MF), *TPC, *MORE, in selectAddr()
|
/freebsd/contrib/tcsh/ |
H A D | Ported | 317 OS : MORE/bsd 4.3+
|