Searched refs:lookahead (Results 1 - 25 of 26) sorted by relevance

12

/external/zlib/
H A Ddeflate.c340 * s->lookahead stays null, so s->ins_h will be recomputed at the next
816 if (strm->avail_in != 0 || s->lookahead != 0 ||
850 if (s->lookahead == 0) {
1038 s->lookahead = 0;
1057 * OUT assertion: the match length is not greater than s->lookahead.
1106 if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
1108 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
1116 * for insufficient lookahead only occur occasionally for performance
1119 * However the length of the match is limited to the lookahead, s
[all...]
H A Ddeflate.h158 uInt lookahead; /* number of valid bytes ahead in window */ member in struct:internal_state
279 /* Minimum amount of lookahead, except at the end of the input file.
/external/chromium/third_party/zlib/
H A Ddeflate.c114 /* Minimum amount of lookahead, except at the end of the input file.
344 * s->lookahead stays null, so s->ins_h will be recomputed at the next
786 if (strm->avail_in != 0 || s->lookahead != 0 ||
1002 s->lookahead = 0;
1021 * OUT assertion: the match length is not greater than s->lookahead.
1070 if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
1072 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
1080 * for insufficient lookahead only occur occasionally for performance
1083 * However the length of the match is limited to the lookahead, s
[all...]
H A Ddeflate.h158 uInt lookahead; /* number of valid bytes ahead in window */ member in struct:internal_state
272 /* Minimum amount of lookahead, except at the end of the input file.
/external/qemu/distrib/zlib-1.2.3/
H A Ddeflate.c114 /* Minimum amount of lookahead, except at the end of the input file.
344 * s->lookahead stays null, so s->ins_h will be recomputed at the next
786 if (strm->avail_in != 0 || s->lookahead != 0 ||
1002 s->lookahead = 0;
1021 * OUT assertion: the match length is not greater than s->lookahead.
1070 if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
1072 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead");
1080 * for insufficient lookahead only occur occasionally for performance
1083 * However the length of the match is limited to the lookahead, s
[all...]
H A Ddeflate.h158 uInt lookahead; /* number of valid bytes ahead in window */ member in struct:internal_state
272 /* Minimum amount of lookahead, except at the end of the input file.
/external/chromium/third_party/icu/source/common/
H A Druleiter.cpp74 c = lookahead(tempEscape, MAX_U_NOTATION_LEN).unescapeAt(offset);
111 UnicodeString& RuleCharacterIterator::lookahead(UnicodeString& result, int32_t maxLookAhead) const { function in class:RuleCharacterIterator
H A Druleiter.h170 * options. This is useful in conjunction with the lookahead() method.
184 * sequence of calls is to call skipIgnored(), then call lookahead(), then
185 * parse the string returned by lookahead(), then call jumpahead() to
192 UnicodeString& lookahead(UnicodeString& result, int32_t maxLookAhead = -1) const;
196 * This is useful in conjunction with the lookahead() method.
H A Duniset_props.cpp1283 chars.lookahead(pattern);
/external/icu4c/common/
H A Druleiter.cpp74 c = lookahead(tempEscape, MAX_U_NOTATION_LEN).unescapeAt(offset);
111 UnicodeString& RuleCharacterIterator::lookahead(UnicodeString& result, int32_t maxLookAhead) const { function in class:RuleCharacterIterator
H A Druleiter.h170 * options. This is useful in conjunction with the lookahead() method.
184 * sequence of calls is to call skipIgnored(), then call lookahead(), then
185 * parse the string returned by lookahead(), then call jumpahead() to
192 UnicodeString& lookahead(UnicodeString& result, int32_t maxLookAhead = -1) const;
196 * This is useful in conjunction with the lookahead() method.
H A Duniset_props.cpp1348 chars.lookahead(pattern);
/external/chromium/third_party/icu/source/tools/genrb/
H A Dparse.c79 static struct Lookahead lookahead[MAX_LOOKAHEAD + 1]; variable in typeref:struct:Lookahead
94 /* The nature of the lookahead buffer:
96 MAX_LOOKAHEAD lookahead tokens and a slot for the current token and value.
125 lookahead[i].type = getNextToken(buffer, &lookahead[i].value, &lookahead[i].line, &lookahead[i].comment, status);
141 ustr_deinit(&lookahead[i].value);
142 ustr_deinit(&lookahead[i].comment);
153 result = lookahead[lookaheadPositio
[all...]
/external/icu4c/tools/genrb/
H A Dparse.c79 static struct Lookahead lookahead[MAX_LOOKAHEAD + 1]; variable in typeref:struct:Lookahead
94 /* The nature of the lookahead buffer:
96 MAX_LOOKAHEAD lookahead tokens and a slot for the current token and value.
125 lookahead[i].type = getNextToken(buffer, &lookahead[i].value, &lookahead[i].line, &lookahead[i].comment, status);
141 ustr_deinit(&lookahead[i].value);
142 ustr_deinit(&lookahead[i].comment);
153 result = lookahead[lookaheadPositio
[all...]
/external/zlib/contrib/masm686/
H A Dmatch.asm177 ; if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
389 ;/* if ((uInt)best_len <= s->lookahead) return (uInt)best_len; */
390 ;/* return s->lookahead; */
/external/zlib/contrib/masmx86/
H A Dgvmat32.asm173 ; if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
525 ; return min(best_len,s->lookahead)
728 ;;; 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;
H A Dmatch686.asm241 ;;; if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
434 ;;; if ((uInt)best_len <= s->lookahead) return (uInt)best_len;
435 ;;; return s->lookahead;
/external/zlib/contrib/masmx64/
H A Dgvmat64.asm256 ;;; if ((uInt)nice_match > s->lookahead) nice_match = s->lookahead;
516 ;;; if ((uInt)best_len <= s->lookahead) return (uInt)best_len;
517 ;;; return s->lookahead;
/external/bison/data/
H A Dlalr1.cc815 yydestruct_ ("Cleanup: discarding lookahead", yytoken, &yylval, &yylloc);
H A Dglr.c765 * stacks have actually needed the current lookahead. During deterministic
779 /** The lookahead for this reduction. */
2200 /* We throw away the lookahead, but the error range
2496 yydestruct ("Cleanup: discarding lookahead",
H A Dyacc.c1466 yydestruct ("Cleanup: discarding lookahead",
/external/libvpx/examples/includes/geshi/geshi/
H A Dmysql.php22 * regex lookahead only where necessary to distinguish homonyms, not generally
/external/kernel-headers/original/asm-x86/
H A Dprocessor_32.h276 unsigned char ftop, changed, lookahead, no_update, rm, alimit; member in struct:i387_soft_struct
/external/libpcap/
H A Dgrammar.c2969 yydestruct ("Cleanup: discarding lookahead",
/external/bison/src/
H A Dparse-gram.c2356 yydestruct ("Cleanup: discarding lookahead",

Completed in 252 milliseconds

12