Home
last modified time | relevance | path

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

/freebsd/sys/contrib/zlib/
H A Ddeflate.c257 Assert(s->lookahead < MIN_LOOKAHEAD, "already enough lookahead"); in fill_window()
260 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart); in fill_window()
271 if (more == 0 && s->strstart == 0 && s->lookahead == 0) { in fill_window()
311 n = read_buf(s->strm, s->window + s->strstart + s->lookahead, more); in fill_window()
312 s->lookahead += n; in fill_window()
315 if (s->lookahead + s->insert >= MIN_MATCH) { in fill_window()
330 if (s->lookahead + s->insert < MIN_MATCH) in fill_window()
338 } while (s->lookahead < MIN_LOOKAHEAD && s->strm->avail_in != 0); in fill_window()
348 ulg curr = s->strstart + (ulg)(s->lookahead); in fill_window()
571 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 DChangeLog722 - Clear bytes after deflate lookahead to avoid use of uninitialized data
1575 - give enough lookahead for PARTIAL_FLUSH
/freebsd/sys/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
/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/dev/athk/ath10k/
H A Dsdio.c931 u32 *lookahead) in ath10k_sdio_mbox_read_int_status() argument
942 *lookahead = 0; in ath10k_sdio_mbox_read_int_status()
975 *lookahead = 0; in ath10k_sdio_mbox_read_int_status()
985 *lookahead = le32_to_cpu( in ath10k_sdio_mbox_read_int_status()
987 if (!*lookahead) in ath10k_sdio_mbox_read_int_status()
1000 u32 lookahead; in ath10k_sdio_mbox_proc_pending_irqs() local
1011 &lookahead); in ath10k_sdio_mbox_proc_pending_irqs()
1017 if (!host_int_status && !lookahead) { in ath10k_sdio_mbox_proc_pending_irqs()
1023 if (lookahead) { in ath10k_sdio_mbox_proc_pending_irqs()
1026 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.c311 memcpy((u8 *)next_lookaheads, report->lookahead, 4); in ath10k_htc_process_lookahead()
341 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 */