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

  /src/games/hack/
hack.terminfo.c 79 int CO, LI; /* used in pri.c and whatis.c */
88 LI = lines;
89 if (CO < COLNO || LI < ROWNO + 2)
305 while (cury <= LI - 2) {
  /src/games/worms/
worms.c 203 int CO, LI, last, bottom, ch, number, trail;
379 LI = LINES;
381 if (CO == 0 || LI == 0) {
383 errx(1, "screen must be a rectangle, not (%dx%d)", CO, LI);
388 * that a LI * CO * sizeof(short *) cannot overflow an int
390 if (CO >= (int)(INT_MAX / (2 * sizeof(short *)) / LI)) {
392 errx(1, "screen (%dx%d) too large for worms", CO, LI);
395 /* now known that LI*CO cannot overflow an int => also not a long */
397 if (LI < 3 || CO < 3 || LI * CO < 40)
    [all...]
  /src/games/backgammon/common_source/
fancy.c 76 static int LI; /* number of lines */
665 for (i = curr; i < LI; i++)
671 while (curr < LI - 1) {
705 if (curr == LI - 1)
721 LI = tgetnum("li"); /* get number of lines */
722 if (LI == -1)
723 LI = 12;
751 if (LI < 24 || CO < 72 || !(CL && UP && ND)) {
756 linect = (int *) calloc(LI + 1, sizeof(int))
    [all...]
  /src/sys/arch/powerpc/powerpc/
db_disasm.c 867 int LI;
868 LI = extract_field(instr, 31 - 29, 24);
870 LI = LI << 8;
871 LI = LI >> 6;
872 LI += loc;
873 db_printsym(LI, DB_STGY_ANY, db_printf);

Completed in 13 milliseconds