Lines Matching refs:lookahead

63400   if (nice_match > s.lookahead) {
63401 nice_match = s.lookahead;
63456 if (best_len <= s.lookahead) {
63460 return s.lookahead;
63479 more = s.window_size - s.lookahead - s.strstart; // JS ints have 32 bit, block below not needed
63551 n = read_buf(s.strm, s.window, s.strstart + s.lookahead, more);
63552 s.lookahead += n;
63555 if (s.lookahead + s.insert >= MIN_MATCH) {
63572 if (s.lookahead + s.insert < MIN_MATCH) {
63581 } while (s.lookahead < MIN_LOOKAHEAD && s.strm.avail_in !== 0);
63645 if (s.lookahead <= 1) {
63654 if (s.lookahead === 0 && flush === Z_NO_FLUSH) {
63658 if (s.lookahead === 0) {
63667 s.strstart += s.lookahead;
63668 s.lookahead = 0;
63675 s.lookahead = s.strstart - max_start;
63754 if (s.lookahead < MIN_LOOKAHEAD) {
63757 if (s.lookahead < MIN_LOOKAHEAD && flush === Z_NO_FLUSH) {
63761 if (s.lookahead === 0) {
63775 if (s.lookahead >= MIN_MATCH) {
63804 s.lookahead -= s.match_length;
63811 && s.lookahead >= MIN_MATCH) {
63850 s.lookahead--;
63917 if (s.lookahead < MIN_LOOKAHEAD) {
63920 if (s.lookahead < MIN_LOOKAHEAD && flush === Z_NO_FLUSH) {
63924 if (s.lookahead === 0) {
63939 if (s.lookahead >= MIN_MATCH) {
63981 max_insert = s.strstart + s.lookahead - MIN_MATCH;
63995 s.lookahead -= s.prev_length - 1;
64039 s.lookahead--;
64050 s.lookahead--;
64115 if (s.lookahead <= MAX_MATCH) {
64118 if (s.lookahead <= MAX_MATCH && flush === Z_NO_FLUSH) {
64122 if (s.lookahead === 0) {
64133 if (s.lookahead >= MIN_MATCH && s.strstart > 0) {
64146 if (s.match_length > s.lookahead) {
64147 s.match_length = s.lookahead;
64160 s.lookahead -= s.match_length;
64169 s.lookahead--;
64225 if (s.lookahead === 0) {
64228 if (s.lookahead === 0) {
64245 s.lookahead--;
64346 s.lookahead = 0;
64457 this.lookahead = 0;
65011 …if (strm.avail_in !== 0 || s.lookahead !== 0 || flush !== Z_NO_FLUSH && s.status !== FINISH_STATE)…
65051 if (s.lookahead === 0) {
65157 if (wrap === 2 || wrap === 1 && s.status !== INIT_STATE || s.lookahead) {
65204 while (s.lookahead >= MIN_MATCH) {
65206 n = s.lookahead - (MIN_MATCH - 1);
65217 s.lookahead = MIN_MATCH - 1;
65221 s.strstart += s.lookahead;
65223 s.insert = s.lookahead;
65224 s.lookahead = 0;