Home
last modified time | relevance | path

Searched refs:batchBytes (Results 1 – 1 of 1) sorted by relevance

/development/tools/winscope/src/trace_processor/
Dquery_result.ts535 readonly batchBytes: Uint8Array;
545 constructor(batchBytes: Uint8Array) {
546 this.batchBytes = batchBytes;
547 const reader = protobuf.Reader.create(batchBytes);
574 assertTrue(reader.buf === batchBytes);
577 batchBytes.byteOffset + batchBytes.byteLength);
588 const f64Off = batchBytes.byteOffset + reader.pos;
591 new Float64Array(batchBytes.buffer, f64Off, f64Words);
596 const slice = batchBytes.buffer.slice(f64Off, f64Off + f64Len);
613 const subArr = batchBytes.subarray(reader.pos, reader.pos + strLen);
[all …]