Searched refs:max_length (Results 1 – 7 of 7) sorted by relevance
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/ |
D | zlibmodule.c | 478 int err, inplen, max_length = 0; in PyZlib_objdecompress() local 485 &inplen, &max_length)) in PyZlib_objdecompress() 487 if (max_length < 0) { in PyZlib_objdecompress() 494 if (max_length && length > max_length) in PyZlib_objdecompress() 495 length = max_length; in PyZlib_objdecompress() 518 if (max_length && length >= max_length) in PyZlib_objdecompress() 524 if (max_length && length > max_length) in PyZlib_objdecompress() 525 length = max_length; in PyZlib_objdecompress() 538 if(max_length) { in PyZlib_objdecompress()
|
D | readline.c | 69 int num_matches, int max_length); 757 int num_matches, int max_length) in on_completion_display_matches_hook() argument 776 "sOi", matches[0], m, max_length); in on_completion_display_matches_hook()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/ |
D | zlibmodule.c | 527 int err, inplen, max_length = 0; in PyZlib_objdecompress() local 534 &inplen, &max_length)) in PyZlib_objdecompress() 536 if (max_length < 0) { in PyZlib_objdecompress() 543 if (max_length && length > max_length) in PyZlib_objdecompress() 544 length = max_length; in PyZlib_objdecompress() 567 if (max_length && length >= max_length) in PyZlib_objdecompress() 573 if (max_length && length > max_length) in PyZlib_objdecompress() 574 length = max_length; in PyZlib_objdecompress()
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
D | test_zlib.py | 288 max_length = 1 + len(cb)//10 289 chunk = dco.decompress(cb, max_length) 290 self.assertFalse(len(chunk) > max_length, 291 'chunk too big (%d>%d)' % (len(chunk),max_length)) 298 chunk = dco.decompress('', max_length) 299 self.assertFalse(len(chunk) > max_length, 300 'chunk too big (%d>%d)' % (len(chunk),max_length))
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/distutils/ |
D | dist.py | 697 def print_command_list(self, commands, header, max_length): argument 712 print(" %-*s %s" % (max_length, cmd, description)) 733 max_length = 0 735 if len(cmd) > max_length: 736 max_length = len(cmd) 740 max_length) 745 max_length)
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/ |
D | trees.c | 126 int max_length; /* max bit length for the codes */ member 499 int max_length = desc->stat_desc->max_length; local 517 if (bits > max_length) bits = max_length, overflow++; 537 bits = max_length-1; 541 s->bl_count[max_length]--; 553 for (bits = max_length; bits != 0; bits--) {
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/zlib/ |
D | trees.c | 122 int max_length; /* max bit length for the codes */ member 497 int max_length = desc->stat_desc->max_length; local 515 if (bits > max_length) bits = max_length, overflow++; 535 bits = max_length-1; 539 s->bl_count[max_length]--; 551 for (bits = max_length; bits != 0; bits--) {
|