(s, b)
| 18403 | * pending_buf. |
| 18404 | */ |
| 18405 | function putShortMSB(s, b) { |
| 18406 | // put_byte(s, (Byte)(b >> 8)); |
| 18407 | // put_byte(s, (Byte)(b & 0xff)); |
| 18408 | s.pending_buf[s.pending++] = (b >>> 8) & 0xff; |
| 18409 | s.pending_buf[s.pending++] = b & 0xff; |
| 18410 | } |
| 18411 | |
| 18412 | |
| 18413 | /* =========================================================================== |