Lines Matching refs:bytes_
825 this.bytes_ = bytes;
855 return this.bytes_;
882 return this.bytes_.length;
898 return this.bytes_[offset];
914 return this.bytes_[offset] | this.bytes_[offset + 1] << 8;
922 …return this.bytes_[offset] | this.bytes_[offset + 1] << 8 | this.bytes_[offset + 2] << 16 | this.b…
973 this.bytes_[offset] = /** @type {number} */(value);
981 this.bytes_[offset] = value;
989 this.bytes_[offset] = value;
990 this.bytes_[offset + 1] = value >> 8;
998 this.bytes_[offset] = value;
999 this.bytes_[offset + 1] = value >> 8;
1007 this.bytes_[offset] = value;
1008 this.bytes_[offset + 1] = value >> 8;
1009 this.bytes_[offset + 2] = value >> 16;
1010 this.bytes_[offset + 3] = value >> 24;
1018 this.bytes_[offset] = value;
1019 this.bytes_[offset + 1] = value >> 8;
1020 this.bytes_[offset + 2] = value >> 16;
1021 this.bytes_[offset + 3] = value >> 24;
1068 if (this.bytes_.length < this.position_ + flatbuffers.SIZEOF_INT +
1130 return this.bytes_.subarray(offset, offset + length);