Home
last modified time | relevance | path

Searched refs:max_length (Results 1 – 7 of 7) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
Dzlibmodule.c478 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()
Dreadline.c69 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/
Dzlibmodule.c527 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/
Dtest_zlib.py288 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/
Ddist.py697 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.10/Modules/zlib/
Dtrees.c122 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--) {
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/zlib/
Dtrees.c126 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--) {