Home
last modified time | relevance | path

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

/trueos/lib/libz/
HDdeflate.c338 if (wrap == 2 || (wrap == 1 && s->status != INIT_STATE) || s->lookahead)
364 while (s->lookahead >= MIN_MATCH) {
366 n = s->lookahead - (MIN_MATCH-1);
376 s->lookahead = MIN_MATCH-1;
379 s->strstart += s->lookahead;
381 s->insert = s->lookahead;
382 s->lookahead = 0;
899 if (strm->avail_in != 0 || s->lookahead != 0 ||
933 if (s->lookahead == 0) {
1122 s->lookahead = 0;
[all …]
HDdeflate.h161 uInt lookahead; /* number of valid bytes ahead in window */ member
HDChangeLog525 - Clear bytes after deflate lookahead to avoid use of uninitialized data
1378 - give enough lookahead for PARTIAL_FLUSH
/trueos/sys/cddl/contrib/opensolaris/uts/common/zmod/
HDdeflate.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 …]
HDdeflate.h158 uInt lookahead; /* number of valid bytes ahead in window */ member
/trueos/contrib/subversion/subversion/libsvn_repos/
HDreporter.c136 path_info_t *lookahead; member
348 if (!relevant(b->lookahead, prefix, plen)) in fetch_path_info()
357 relpath = b->lookahead->path + (*prefix ? plen + 1 : 0); in fetch_path_info()
369 *info = b->lookahead; in fetch_path_info()
371 SVN_ERR(read_path_info(&b->lookahead, b->reader, subpool)); in fetch_path_info()
385 while (relevant(b->lookahead, prefix, plen)) in skip_path_info()
387 svn_pool_destroy(b->lookahead->pool); in skip_path_info()
389 SVN_ERR(read_path_info(&b->lookahead, b->reader, subpool)); in skip_path_info()
398 return relevant(b->lookahead, prefix, strlen(prefix)); in any_path_info()
1425 SVN_ERR(read_path_info(&b->lookahead, b->reader, subpool)); in finish_report()
[all …]
/trueos/sys/net/
HDzlib.c415 uInt lookahead; /* number of valid bytes ahead in window */ member
1058 if (strm->avail_in != 0 || s->lookahead != 0 ||
1258 s->lookahead = 0;
1323 if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
1414 if ((uInt)best_len <= s->lookahead) return best_len;
1415 return s->lookahead;
1466 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart);
1469 if (more == 0 && s->strstart == 0 && s->lookahead == 0) {
1528 n = read_buf(s->strm, (charf *)s->window + s->strstart + s->lookahead,
1530 s->lookahead += n;
[all …]
/trueos/sys/kern/
HDkern_timeout.c399 uint32_t lookahead; in callout_process() local
415 lookahead = (SBT_1S / 16); in callout_process()
417 lookahead = (SBT_1S / 8); in callout_process()
419 lookahead = (SBT_1S / 2); in callout_process()
421 first += (lookahead / 2); in callout_process()
422 last += lookahead; in callout_process()
/trueos/contrib/gcc/
HDhaifa-sched.c2164 int lookahead = 0; in choose_ready() local
2167 lookahead = targetm.sched.first_cycle_multipass_dfa_lookahead (); in choose_ready()
2168 if (lookahead <= 0 || SCHED_GROUP_P (ready_element (ready, 0))) in choose_ready()
2177 if (cached_first_cycle_multipass_dfa_lookahead != lookahead) in choose_ready()
2179 cached_first_cycle_multipass_dfa_lookahead = lookahead; in choose_ready()
2182 max_lookahead_tries *= lookahead; in choose_ready()
HDdwarf2out.c4845 tree lookahead = immediate_origin; in block_ultimate_origin() local
4849 ret_val = lookahead; in block_ultimate_origin()
4850 lookahead = (TREE_CODE (ret_val) == BLOCK in block_ultimate_origin()
4853 while (lookahead != NULL && lookahead != ret_val); in block_ultimate_origin()
HDChangeLog-200111143 (struct cpp_reader): Remove old lookahead stuff, add lookaheads.
11154 (skip_rest_of_line): Remove lookahead stuff.
11173 (cpp_get_token): Remove lookahead stuff. Update.
HDFSFChangeLog.105410 (stmts, stmt_or_label): Use new member to avoid lexical lookahead hack.
/trueos/sys/dev/if_ndis/
HDif_ndis.c1157 ndis_rxeof_eth(adapter, ctx, addr, hdr, hdrlen, lookahead, lookaheadlen, pktlen) in ndis_rxeof_eth() argument
1163 void *lookahead;
1187 m_copyback(m, hdrlen, lookaheadlen, lookahead);
/trueos/contrib/byacc/
HDbtyaccpar.skel750 yyerror_loc_range[0] = yylloc; /* lookahead position is error start position */
778 /* lookahead position is error end position */
/trueos/contrib/binutils/binutils/
HDChangeLog-02031782 call to rules that need no lookahead. Check for no lookahead.
/trueos/contrib/gcc/doc/
HDcppinternals.texi160 responsible for issues like directive handling, returning lookahead
/trueos/contrib/gcc/cp/
HDChangeLog-2003279 an assignment-expression is present by doing one-token lookahead.
HDChangeLog-20042268 lookahead instead of backtracking. Move some code to avoid a
HDChangeLog-2000555 * spew.c (frob_opname): Use nth_token for lookahead.