MCPcopy Index your code
hub / github.com/hoothin/UserScripts / putShortMSB

Function putShortMSB

Picviewer CE+/dist.user.js:6315–6320  ·  view source on GitHub ↗
(s, b)

Source from the content-addressed store, hash-verified

6313 * pending_buf.
6314 */
6315function 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/* ===========================================================================

Callers 1

deflateFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected