Here you can find the source of push16(val)
Array.prototype.push16 = function(val) { // low byte/*w ww .ja v a 2 s . c o m*/ this.push(0x00FF & val); // high byte this.push(val >> 8); // chainable return this; };
Array.prototype.push = function(data) { this[this.length] = data; return this.length; };
Array.prototype.push = function(elem) { this[this.length] = elem; return ++this.length; };
function Array() { this.length = 0 Array.prototype.push = function(value) { this[this.length] = value this.length += 1 Array.prototype.pop = function() { if (this.length > 0) { ...
Array.prototype.push16 = function (aWord) {
this.push((aWord >> 8) & 0xFF,
(aWord ) & 0xFF);
};
Array.prototype.push16 = function (num) {
this.push((num >> 8) & 0xFF,
(num ) & 0xFF );
};
Array.prototype.push16le = function(aWord) {
this.push((aWord ) & 0xff,
(aWord >> 8) & 0xff);
};
Array.prototype.push32 = function (aLongWord) {
this.push((aLongWord >> 24) & 0xFF,
(aLongWord >> 16) & 0xFF,
(aLongWord >> 8) & 0xFF,
(aLongWord ) & 0xFF);
};
Array.prototype.push32 = function (num) {
this.push((num >> 24) & 0xFF,
(num >> 16) & 0xFF,
(num >> 8) & 0xFF,
(num ) & 0xFF );
};
Array.prototype.push32le = function(aLongWord) {
this.push((aLongWord ) & 0xff,
(aLongWord >> 8) & 0xff,
(aLongWord >> 16) & 0xff,
(aLongWord >> 24) & 0xff);
};