Home
last modified time | relevance | path

Searched refs:lookahead (Results 1 – 9 of 9) sorted by relevance

/f-stack/freebsd/contrib/zlib/
H A Ddeflate.c437 s->insert = s->lookahead;
438 s->lookahead = 0;
1213 s->lookahead = 0;
1282 if ((uInt)nice_match > s->lookahead) nice_match = (int)s->lookahead;
1379 return s->lookahead;
1438 return (uInt)len <= s->lookahead ? (uInt)len : s->lookahead;
1538 s->lookahead += n;
1910 s->lookahead--;
2029 s->lookahead--;
2037 s->lookahead--;
[all …]
H A Ddeflate.h164 uInt lookahead; /* number of valid bytes ahead in window */ member
H A DChangeLog568 - Clear bytes after deflate lookahead to avoid use of uninitialized data
1421 - give enough lookahead for PARTIAL_FLUSH
/f-stack/freebsd/contrib/openzfs/module/lua/
H A Dllex.c161 ls->lookahead.token = TK_EOS; /* no look-ahead token */ in luaX_setinput()
517 if (ls->lookahead.token != TK_EOS) { /* is there a look-ahead token? */ in luaX_next()
518 ls->t = ls->lookahead; /* use this one */ in luaX_next()
519 ls->lookahead.token = TK_EOS; /* and discharge it */ in luaX_next()
527 lua_assert(ls->lookahead.token == TK_EOS); in luaX_lookahead()
528 ls->lookahead.token = llex(ls, &ls->lookahead.seminfo); in luaX_lookahead()
529 return ls->lookahead.token; in luaX_lookahead()
H A Dllex.h60 Token lookahead; /* look ahead token */ member
/f-stack/app/redis-5.0.5/deps/lua/src/
H A Dllex.c143 ls->lookahead.token = TK_EOS; /* no look-ahead token */ in luaX_setinput()
450 if (ls->lookahead.token != TK_EOS) { /* is there a look-ahead token? */ in luaX_next()
451 ls->t = ls->lookahead; /* use this one */ in luaX_next()
452 ls->lookahead.token = TK_EOS; /* and discharge it */ in luaX_next()
460 lua_assert(ls->lookahead.token == TK_EOS); in luaX_lookahead()
461 ls->lookahead.token = llex(ls, &ls->lookahead.seminfo); in luaX_lookahead()
H A Dllex.h60 Token lookahead; /* look ahead token */ member
H A Dlparser.c517 if (ls->lookahead.token != '=') /* expression? */ in constructor()
/f-stack/freebsd/kern/
H A Dkern_timeout.c422 uint32_t lookahead; in callout_process() local
438 lookahead = (SBT_1S / 16); in callout_process()
440 lookahead = (SBT_1S / 8); in callout_process()
442 lookahead = (SBT_1S / 2); in callout_process()
444 first += (lookahead / 2); in callout_process()
445 last += lookahead; in callout_process()