| /trueos/lib/libz/ |
| HD | deflate.c | 338 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 …]
|
| HD | deflate.h | 161 uInt lookahead; /* number of valid bytes ahead in window */ member
|
| HD | ChangeLog | 525 - 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/ |
| HD | deflate.c | 792 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 …]
|
| HD | deflate.h | 158 uInt lookahead; /* number of valid bytes ahead in window */ member
|
| /trueos/contrib/subversion/subversion/libsvn_repos/ |
| HD | reporter.c | 136 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/ |
| HD | zlib.c | 415 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/ |
| HD | kern_timeout.c | 399 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/ |
| HD | haifa-sched.c | 2164 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()
|
| HD | dwarf2out.c | 4845 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()
|
| HD | ChangeLog-2001 | 11143 (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.
|
| HD | FSFChangeLog.10 | 5410 (stmts, stmt_or_label): Use new member to avoid lexical lookahead hack.
|
| /trueos/sys/dev/if_ndis/ |
| HD | if_ndis.c | 1157 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/ |
| HD | btyaccpar.skel | 750 yyerror_loc_range[0] = yylloc; /* lookahead position is error start position */ 778 /* lookahead position is error end position */
|
| /trueos/contrib/binutils/binutils/ |
| HD | ChangeLog-0203 | 1782 call to rules that need no lookahead. Check for no lookahead.
|
| /trueos/contrib/gcc/doc/ |
| HD | cppinternals.texi | 160 responsible for issues like directive handling, returning lookahead
|
| /trueos/contrib/gcc/cp/ |
| HD | ChangeLog-2003 | 279 an assignment-expression is present by doing one-token lookahead.
|
| HD | ChangeLog-2004 | 2268 lookahead instead of backtracking. Move some code to avoid a
|
| HD | ChangeLog-2000 | 555 * spew.c (frob_opname): Use nth_token for lookahead.
|