Lines Matching refs:bytes_
13 constructor(private bytes_: Uint8Array) { } property in ByteBuffer
30 return this.bytes_;
51 return this.bytes_.length;
59 return this.bytes_[offset];
67 return this.bytes_[offset] | this.bytes_[offset + 1] << 8;
71 …return this.bytes_[offset] | this.bytes_[offset + 1] << 8 | this.bytes_[offset + 2] << 16 | this.b…
98 this.bytes_[offset] = value;
102 this.bytes_[offset] = value;
106 this.bytes_[offset] = value;
107 this.bytes_[offset + 1] = value >> 8;
111 this.bytes_[offset] = value;
112 this.bytes_[offset + 1] = value >> 8;
116 this.bytes_[offset] = value;
117 this.bytes_[offset + 1] = value >> 8;
118 this.bytes_[offset + 2] = value >> 16;
119 this.bytes_[offset + 3] = value >> 24;
123 this.bytes_[offset] = value;
124 this.bytes_[offset + 1] = value >> 8;
125 this.bytes_[offset + 2] = value >> 16;
126 this.bytes_[offset + 3] = value >> 24;
156 if (this.bytes_.length < this.position_ + SIZEOF_INT +
209 return this.bytes_.subarray(offset, offset + length);