Lines Matching refs:bytes
86 * Total number of bytes in the blocks_ array. Does _not_ include bytes in
112 * Append a typed array of bytes onto the buffer.
144 * parent block and adds the number of bytes needed to encode that length to
167 * @param {!Uint8Array} bytes The array of bytes to write.
172 bytes, start, end) {
173 this.appendUint8Array_(bytes.subarray(start, end));
180 * @param {?Uint8Array} bytes The array of bytes to write.
185 bytes, start, end) {
186 if (bytes != null && start != null && end != null) {
187 this.writeSerializedMessage(bytes, start, end);
788 * @param {?jspb.ByteSource} value The array of bytes to write.
792 var bytes = jspb.utils.byteSourceToUint8Array(value);
794 this.encoder_.writeUnsignedVarint32(bytes.length);
795 this.appendUint8Array_(bytes);
1318 * @param {?Array<!jspb.ByteSource>} value The arrays of arrays of bytes to