(s, b)
| 6746 | * pending_buf. |
| 6747 | */ |
| 6748 | function putShortMSB(s, b) { |
| 6749 | // put_byte(s, (Byte)(b >> 8)); |
| 6750 | // put_byte(s, (Byte)(b & 0xff)); |
| 6751 | s.pending_buf[s.pending++] = (b >>> 8) & 0xff; |
| 6752 | s.pending_buf[s.pending++] = b & 0xff; |
| 6753 | } |
| 6754 | |
| 6755 | |
| 6756 | /* =========================================================================== |