Home
last modified time | relevance | path

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

/development/tools/winscope/src/trace_processor/
Dproto_ring_buffer.ts134 for (let shift = 0; /* no check */; shift += 7) { variable
139 len |= ((val & 0x7f) << shift) >>> 0;
Dengine.ts168 const pendingPromise = assertExists(this.pendingParses.shift());
176 assertExists(this.pendingEOFs.shift()).resolve();
179 assertExists(this.pendingResetTraceProcessors.shift()).resolve();
182 assertExists(this.pendingRestoreTables.shift()).resolve();
189 this.pendingQueries.shift();
197 assertExists(this.pendingComputeMetrics.shift());
/development/tools/winscope/src/common/
Dpersistent_store_proxy.ts115 const source = sources.shift();
Dtimestamp_utils.ts122 parts.shift();
/development/samples/ApiDemos/src/com/example/android/mmslib/pdu/
DPduComposer.java270 int shift = (size -1) * 8; in appendLongInteger() local
273 append((int)((longInt >>> shift) & 0xff)); in appendLongInteger()
274 shift = shift - 8; in appendLongInteger()
/development/tools/winscope/src/app/components/timeline/mini-timeline/
Dmini_timeline_component.ts494 setTimeout(() => this.lastMoves.shift(), 1000);