(s, b)
| 6313 | * pending_buf. |
| 6314 | */ |
| 6315 | function putShortMSB(s, b) { |
| 6316 | // put_byte(s, (Byte)(b >> 8)); |
| 6317 | // put_byte(s, (Byte)(b & 0xff)); |
| 6318 | s.pending_buf[s.pending++] = (b >>> 8) & 0xff; |
| 6319 | s.pending_buf[s.pending++] = b & 0xff; |
| 6320 | } |
| 6321 | |
| 6322 | |
| 6323 | /* =========================================================================== |