Home
last modified time | relevance | path

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

12

/netbsd/src/common/dist/zlib/
Ddeflate.c258 Assert(s->lookahead < MIN_LOOKAHEAD, "already enough lookahead"); in fill_window()
261 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart); in fill_window()
265 if (more == 0 && s->strstart == 0 && s->lookahead == 0) { in fill_window()
305 n = read_buf(s->strm, s->window + s->strstart + s->lookahead, more); in fill_window()
306 s->lookahead += n; in fill_window()
309 if (s->lookahead + s->insert >= MIN_MATCH) { in fill_window()
324 if (s->lookahead + s->insert < MIN_MATCH) in fill_window()
332 } while (s->lookahead < MIN_LOOKAHEAD && s->strm->avail_in != 0); in fill_window()
342 ulg curr = s->strstart + (ulg)(s->lookahead); in fill_window()
564 if (wrap == 2 || (wrap == 1 && s->status != INIT_STATE) || s->lookahead) in deflateSetDictionary()
[all …]
Ddeflate.h170 uInt lookahead; /* number of valid bytes ahead in window */ member
DChangeLog671 - Clear bytes after deflate lookahead to avoid use of uninitialized data
1524 - give enough lookahead for PARTIAL_FLUSH
/netbsd/src/external/cddl/osnet/dist/uts/common/zmod/
Ddeflate.c792 if (strm->avail_in != 0 || s->lookahead != 0 ||
1008 s->lookahead = 0;
1076 if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
1172 if ((uInt)best_len <= s->lookahead) return (uInt)best_len;
1173 return s->lookahead;
1231 return (uInt)len <= s->lookahead ? (uInt)len : s->lookahead;
1281 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart);
1285 if (more == 0 && s->strstart == 0 && s->lookahead == 0) {
1348 n = read_buf(s->strm, s->window + s->strstart + s->lookahead, more);
1349 s->lookahead += n;
[all …]
Ddeflate.h158 uInt lookahead; /* number of valid bytes ahead in window */ member
/netbsd/src/external/gpl3/gdb/dist/gdb/
Dmacroexp.c904 shared_macro_buffer *lookahead, in get_next_token_for_substitution() argument
914 *token = *lookahead; in get_next_token_for_substitution()
917 *lookahead_valid = get_token (lookahead, replacement_list); in get_next_token_for_substitution()
949 shared_macro_buffer lookahead; in substitute_args() local
967 lookahead_valid = get_token (&lookahead, &replacement_list); in substitute_args()
980 &lookahead, in substitute_args()
1044 arg = find_parameter (&lookahead, is_varargs, va_arg_name, in substitute_args()
1055 lookahead_valid = get_token (&lookahead, &replacement_list); in substitute_args()
1064 && lookahead.len == 2 in substitute_args()
1065 && lookahead.text[0] == '#' in substitute_args()
[all …]
/netbsd/src/external/mit/lua/dist/src/
Dllex.c180 ls->lookahead.token = TK_EOS; /* no look-ahead token */ in luaX_setinput()
602 if (ls->lookahead.token != TK_EOS) { /* is there a look-ahead token? */ in luaX_next()
603 ls->t = ls->lookahead; /* use this one */ in luaX_next()
604 ls->lookahead.token = TK_EOS; /* and discharge it */ in luaX_next()
612 lua_assert(ls->lookahead.token == TK_EOS); in luaX_lookahead()
613 ls->lookahead.token = llex(ls, &ls->lookahead.seminfo); in luaX_lookahead()
614 return ls->lookahead.token; in luaX_lookahead()
Dllex.h77 Token lookahead; /* look ahead token */ member
/netbsd/src/sys/net/
Dzlib.c431 uInt lookahead; /* number of valid bytes ahead in window */ member
1119 if (strm->avail_in != 0 || s->lookahead != 0 || in deflate()
1327 s->lookahead = 0; in lm_init()
1392 if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead; in longest_match()
1483 if ((uInt)best_len <= s->lookahead) return (uInt)best_len; in longest_match()
1484 return s->lookahead; in longest_match()
1541 return len <= s->lookahead ? len : s->lookahead;
1592 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart); in fill_window()
1595 if (more == 0 && s->strstart == 0 && s->lookahead == 0) { in fill_window()
1655 n = read_buf(s->strm, s->window + s->strstart + s->lookahead, more); in fill_window()
[all …]
/netbsd/src/usr.bin/calendar/
Dcalendar.c77 static unsigned short lookahead = 1; variable
155 atodays(ch, optarg, &lookahead); in main()
254 offset = tp->tm_wday == 5 ? lookahead + weekend : lookahead; in settime()
/netbsd/src/external/gpl3/gcc/dist/gcc/config/frv/
Dfrv.opt209 msched-lookahead=
211 Change the amount of scheduler lookahead.
Dfrv.md189 ;; flexibility, removing the need for things like multipass lookahead.
/netbsd/src/external/ibm-public/postfix/dist/proto/
Dstop.spell-proto-html152 lookahead
/netbsd/src/external/lgpl3/gmp/dist/demos/expr/
Dexpr.c148 lookahead (struct mpexpr_parse_t *p, int prefix) in lookahead() function
325 if (! lookahead (p, prefix)) \
/netbsd/src/external/bsd/byacc/dist/
Dbtyaccpar.skel781 yyerror_loc_range[1] = yylloc; /* lookahead position is error start position */
809 /* lookahead position is error end position */
/netbsd/src/external/gpl3/gcc/dist/gcc/
Dparams.opt944 Hardware autoprefetcher scheduler model control flag. Number of lookahead cycles the model looks i…
966 -param=selsched-max-lookahead=
968 The maximum size of the lookahead window of selective scheduling.
/netbsd/src/external/gpl3/binutils/dist/binutils/
DChangeLog-02031782 call to rules that need no lookahead. Check for no lookahead.
/netbsd/src/external/gpl3/gcc/dist/gcc/doc/
Dcppinternals.info138 responsible for issues like directive handling, returning lookahead
Dcppinternals.texi161 responsible for issues like directive handling, returning lookahead
/netbsd/src/external/gpl3/gcc/dist/gcc/cp/
Dparser.cc25972 cp_token *lookahead = cp_lexer_peek_nth_token (parser->lexer, 2); in cp_parser_class_specifier_1() local
25977 = (lookahead->type == CPP_KEYWORD in cp_parser_class_specifier_1()
25978 && keyword_begins_type_specifier (lookahead->keyword)); in cp_parser_class_specifier_1()
DChangeLog-2003279 an assignment-expression is present by doing one-token lookahead.
DChangeLog-20042268 lookahead instead of backtracking. Move some code to avoid a
DChangeLog-2000555 * spew.c (frob_opname): Use nth_token for lookahead.
/netbsd/src/external/lgpl3/gmp/dist/doc/
Dgmp.info-15439 character of lookahead is used and characters are read while they
5452 character of lookahead when parsing. Although clearly it could look at
/netbsd/src/external/gpl3/gcc/dist/libstdc++-v3/
DChangeLog-201592 Copy the captured content for lookahead, so that the backreferences

12