Home
last modified time | relevance | path

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

12

/external/zlib/
Ddeflate.c816 if (strm->avail_in != 0 || s->lookahead != 0 ||
850 if (s->lookahead == 0) {
1038 s->lookahead = 0;
1106 if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
1202 if ((uInt)best_len <= s->lookahead) return (uInt)best_len;
1203 return s->lookahead;
1262 return (uInt)len <= s->lookahead ? (uInt)len : s->lookahead;
1314 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart);
1318 if (more == 0 && s->strstart == 0 && s->lookahead == 0) {
1380 n = read_buf(s->strm, s->window + s->strstart + s->lookahead, more);
[all …]
Ddeflate.h158 uInt lookahead; /* number of valid bytes ahead in window */ member
DChangeLog261 - Clear bytes after deflate lookahead to avoid use of uninitialized data
1114 - give enough lookahead for PARTIAL_FLUSH
/external/chromium/third_party/zlib/
Ddeflate.c786 if (strm->avail_in != 0 || s->lookahead != 0 ||
1002 s->lookahead = 0;
1070 if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
1166 if ((uInt)best_len <= s->lookahead) return (uInt)best_len;
1167 return s->lookahead;
1225 return (uInt)len <= s->lookahead ? (uInt)len : s->lookahead;
1275 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart);
1279 if (more == 0 && s->strstart == 0 && s->lookahead == 0) {
1342 n = read_buf(s->strm, s->window + s->strstart + s->lookahead, more);
1343 s->lookahead += n;
[all …]
Ddeflate.h158 uInt lookahead; /* number of valid bytes ahead in window */ member
/external/qemu/distrib/zlib-1.2.3/
Ddeflate.c786 if (strm->avail_in != 0 || s->lookahead != 0 ||
1002 s->lookahead = 0;
1070 if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
1166 if ((uInt)best_len <= s->lookahead) return (uInt)best_len;
1167 return s->lookahead;
1225 return (uInt)len <= s->lookahead ? (uInt)len : s->lookahead;
1275 more = (unsigned)(s->window_size -(ulg)s->lookahead -(ulg)s->strstart);
1279 if (more == 0 && s->strstart == 0 && s->lookahead == 0) {
1342 n = read_buf(s->strm, s->window + s->strstart + s->lookahead, more);
1343 s->lookahead += n;
[all …]
Ddeflate.h158 uInt lookahead; /* number of valid bytes ahead in window */ member
/external/chromium/third_party/icu/source/tools/genrb/
Dparse.c79 static struct Lookahead lookahead[MAX_LOOKAHEAD + 1]; variable
125lookahead[i].type = getNextToken(buffer, &lookahead[i].value, &lookahead[i].line, &lookahead[i].co… in initLookahead()
141 ustr_deinit(&lookahead[i].value); in cleanupLookahead()
142 ustr_deinit(&lookahead[i].comment); in cleanupLookahead()
153 result = lookahead[lookaheadPosition].type; in getToken()
157 *tokenValue = &lookahead[lookaheadPosition].value; in getToken()
162 *linenumber = lookahead[lookaheadPosition].line; in getToken()
167 ustr_cpy(comment, &(lookahead[lookaheadPosition].comment), status); in getToken()
172 ustr_setlen(&lookahead[i].comment, 0, status); in getToken()
173 ustr_setlen(&lookahead[i].value, 0, status); in getToken()
[all …]
/external/icu4c/tools/genrb/
Dparse.c79 static struct Lookahead lookahead[MAX_LOOKAHEAD + 1]; variable
125lookahead[i].type = getNextToken(buffer, &lookahead[i].value, &lookahead[i].line, &lookahead[i].co… in initLookahead()
141 ustr_deinit(&lookahead[i].value); in cleanupLookahead()
142 ustr_deinit(&lookahead[i].comment); in cleanupLookahead()
153 result = lookahead[lookaheadPosition].type; in getToken()
157 *tokenValue = &lookahead[lookaheadPosition].value; in getToken()
162 *linenumber = lookahead[lookaheadPosition].line; in getToken()
167 ustr_cpy(comment, &(lookahead[lookaheadPosition].comment), status); in getToken()
172 ustr_setlen(&lookahead[i].comment, 0, status); in getToken()
173 ustr_setlen(&lookahead[i].value, 0, status); in getToken()
[all …]
/external/bison/tests/
Dglr-regression.at562 ## Duplicated user destructor for lookahead. See ##
566 AT_SETUP([Duplicated user destructor for lookahead])
1073 ## Incorrect lookahead during deterministic GLR. See ##
1078 AT_SETUP([Incorrect lookahead during deterministic GLR])
1085 - Defaulted state after lookahead: yychar != YYEMPTY.
1087 - User action changing the lookahead. */
1209 ## Incorrect lookahead during nondeterministic GLR. ##
1212 AT_SETUP([Incorrect lookahead during nondeterministic GLR])
1217 - Conflicting actions (split-off parse, which copies lookahead need,
1220 - Merged deferred actions (lookahead need and RHS from different stack
[all …]
Dactions.at369 # FIXME: This location is not satisfying. Depend on the lookahead?
412 # lookahead is freed.
Dtestsuite65172 at_desc='Duplicated user destructor for lookahead'
66215 $at_quiet $ECHO_N "154: Incorrect lookahead during deterministic GLR $ECHO_C"
66439 $at_quiet $ECHO_N "155: Incorrect lookahead during nondeterministic GLR$ECHO_C"
66557 fprintf (stderr, "Incorrect lookahead during stack explosion.\n");
66566 fprintf (stderr, "Incorrect lookahead during stack explosion.\n");
66575 fprintf (stderr, "Incorrect lookahead during stack explosion.\n");
66584 "Found lookahead where shouldn't during stack explosion.\n");
/external/icu4c/common/
Druleiter.cpp74 c = lookahead(tempEscape, MAX_U_NOTATION_LEN).unescapeAt(offset); in next()
111 UnicodeString& RuleCharacterIterator::lookahead(UnicodeString& result, int32_t maxLookAhead) const { in lookahead() function in RuleCharacterIterator
Druleiter.h192 UnicodeString& lookahead(UnicodeString& result, int32_t maxLookAhead = -1) const;
Duniset_props.cpp1348 chars.lookahead(pattern); in applyPropertyPattern()
/external/chromium/third_party/icu/source/common/
Druleiter.cpp74 c = lookahead(tempEscape, MAX_U_NOTATION_LEN).unescapeAt(offset); in next()
111 UnicodeString& RuleCharacterIterator::lookahead(UnicodeString& result, int32_t maxLookAhead) const { in lookahead() function in RuleCharacterIterator
Druleiter.h192 UnicodeString& lookahead(UnicodeString& result, int32_t maxLookAhead = -1) const;
Duniset_props.cpp1283 chars.lookahead(pattern); in applyPropertyPattern()
/external/zlib/contrib/masmx86/
Dgvmat32.asm728 ;;; if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
921 ;;; if ((uInt)best_len <= s->lookahead) return (uInt)best_len;
922 ;;; return s->lookahead;
/external/zlib/contrib/masm686/
Dmatch.asm177 ; if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
/external/kernel-headers/original/asm-x86/
Dprocessor_32.h276 unsigned char ftop, changed, lookahead, no_update, rm, alimit; member
/external/bison/
DNEWS134 recovery, and the lookahead rejected during the second part.
161 - The option `--report=lookahead' was changed to `--report=look-ahead'.
430 - lookahead [changed to `look-ahead' in 1.875e and later]
DChangeLog326 (Leaked lookahead after nondeterministic parse syntax error): New test
329 attempting to shift the lookahead so that you don't lose it.
490 * tests/glr-regression.at (Incorrect lookahead during deterministic
496 yychar rather than *yytokenp to determine the current lookahead.
717 (Incorrect lookahead during deterministic GLR):
718 (Incorrect lookahead during nondeterministic GLR):
764 * data/glr-regression.at (Incorrect lookahead during nondeterministic
765 GLR): In comments, change `lookahead status' to `lookahead need'.
809 actually needed the current lookahead.
813 (yysplitStack, yyprocessOneStack, yyparse): Set lookahead status
[all …]
/external/v8/test/mozilla/
Dmozilla.status528 # Failure to clear captures when a lookahead is unwound.
/external/bluetooth/glib/docs/reference/glib/
Dregex-syntax.sgml2370 assertion. This may be a positive or negative lookahead or lookbehind
2381 The condition is a positive lookahead assertion that matches an

12