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

  /src/common/dist/zlib/
deflate.c 244 * Fill the window when the lookahead becomes insufficient.
245 * Updates strstart and lookahead.
247 * IN assertion: lookahead < MIN_LOOKAHEAD
258 Assert(s->lookahead < MIN_LOOKAHEAD, "already enough lookahead");
261 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart);
265 if (more == 0 && s->strstart == 0 && s->lookahead == 0) {
270 * strstart == 0 && lookahead == 1 (input done a byte at time)
276 /* If the window is almost full and there is insufficient lookahead,
293 * strstart <= WSIZE+MAX_DIST-1 && lookahead <= MIN_LOOKAHEAD - 1 &
    [all...]
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/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/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...]
  /src/usr.bin/make/unit-tests/
varmod-match.mk 306 # parsed without lookahead.
323 # except those elements that can be parsed without lookahead.
  /src/sys/external/bsd/acpica/dist/compiler/
dtcompilerparser.tab.c 1239 /* The lookahead symbol. */
1242 /* The semantic value of the lookahead symbol. */
1303 /* Lookahead token as an internal (translated) token number. */
1428 lookahead token if we need one and don't already have one. */
1430 /* First try to decide what to do without reference to lookahead token. */
1435 /* Not known => get a lookahead token if don't already have one. */
1437 /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */
1474 /* Shift the lookahead token. */
1671 /* If just tried and failed to reuse lookahead token after an
1688 /* Else will try to reuse lookahead token after shifting the erro
    [all...]
dtparser.tab.c 1321 /* The lookahead symbol. */
1324 /* The semantic value of the lookahead symbol. */
1385 /* Lookahead token as an internal (translated) token number. */
1510 lookahead token if we need one and don't already have one. */
1512 /* First try to decide what to do without reference to lookahead token. */
1517 /* Not known => get a lookahead token if don't already have one. */
1519 /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */
1556 /* Shift the lookahead token. */
1866 /* If just tried and failed to reuse lookahead token after an
1883 /* Else will try to reuse lookahead token after shifting the erro
    [all...]
prparser.tab.c 1324 /* The lookahead symbol. */
1327 /* The semantic value of the lookahead symbol. */
1388 /* Lookahead token as an internal (translated) token number. */
1513 lookahead token if we need one and don't already have one. */
1515 /* First try to decide what to do without reference to lookahead token. */
1520 /* Not known => get a lookahead token if don't already have one. */
1522 /* YYCHAR is either YYEMPTY or YYEOF or a valid lookahead symbol. */
1559 /* Shift the lookahead token. */
1876 /* If just tried and failed to reuse lookahead token after an
1893 /* Else will try to reuse lookahead token after shifting the erro
    [all...]

Completed in 54 milliseconds