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

  /src/usr.bin/calendar/
calendar.c 77 static unsigned short lookahead = 1; variable in typeref:typename:unsigned short
155 atodays(ch, optarg, &lookahead);
254 offset = tp->tm_wday == 5 ? lookahead + weekend : lookahead;
  /src/common/dist/zlib/
deflate.h 170 uInt lookahead; /* number of valid bytes ahead in window */ member in struct:internal_state
293 /* Minimum amount of lookahead, except at the end of the input file.
  /src/sys/net/
zlib.c 431 uInt lookahead; /* number of valid bytes ahead in window */ member in struct:deflate_state
545 /* Minimum amount of lookahead, except at the end of the input file.
718 /* Minimum amount of lookahead, except at the end of the input file.
927 * s->lookahead stays null, so s->ins_h will be recomputed at the next
1119 if (strm->avail_in != 0 || s->lookahead != 0 ||
1327 s->lookahead = 0;
1343 * OUT assertion: the match length is not greater than s->lookahead.
1392 if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
1394 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
    [all...]

Completed in 15 milliseconds