/illumos-gate/usr/src/contrib/zlib/ |
H A D | deflate.c | 429 if (wrap == 2 || (wrap == 1 && s->status != INIT_STATE) || s->lookahead) 455 while (s->lookahead >= MIN_MATCH) { 457 n = s->lookahead - (MIN_MATCH-1); 467 s->lookahead = MIN_MATCH-1; 470 s->strstart += s->lookahead; 472 s->insert = s->lookahead; 473 s->lookahead = 0; 494 len = s->strstart + s->lookahead; 498 zmemcpy(dictionary, s->window + s->strstart + s->lookahead - len, len); 634 if (strm->avail_in || (s->strstart - s->block_start) + s->lookahead) [all …]
|
H A D | deflate.h | 162 uInt lookahead; /* number of valid bytes ahead in window */ member
|
H A D | ChangeLog | 631 - Clear bytes after deflate lookahead to avoid use of uninitialized data 1484 - give enough lookahead for PARTIAL_FLUSH
|
/illumos-gate/usr/src/uts/common/fs/zfs/lua/ |
H A D | llex.c | 162 ls->lookahead.token = TK_EOS; /* no look-ahead token */ in luaX_setinput() 515 if (ls->lookahead.token != TK_EOS) { /* is there a look-ahead token? */ in luaX_next() 516 ls->t = ls->lookahead; /* use this one */ in luaX_next() 517 ls->lookahead.token = TK_EOS; /* and discharge it */ in luaX_next() 525 lua_assert(ls->lookahead.token == TK_EOS); in luaX_lookahead() 526 ls->lookahead.token = llex(ls, &ls->lookahead.seminfo); in luaX_lookahead() 527 return ls->lookahead.token; in luaX_lookahead()
|
H A D | llex.h | 56 Token lookahead; /* look ahead token */ member
|
/illumos-gate/usr/src/uts/common/io/ppp/spppcomp/ |
H A D | zlib.c | 432 uInt lookahead; /* number of valid bytes ahead in window */ member 1193 if (strm->avail_in != 0 || s->lookahead != 0 || 1425 s->lookahead = 0; 1500 if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead; 1606 if ((uInt)best_len <= s->lookahead) 1608 return (s->lookahead); 1672 return (len <= s->lookahead ? len : s->lookahead); 1728 more = (unsigned)(s->window_size -(ulg)s->lookahead - 1732 if (more == 0 && s->strstart == 0 && s->lookahead == 0) { 1810 Assert(s->strstart + s->lookahead + more <= s->window_size, [all …]
|
/illumos-gate/usr/src/cmd/cmd-inet/usr.bin/pppdump/ |
H A D | zlib.c | 279 uInt lookahead; /* number of valid bytes ahead in window */ member 782 if (strm->avail_in != 0 || state->lookahead != 0 || 918 s->lookahead = 0; 1118 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart); 1121 if (more == 0 && s->strstart == 0 && s->lookahead == 0) { 1181 n = read_buf(s->strm, (charf *)s->window + s->strstart + s->lookahead, 1183 s->lookahead += n; 1186 if (s->lookahead >= MIN_MATCH) { 1197 } while (s->lookahead < MIN_LOOKAHEAD && s->strm->avail_in != 0); 1241 if (s->lookahead < MIN_LOOKAHEAD) { [all …]
|
/illumos-gate/usr/src/lib/libc/port/stdio/ |
H A D | doscan.c | 604 int c, base, inchar, lookahead; in number() local 753 lookahead = readchar(iop, chcount); in number() 754 if (isxdigit(lookahead)) { in number() 758 (void) locungetc((*chcount), lookahead); in number() 762 c = lookahead; in number() 767 (void) locungetc((*chcount), lookahead); in number()
|
/illumos-gate/usr/src/lib/libsqlite/tool/ |
H A D | lemon.c | 405 int lookahead; /* Value of the lookahead token */ member 423 #define acttab_yylookahead(X,N) ((X)->aAction[N].lookahead) 445 void acttab_action(acttab *p, int lookahead, int action){ in acttab_action() argument 456 p->mxLookahead = lookahead; in acttab_action() 457 p->mnLookahead = lookahead; in acttab_action() 460 if( p->mxLookahead<lookahead ) p->mxLookahead = lookahead; in acttab_action() 461 if( p->mnLookahead>lookahead ){ in acttab_action() 462 p->mnLookahead = lookahead; in acttab_action() 466 p->aLookahead[p->nLookahead].lookahead = lookahead; in acttab_action() 497 p->aAction[i].lookahead = -1; in acttab_insert() [all …]
|
/illumos-gate/usr/src/cmd/abi/spectrans/spec2trace/ |
H A D | parseproto.y | 627 static int lookahead(int); 770 if (lookahead('*')) { in yylex() 777 if (lookahead('.')) { in yylex() 778 if (lookahead('.')) in yylex() 876 if (lookahead('/')) in skipcomment() 886 lookahead(int c) { in lookahead() function
|
/illumos-gate/usr/src/pkg/transforms/ |
H A D | publish | 38 # then the negative lookahead assertion in the regex will fail, and we
|
/illumos-gate/usr/src/common/lzma/ |
H A D | Types.h | 181 void LookToRead_CreateVTable(CLookToRead *p, int lookahead);
|
/illumos-gate/usr/src/contrib/ast/src/cmd/ksh93/edit/ |
H A D | vi.c | 151 #define lookahead editb.e_lookahead /* characters in buffer */ macro 1049 if(!lookahead) in cntlmode() 1055 if(lookahead) in cntlmode() 1891 if(lookahead>0) in refresh() 1893 p = previous[lookahead-1]; in refresh()
|
H A D | emacs.c | 141 #define lookahead editb.e_lookahead macro 717 lookahead = 0; in ed_emacsread() 1391 if ((lookahead)&&(option != FINAL)) in draw()
|
/illumos-gate/usr/src/cmd/spell/ |
H A D | local | 289 lookahead
|
/illumos-gate/usr/src/tools/smatch/src/smatch_data/ |
H A D | kernel.implicit_dependencies.no_structs | 243 …gs_state)->ftop, (struct swregs_state)->changed, (struct swregs_state)->lookahead, (struct swregs_… 244 …gs_state)->ftop, (struct swregs_state)->changed, (struct swregs_state)->lookahead, (struct swregs_… 266 …gs_state)->ftop, (struct swregs_state)->changed, (struct swregs_state)->lookahead, (struct swregs_… 267 …gs_state)->ftop, (struct swregs_state)->changed, (struct swregs_state)->lookahead, (struct swregs_… 268 …gs_state)->ftop, (struct swregs_state)->changed, (struct swregs_state)->lookahead, (struct swregs_… 269 …gs_state)->ftop, (struct swregs_state)->changed, (struct swregs_state)->lookahead, (struct swregs_… 276 …gs_state)->ftop, (struct swregs_state)->changed, (struct swregs_state)->lookahead, (struct swregs_… 277 …gs_state)->ftop, (struct swregs_state)->changed, (struct swregs_state)->lookahead, (struct swregs_… 278 …gs_state)->ftop, (struct swregs_state)->changed, (struct swregs_state)->lookahead, (struct swregs_… 279 …gs_state)->ftop, (struct swregs_state)->changed, (struct swregs_state)->lookahead, (struct swregs_… [all …]
|
/illumos-gate/usr/src/contrib/ast/src/cmd/INIT/ |
H A D | ratz.c | 1368 uInt lookahead; /* number of valid bytes ahead in window */ member
|