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

/device/linaro/bootloader/edk2/BaseTools/Source/C/VfrCompile/Pccts/h/
H A DBufFileInput.h4 // DESCRIPTION: File Input Stream with lookahead for Scanner
42 int lookahead( char* s );
H A DBufFileInput.cpp4 // DESCRIPTION: File Input Stream with lookahead for Scanner.
75 int BufFileInput::lookahead( char* s ) function in class:BufFileInput
/device/linaro/bootloader/edk2/EdkCompatibilityPkg/Other/Maintained/Tools/Pccts/h/
H A DBufFileInput.h4 // DESCRIPTION: File Input Stream with lookahead for Scanner
42 int lookahead( char* s );
H A DBufFileInput.cpp4 // DESCRIPTION: File Input Stream with lookahead for Scanner.
75 int BufFileInput::lookahead( char* s ) function in class:BufFileInput
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/
H A Ddeflate.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
[all...]
H A Ddeflate.h161 uInt lookahead; /* number of valid bytes ahead in window */ member in struct:internal_state
282 /* Minimum amount of lookahead, except at the end of the input file.
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/scripts/
H A Dfixdiv.py321 self.lookahead = []
324 while len(self.lookahead) < self.window and not self.eoflookahead:
329 self.lookahead.append(line)
332 if not self.lookahead:
334 line = self.lookahead.pop(0)
343 lookend = self.lineno + len(self.lookahead)
347 return self.lookahead[index - self.lineno]
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/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.
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
H A Dllex.h56 Token lookahead; /* look ahead token */ member in struct:LexState
H A Dllex.c164 ls->lookahead.token = TK_EOS; /* no look-ahead token */
516 if (ls->lookahead.token != TK_EOS) { /* is there a look-ahead token? */
517 ls->t = ls->lookahead; /* use this one */
518 ls->lookahead.token = TK_EOS; /* and discharge it */
526 lua_assert(ls->lookahead.token == TK_EOS);
527 ls->lookahead.token = llex(ls, &ls->lookahead.seminfo);
528 return ls->lookahead.token;
/device/linaro/bootloader/edk2/BaseTools/Source/C/LzmaCompress/Sdk/C/
H A D7zStream.c134 void LookToRead_CreateVTable(CLookToRead *p, int lookahead) argument
136 p->s.Look = lookahead ?
H A DTypes.h173 void LookToRead_CreateVTable(CLookToRead *p, int lookahead);
/device/linaro/bootloader/edk2/IntelFrameworkModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
H A DTypes.h196 void LookToRead_CreateVTable(CLookToRead *p, int lookahead);
/device/linaro/bootloader/edk2/MdeModulePkg/Library/LzmaCustomDecompressLib/Sdk/C/
H A DTypes.h196 void LookToRead_CreateVTable(CLookToRead *p, int lookahead);

Completed in 240 milliseconds