Searched refs:lookahead (Results 1 - 13 of 13) sorted by relevance

/illumos-gate/usr/src/boot/lib/libz/
H A Ddeflate.c338 if (wrap == 2 || (wrap == 1 && s->status != INIT_STATE) || s->lookahead)
364 while (s->lookahead >= MIN_MATCH) {
366 n = s->lookahead - (MIN_MATCH-1);
376 s->lookahead = MIN_MATCH-1;
379 s->strstart += s->lookahead;
381 s->insert = s->lookahead;
382 s->lookahead = 0;
899 if (strm->avail_in != 0 || s->lookahead != 0 ||
933 if (s->lookahead == 0) {
1122 s->lookahead
[all...]
H A Ddeflate.h161 uInt lookahead; /* number of valid bytes ahead in window */ member in struct:internal_state
282 /* Minimum amount of lookahead, except at the end of the input file.
/illumos-gate/usr/src/lib/libbc/libc/stdio/common/
H A Ddoscan.c204 char numbuf[64], inchar, lookahead; local
310 lookahead = locgetc();
314 lookahead = *np;
316 lookahead = EOF;
319 if ( isxdigit(lookahead) )
325 locungetc(lookahead);
330 c = lookahead;
336 locungetc(lookahead);
/illumos-gate/usr/src/uts/common/zmod/
H A Ddeflate.c119 /* Minimum amount of lookahead, except at the end of the input file.
350 * s->lookahead stays null, so s->ins_h will be recomputed at the next
792 if (strm->avail_in != 0 || s->lookahead != 0 ||
1008 s->lookahead = 0;
1027 * OUT assertion: the match length is not greater than s->lookahead.
1076 if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
1078 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
1086 * for insufficient lookahead only occur occasionally for performance
1089 * However the length of the match is limited to the lookahead, s
[all...]
H A Ddeflate.h158 uInt lookahead; /* number of valid bytes ahead in window */ member in struct:internal_state
272 /* Minimum amount of lookahead, except at the end of the input file.
/illumos-gate/usr/src/uts/common/io/ppp/spppcomp/
H A Dzlib.c434 uInt lookahead; /* number of valid bytes ahead in window */ member in struct:deflate_state
573 * Minimum amount of lookahead, except at the end of the input file.
748 * Minimum amount of lookahead, except at the end of the input file.
982 * two bytes). s->lookahead stays null, so s->ins_h will be
1195 if (strm->avail_in != 0 || s->lookahead != 0 ||
1427 s->lookahead = 0;
1444 * OUT assertion: the match length is not greater than s->lookahead.
1502 if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
1505 "need lookahead");
[all...]
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppdump/
H A Dzlib.c279 uInt lookahead; /* number of valid bytes ahead in window */ member in struct:deflate_state
398 /* Minimum amount of lookahead, except at the end of the input file.
487 /* Minimum amount of lookahead, except at the end of the input file.
782 if (strm->avail_in != 0 || state->lookahead != 0 ||
918 s->lookahead = 0;
978 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
998 * lookahead only every 4th comparison; the 128th check will be made
1001 * to check more often for insufficient lookahead.
1036 /* We check for insufficient lookahead only every 8th comparison;
1100 * Fill the window when the lookahead become
[all...]
/illumos-gate/usr/src/common/lzma/
H A DTypes.h181 void LookToRead_CreateVTable(CLookToRead *p, int lookahead);
/illumos-gate/usr/src/lib/libc/port/stdio/
H A Ddoscan.c605 int c, base, inchar, lookahead; local
754 lookahead = readchar(iop, chcount);
755 if (isxdigit(lookahead)) {
759 (void) locungetc((*chcount), lookahead);
763 c = lookahead;
768 (void) locungetc((*chcount), lookahead);
/illumos-gate/usr/src/lib/libsqlite/tool/
H A Dlemon.c408 int lookahead; /* Value of the lookahead token */ member in struct:acttab::__anon4057
409 int action; /* Action to take on the given lookahead */
412 int mnLookahead; /* Minimum aLookahead[].lookahead */
414 int mxLookahead; /* Maximum aLookahead[].lookahead */
426 #define acttab_yylookahead(X,N) ((X)->aAction[N].lookahead)
448 void acttab_action(acttab *p, int lookahead, int action){ argument
459 p->mxLookahead = lookahead;
460 p->mnLookahead = lookahead;
463 if( p->mxLookahead<lookahead )
[all...]
/illumos-gate/usr/src/cmd/abi/spectrans/spec2trace/
H A Dparseproto.y629 static int lookahead(int);
772 if (lookahead('*')) {
778 if (lookahead('.')) {
779 if (lookahead('.'))
876 if (lookahead('/'))
883 /* lookahead - does next character match 'c'? */
886 lookahead(int c) {
/illumos-gate/usr/src/lib/libshell/common/edit/
H A Demacs.c139 #define lookahead editb.e_lookahead macro
156 A large lookahead helps when the user is inserting
683 lookahead = 0;
1323 if ((lookahead)&&(option != FINAL))
H A Dvi.c156 #define lookahead editb.e_lookahead /* characters in buffer */ macro
157 #define previous editb.e_lbuf /* lookahead buffer */
998 if(!lookahead)
1004 if(lookahead)
1821 if(lookahead>0)
1823 p = previous[lookahead-1];

Completed in 103 milliseconds