HomeSort by: relevance | last modified time | path
    Searched defs:MORE (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/
RegBankSelect.h 18 /// would use more global analysis and do crazier thing like duplicating
101 /// require more compile time.
123 /// \post isSplit() == false ; no more splitting should be required.
143 /// the iterator to that point. I.e., no more splitting will
163 /// I.e., no more splitting will occur.
406 "We would need more MI to switch to Insert");
505 std::unique_ptr<MachineOptimizationRemarkEmitter> MORE;
  /src/usr.bin/msgs/
msgs.c 58 * p print message, turn on 'pipe thru more' mode
59 * P print message, turn off 'pipe thru more' mode
105 #define MORE "More? [ynq]"
106 #define NOMORE "(No more) [q] ?"
222 case 'p': /* pipe thru 'more' during long msgs */
531 printf("(%d%slines) ", lct, seensubj? " " : " more ");
543 ask(lct? MORE : (msg==lastmsg? NOMORE : NEXT));
  /src/sys/arch/mac68k/dev/
if_mcreg.h 75 #define MORE 0x10 /* More than one retry needed */
  /src/sys/arch/macppc/dev/
am79c950reg.h 75 #define MORE 0x10 /* More than one retry needed */
  /src/external/apache2/llvm/dist/llvm/lib/Support/
regcomp.c 252 #define MORE() (p->next < p->end)
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)
429 assert(!MORE() || SEE(stop));
446 assert(MORE()); /* caller should have ensured this */
452 REQUIRE(MORE(), REG_EPAREN)
    [all...]
  /src/external/bsd/nvi/dist/regex/
regcomp.c 147 #define MORE() (p->next < p->end)
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)
349 assert(!MORE() || SEE(stop));
366 assert(MORE()); /* caller should have ensured this */
372 (void)REQUIRE(MORE(), REG_EPAREN)
    [all...]
  /src/lib/libc/regex/
regcomp.c 196 #define MORE() (p->next < p->end)
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 */
467 (void)REQUIRE(MORE(), REG_EPAREN);
524 (void)REQUIRE(MORE(), REG_EESCAPE);
624 if (!MORE())
    [all...]

Completed in 53 milliseconds