Searched refs:peekUInt16 (Results 1 – 1 of 1) sorted by relevance
431 a = ((this.stream.peekUInt16() << this.bitPosition) & 0xffff) >>> (16 - bits);472 a = ((this.stream.peekUInt16() << this.bitPosition) & 0xffff) >>> (16 - bits);1011 Stream.prototype.peekUInt16 = function(offset, littleEndian) { method in Stream1045 return this.peekUInt16(offset, true) + (this.peekUInt8(offset + 2) << 16);1047 return (this.peekUInt16(offset) << 8) + this.peekUInt8(offset + 2);1064 return this.peekUInt16(offset, true) + (this.peekInt8(offset + 2) << 16);1293 if (length < 2 || (bom = this.peekUInt16(offset)) === nullEnd) {1302 while (offset < end && (w1 = this.peekUInt16(offset, littleEndian)) !== nullEnd) {1310 w2 = this.peekUInt16(offset, littleEndian);2562 bom = this.stream.peekUInt16();