Searched refs:strstart (Results 1 – 10 of 10) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/ |
D | deflate.c | 350 s->strstart = 0; 365 str = s->strstart; 375 s->strstart = str; 379 s->strstart += s->lookahead; 380 s->block_start = (long)s->strstart; 589 wraplen = 6 + (s->strstart ? 4 : 0); 750 if (s->strstart != 0) header |= PRESET_DICT; 757 if (s->strstart != 0) { 934 s->strstart = 0; 1120 s->strstart = 0; [all …]
|
D | deflate.h | 159 uInt strstart; /* start of string to insert */ member
|
D | trees.c | 1037 ulg in_length = (ulg)((long)s->strstart - s->block_start);
|
D | ChangeLog | 522 - Fix Z_FULL_FLUSH to truly erase the past by resetting s->strstart
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/ |
D | deflate.c | 340 s->strstart = length; 637 if (s->strstart != 0) header |= PRESET_DICT; 644 if (s->strstart != 0) { 1000 s->strstart = 0; 1032 register Bytef *scan = s->window + s->strstart; /* current string */ 1037 IPos limit = s->strstart > (IPos)MAX_DIST(s) ? 1038 s->strstart - (IPos)MAX_DIST(s) : NIL; 1049 register Bytef *strend = s->window + s->strstart + MAX_MATCH - 1; 1053 register Bytef *strend = s->window + s->strstart + MAX_MATCH; 1072 Assert((ulg)s->strstart <= s->window_size-MIN_LOOKAHEAD, "need lookahead"); [all …]
|
D | deflate.h | 156 uInt strstart; /* start of string to insert */ member
|
D | trees.c | 1049 ulg in_length = (ulg)((long)s->strstart - s->block_start);
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
D | tokenize.py | 296 raise TokenError, ("EOF in multi-line string", strstart) 301 strstart, (lnum, end), contline + line) 306 strstart, (lnum, len(line)), contline) 384 strstart = (lnum, start) # multiple lines 392 strstart = (lnum, start)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
D | tokenize.py | 302 raise TokenError, ("EOF in multi-line string", strstart) 307 strstart, (lnum, end), contline + line) 312 strstart, (lnum, len(line)), contline) 392 strstart = (lnum, start) # multiple lines 400 strstart = (lnum, start)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/pgen2/ |
D | tokenize.py | 377 raise TokenError, ("EOF in multi-line string", strstart) 382 strstart, (lnum, end), contline + line) 387 strstart, (lnum, len(line)), contline) 462 strstart = (lnum, start) # multiple lines 470 strstart = (lnum, start)
|