Searched refs:Uint16Array (Results 1 – 25 of 26) sorted by relevance
12
/external/perfetto/ui/src/tracks/actual_frames/ |
D | common.ts | 29 depths: Uint16Array; 30 titles: Uint16Array; // Index in |strings|. 31 colors?: Uint16Array; // Index in |strings|. 32 isInstant: Uint16Array; 33 isIncomplete: Uint16Array;
|
D | controller.ts | 98 depths: new Uint16Array(numRows), 99 titles: new Uint16Array(numRows), 100 colors: new Uint16Array(numRows), 101 isInstant: new Uint16Array(numRows), 102 isIncomplete: new Uint16Array(numRows),
|
/external/perfetto/ui/src/tracks/chrome_slices/ |
D | common.ts | 31 depths: Uint16Array; 32 titles: Uint16Array; // Index into strings. 33 colors?: Uint16Array; // Index into strings. 34 isInstant: Uint16Array; 35 isIncomplete: Uint16Array;
|
D | controller.ts | 78 depths: new Uint16Array(numRows), 79 titles: new Uint16Array(numRows), 80 isInstant: new Uint16Array(numRows), 81 isIncomplete: new Uint16Array(numRows),
|
/external/perfetto/ui/src/tracks/expected_frames/ |
D | common.ts | 29 depths: Uint16Array; 30 titles: Uint16Array; // Index in |strings|. 31 colors?: Uint16Array; // Index in |strings|. 32 isInstant: Uint16Array; 33 isIncomplete: Uint16Array;
|
D | controller.ts | 79 depths: new Uint16Array(numRows), 80 titles: new Uint16Array(numRows), 81 colors: new Uint16Array(numRows), 82 isInstant: new Uint16Array(numRows), 83 isIncomplete: new Uint16Array(numRows),
|
/external/perfetto/ui/src/tracks/async_slices/ |
D | common.ts | 29 depths: Uint16Array; 30 titles: Uint16Array; // Index in |strings|. 31 isInstant: Uint16Array; 32 isIncomplete: Uint16Array;
|
D | controller.ts | 79 depths: new Uint16Array(numRows), 80 titles: new Uint16Array(numRows), 81 isInstant: new Uint16Array(numRows), 82 isIncomplete: new Uint16Array(numRows),
|
/external/perfetto/ui/src/controller/aggregation/ |
D | cpu_aggregation_controller.ts | 71 columnConstructor: Uint16Array, 77 columnConstructor: Uint16Array, 83 columnConstructor: Uint16Array, 89 columnConstructor: Uint16Array, 108 columnConstructor: Uint16Array,
|
D | thread_aggregation_controller.ts | 109 columnConstructor: Uint16Array, 115 columnConstructor: Uint16Array, 121 columnConstructor: Uint16Array, 127 columnConstructor: Uint16Array, 133 columnConstructor: Uint16Array, 152 columnConstructor: Uint16Array,
|
D | cpu_by_process_aggregation_controller.ts | 70 columnConstructor: Uint16Array, 76 columnConstructor: Uint16Array, 95 columnConstructor: Uint16Array,
|
D | slice_aggregation_controller.ts | 83 columnConstructor: Uint16Array, 102 columnConstructor: Uint16Array,
|
D | counter_aggregation_controller.ts | 79 columnConstructor: Uint16Array,
|
/external/perfetto/ui/src/common/ |
D | aggregation_data.ts | 20 data: Uint16Array; 30 data: Uint16Array; 35 data: Uint16Array;
|
/external/perfetto/ui/src/tracks/debug_slices/ |
D | controller.ts | 62 depths: new Uint16Array(numRows), 63 titles: new Uint16Array(numRows), 64 isInstant: new Uint16Array(numRows), 65 isIncomplete: new Uint16Array(numRows),
|
/external/skia/modules/canvaskit/ |
D | font.js | 59 var glyphs = new Uint16Array(CanvasKit.HEAPU8.buffer, glyphPtr, actualIDs); 65 var rv = Uint16Array.from(glyphs); 285 return CanvasKit.Malloc(Uint16Array, numGlyphIDs);
|
D | WasmCommon.h | 24 using Uint16Array = emscripten::val; variable
|
/external/perfetto/ui/src/tracks/thread_state/ |
D | common.ts | 25 state: Uint16Array; // Index into |strings|.
|
D | controller.ts | 102 state: new Uint16Array(numRows),
|
/external/skia/experimental/tskit/bindings/ |
D | embind.d.ts | 10 HEAPU16: Uint16Array;
|
/external/brotli/js/ |
D | decode_test.js | 9 return String.fromCharCode.apply(null, new Uint16Array(bytes));
|
/external/libchrome/mojo/public/js/lib/ |
D | buffer.js | 11 var endianUint16Array = new Uint16Array(endianArrayBuffer);
|
/external/autotest/client/deps/webgl_mpd/src/resources/ |
D | J3DI.js | 314 ctx.bufferData(ctx.ELEMENT_ARRAY_BUFFER, new Uint16Array(indexData), ctx.STREAM_DRAW); 510 …obj.ctx.bufferData(obj.ctx.ELEMENT_ARRAY_BUFFER, new Uint16Array(indexArray), obj.ctx.STREAM_DRAW);
|
/external/skia/modules/canvaskit/npm_build/types/ |
D | index.d.ts | 674 glyphs: Uint16Array; 3618 Uint16Array | Uint8Array; 3632 export type GlyphIDArray = Uint16Array;
|
/external/flatbuffers/js/ |
D | flatbuffers.js | 87 flatbuffers.isLittleEndian = new Uint16Array(new Uint8Array([1, 0]).buffer)[0] === 1;
|
12