(x, l)
| 463 | |
| 464 | // Format a number to hex and pad with zeroes. |
| 465 | function format(x, l) { |
| 466 | x = x.toString(16); |
| 467 | while (x.length < l) { |
| 468 | x = 0 + x; |
| 469 | } |
| 470 | return x; |
| 471 | } |
| 472 | |
| 473 | // Insert data in runs of bytesLength. |
| 474 | var data = this.properties.contents; |