Home
last modified time | relevance | path

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

/freebsd/sys/contrib/zlib/
H A Ddeflate.c256 Assert(s->lookahead < MIN_LOOKAHEAD, "already enough lookahead"); in fill_window()
259 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart); in fill_window()
263 if (more == 0 && s->strstart == 0 && s->lookahead == 0) { in fill_window()
303 n = read_buf(s->strm, s->window + s->strstart + s->lookahead, more); in fill_window()
304 s->lookahead += n; in fill_window()
307 if (s->lookahead + s->insert >= MIN_MATCH) { in fill_window()
322 if (s->lookahead + s->insert < MIN_MATCH) in fill_window()
330 } while (s->lookahead < MIN_LOOKAHEAD && s->strm->avail_in != 0); in fill_window()
340 ulg curr = s->strstart + (ulg)(s->lookahead); in fill_window()
562 if (wrap == 2 || (wrap == 1 && s->status != INIT_STATE) || s->lookahead) in deflateSetDictionary()
[all …]
H A Ddeflate.h168 uInt lookahead; /* number of valid bytes ahead in window */ member
H A DChangeLog671 - Clear bytes after deflate lookahead to avoid use of uninitialized data
1524 - give enough lookahead for PARTIAL_FLUSH
/freebsd/contrib/lua/src/
H A Dllex.c172 ls->lookahead.token = TK_EOS; /* no look-ahead token */ in luaX_setinput()
567 if (ls->lookahead.token != TK_EOS) { /* is there a look-ahead token? */ in luaX_next()
568 ls->t = ls->lookahead; /* use this one */ in luaX_next()
569 ls->lookahead.token = TK_EOS; /* and discharge it */ in luaX_next()
577 lua_assert(ls->lookahead.token == TK_EOS); in luaX_lookahead()
578 ls->lookahead.token = llex(ls, &ls->lookahead.seminfo); in luaX_lookahead()
579 return ls->lookahead.token; in luaX_lookahead()
H A Dllex.h69 Token lookahead; /* look ahead token */ member
/freebsd/sys/contrib/openzfs/module/lua/
H A Dllex.c160 ls->lookahead.token = TK_EOS; /* no look-ahead token */ in luaX_setinput()
516 if (ls->lookahead.token != TK_EOS) { /* is there a look-ahead token? */ in luaX_next()
517 ls->t = ls->lookahead; /* use this one */ in luaX_next()
518 ls->lookahead.token = TK_EOS; /* and discharge it */ in luaX_next()
526 lua_assert(ls->lookahead.token == TK_EOS); in luaX_lookahead()
527 ls->lookahead.token = llex(ls, &ls->lookahead.seminfo); in luaX_lookahead()
528 return ls->lookahead.token; in luaX_lookahead()
H A Dllex.h59 Token lookahead; /* look ahead token */ member
/freebsd/sys/contrib/dev/athk/ath10k/
H A Dsdio.c930 u32 *lookahead) in ath10k_sdio_mbox_read_int_status() argument
941 *lookahead = 0; in ath10k_sdio_mbox_read_int_status()
974 *lookahead = 0; in ath10k_sdio_mbox_read_int_status()
984 *lookahead = le32_to_cpu( in ath10k_sdio_mbox_read_int_status()
986 if (!*lookahead) in ath10k_sdio_mbox_read_int_status()
999 u32 lookahead; in ath10k_sdio_mbox_proc_pending_irqs() local
1010 &lookahead); in ath10k_sdio_mbox_proc_pending_irqs()
1016 if (!host_int_status && !lookahead) { in ath10k_sdio_mbox_proc_pending_irqs()
1022 if (lookahead) { in ath10k_sdio_mbox_proc_pending_irqs()
1025 lookahead); in ath10k_sdio_mbox_proc_pending_irqs()
[all …]
H A Dhtc.h235 u8 lookahead[4]; member
243 u8 lookahead[4]; member
H A Dhtc.c307 memcpy((u8 *)next_lookaheads, report->lookahead, 4); in ath10k_htc_process_lookahead()
337 report->lookahead, 4); in ath10k_htc_process_lookahead_bundle()
/freebsd/sys/kern/
H A Dkern_timeout.c435 sbintime_t first, last, lookahead, max, tmp_max; in callout_process() local
451 lookahead = (SBT_1S / 16); in callout_process()
453 lookahead = (SBT_1S / 8); in callout_process()
455 lookahead = SBT_1S; in callout_process()
457 first += (lookahead / 2); in callout_process()
458 last += lookahead; in callout_process()
/freebsd/contrib/byacc/
H A Dbtyaccpar.skel781 yyerror_loc_range[1] = yylloc; /* lookahead position is error start position */
809 /* lookahead position is error end position */