| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | regcomp.c | 246 #define MORE() (p->end - p->next > 0) macro 248 #define SEE(c) (MORE() && PEEK() == (c)) 258 #define MUSTSEE(c, e) (REQUIRE(MORE() && PEEK() == (c), e)) 259 #define MUSTEAT(c, e) (REQUIRE(MORE() && GETNEXT() == (c), e)) 260 #define MUSTNOTSEE(c, e) (REQUIRE(!MORE() || PEEK() != (c), e)) 398 while (MORE() && (c = PEEK()) != '|' && c != stop) in p_ere() 423 assert(!MORE() || SEE(stop)); in p_ere() 438 assert(MORE()); /* caller should have ensured this */ in p_ere_exp() 444 REQUIRE(MORE(), REG_EPAREN); in p_ere_exp() 500 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 | 167 MachineOptimizationRemarkEmitter MORE(MF, /*MBFI=*/nullptr); in selectMachineFunction() local 168 ISel->MORE = &MORE; in selectMachineFunction() 180 reportGISelFailure(MF, TPC, MORE, "gisel-select", in selectMachineFunction() 218 reportGISelFailure(MF, TPC, MORE, "gisel-select", "cannot select", in selectMachineFunction() 282 reportGISelFailure(MF, TPC, MORE, "gisel-select", in selectMachineFunction() 291 MF, TPC, MORE, "gisel-select", in selectMachineFunction() 302 reportGISelFailure(MF, TPC, MORE, R); in selectMachineFunction()
|
| H A D | Legalizer.cpp | 318 MachineOptimizationRemarkEmitter MORE(MF, /*MBFI=*/nullptr); in runOnMachineFunction() local 351 reportGISelFailure(MF, TPC, MORE, "gisel-legalize", in runOnMachineFunction() 363 reportGISelWarning(MF, TPC, MORE, R); in runOnMachineFunction()
|
| H A D | Utils.cpp | 238 MachineOptimizationRemarkEmitter &MORE, in reportGISelDiagnostic() argument 250 MORE.emit(R); in reportGISelDiagnostic() 254 MachineOptimizationRemarkEmitter &MORE, in reportGISelWarning() argument 256 reportGISelDiagnostic(DS_Warning, MF, TPC, MORE, R); in reportGISelWarning() 260 MachineOptimizationRemarkEmitter &MORE, in reportGISelFailure() argument 263 reportGISelDiagnostic(DS_Error, MF, TPC, MORE, R); in reportGISelFailure() 267 MachineOptimizationRemarkEmitter &MORE, in reportGISelFailure() argument 274 if (TPC.isGlobalISelAbortEnabled() || MORE.allowExtraAnalysis(PassName)) in reportGISelFailure() 276 reportGISelFailure(MF, TPC, MORE, R); in reportGISelFailure()
|
| 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 | Combiner.cpp | 270 MachineOptimizationRemarkEmitter MORE(MF, /*MBFI=*/nullptr); in combineMachineInstrs() local
|
| H A D | LoadStoreOpt.cpp | 420 MachineOptimizationRemarkEmitter MORE(*MF, nullptr); in doSingleStoreMerge() local 421 MORE.emit([&]() { in doSingleStoreMerge()
|
| /freebsd/crypto/krb5/src/util/ss/ |
| H A D | pager.c | 18 static char MORE[] = "more"; variable 99 _ss_pager_name = MORE; in ss_page_stdin()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | MachineFunctionPass.cpp | 116 MachineOptimizationRemarkEmitter MORE(MF, nullptr); in runOnFunction() local 117 MORE.emit([&]() { in runOnFunction()
|
| H A D | MachineOutliner.cpp | 600 MachineOptimizationRemarkEmitter MORE(*(C.getMF()), nullptr); in emitNotOutliningCheaperRemark() local 601 MORE.emit([&]() { in emitNotOutliningCheaperRemark() 628 MachineOptimizationRemarkEmitter MORE(*OF.MF, nullptr); in emitOutlinedFunctionRemark() local 648 MORE.emit(R); in emitOutlinedFunctionRemark() 1322 MachineOptimizationRemarkEmitter MORE(*MF, nullptr); in emitInstrCountChangedRemark() local 1323 MORE.emit([&]() { in emitInstrCountChangedRemark()
|
| H A D | MIRSampleProfile.cpp | 152 MachineOptimizationRemarkEmitter *MORE) { in setInitVals() argument 157 ORE = MORE; in setInitVals()
|
| H A D | EarlyIfConversion.cpp | 970 MachineOptimizationRemarkEmitter MORE(*MBB.getParent(), nullptr); in shouldConvertIf() local 983 MORE.emit([&]() { in shouldConvertIf() 1068 MORE.emit([&]() { in shouldConvertIf() 1084 MORE.emit([&]() { in shouldConvertIf()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/ |
| H A D | InstructionSelector.h | 41 MachineOptimizationRemarkEmitter *MORE = nullptr; variable
|
| H A D | Utils.h | 159 MachineOptimizationRemarkEmitter &MORE, 164 MachineOptimizationRemarkEmitter &MORE, 172 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 | 1148 reportGISelFailure(const_cast<MachineFunction &>(*MF), *TPC, *MORE, in selectAddr()
|
| /freebsd/contrib/tcsh/ |
| H A D | Ported | 317 OS : MORE/bsd 4.3+
|