Lines Matching refs:bytes_
846 this.bytes_ = bytes;
875 return this.bytes_;
902 return this.bytes_.length;
918 return this.bytes_[offset];
934 return this.bytes_[offset] | this.bytes_[offset + 1] << 8;
942 …return this.bytes_[offset] | this.bytes_[offset + 1] << 8 | this.bytes_[offset + 2] << 16 | this.b…
993 this.bytes_[offset] = /** @type {number} */(value);
1001 this.bytes_[offset] = value;
1009 this.bytes_[offset] = value;
1010 this.bytes_[offset + 1] = value >> 8;
1018 this.bytes_[offset] = value;
1019 this.bytes_[offset + 1] = value >> 8;
1027 this.bytes_[offset] = value;
1028 this.bytes_[offset + 1] = value >> 8;
1029 this.bytes_[offset + 2] = value >> 16;
1030 this.bytes_[offset + 3] = value >> 24;
1038 this.bytes_[offset] = value;
1039 this.bytes_[offset + 1] = value >> 8;
1040 this.bytes_[offset + 2] = value >> 16;
1041 this.bytes_[offset + 3] = value >> 24;
1088 if (this.bytes_.length < this.position_ + flatbuffers.SIZEOF_INT +
1150 return this.bytes_.subarray(offset, offset + length);