Home | History | Annotate | Download | only in tracing

Lines Matching full:amount

152     shiftSubRow_: function(subRow, amount) {
155 slice.start = (slice.start + amount);
160 * Shifts all the timestamps inside this thread forward by the amount
163 shiftTimestampsForward: function(amount) {
165 this.shiftSubRow_(this.cpuSlices, amount);
168 this.shiftSubRow_(this.subRows[tSR], amount);
171 this.asyncSlices.shiftTimestampsForward(amount);
267 * Shifts all the timestamps inside this counter forward by the amount
270 shiftTimestampsForward: function(amount) {
272 this.timestamps[sI] = (this.timestamps[sI] + amount);
345 * Shifts all the timestamps inside this process forward by the amount
348 shiftTimestampsForward: function(amount) {
350 this.threads[tid].shiftTimestampsForward(amount);
352 this.counters[id].shiftTimestampsForward(amount);
411 * Shifts all the timestamps inside this CPU forward by the amount
414 shiftTimestampsForward: function(amount) {
416 this.slices[sI].start = (this.slices[sI].start + amount);
418 this.counters[id].shiftTimestampsForward(amount);
485 * Shifts all the timestamps inside this group forward by the amount
488 shiftTimestampsForward: function(amount) {
491 slice.start = (slice.start + amount);
493 slice.subSlices[sJ].start += amount;