Searched refs:max_length (Results 1 – 4 of 4) sorted by relevance
/u-boot/drivers/usb/gadget/ |
A D | ep0.c | 158 void copy_config (struct urb *urb, void *data, int max_length, in copy_config() argument 171 length = max_length; in copy_config() 173 if (length > max_length) { in copy_config() 175 max_length); in copy_config() 199 urb->actual_length, urb->buffer_length, max_buf, max_length, in copy_config()
|
/u-boot/test/py/ |
A D | u_boot_utils.py | 29 def md5sum_file(fn, max_length=None): argument 43 if max_length: 44 params = [max_length]
|
/u-boot/tools/ |
A D | genboardscfg.py | 384 max_length = dict([ (f, 0) for f in FIELDS]) 387 max_length[f] = max(max_length[f], len(params[f])) 394 line += ' ' + params[f].ljust(max_length[f])
|
/u-boot/lib/zlib/ |
A D | trees.c | 128 int max_length; /* max bit length for the codes */ member 504 int max_length = desc->stat_desc->max_length; local 522 if (bits > max_length) bits = max_length, overflow++; 542 bits = max_length-1; 546 s->bl_count[max_length]--; 558 for (bits = max_length; bits != 0; bits--) {
|
Completed in 7 milliseconds