HomeSort by relevance Sort by last modified time
    Searched full:timebase (Results 1 - 25 of 42) sorted by null

1 2

  /sdk/traceview/src/com/android/traceview/
TimeBase.java 19 interface TimeBase {
20 public static final TimeBase CPU_TIME = new CpuTimeBase();
21 public static final TimeBase REAL_TIME = new RealTimeBase();
28 public static final class CpuTimeBase implements TimeBase {
46 public static final class RealTimeBase implements TimeBase {
TraceReader.java 72 public TimeBase getPreferredTimeBase() {
73 return TimeBase.CPU_TIME;
MethodData.java 171 public void analyzeData(TimeBase timeBase) {
178 sortedParents = sortProfileData(mParents, timeBase);
179 sortedChildren = sortProfileData(mChildren, timeBase);
180 sortedRecursiveParents = sortProfileData(mRecursiveParents, timeBase);
181 sortedRecursiveChildren = sortProfileData(mRecursiveChildren, timeBase);
215 final TimeBase timeBase) {
226 if (timeBase.getElapsedInclusiveTime(pd2) > timeBase.getElapsedInclusiveTime(pd1)
    [all...]
DmTraceReader.java 536 final TimeBase timeBase = getPreferredTimeBase();
543 if (timeBase.getTime(td2) > timeBase.getTime(td1))
545 if (timeBase.getTime(td2) < timeBase.getTime(td1))
557 if (timeBase.getElapsedInclusiveTime(md2) > timeBase.getElapsedInclusiveTime(md1))
559 if (timeBase.getElapsedInclusiveTime(md2) < timeBase.getElapsedInclusiveTime(md1)
    [all...]
  /frameworks/base/tools/velocityplot/
velocityplot.py 121 self.timebase = None
193 if self.timebase is None:
194 self.timebase = timestamp
195 delta = timestamp - self.timebase
217 self.timebase += timedelta(seconds=bottom)
  /external/sonivox/arm-wt-22k/lib_src/
eas_xmf.h 52 /* default timebase (120BPM) */
eas_smfdata.h 59 /* default timebase (120BPM) */
eas_smf.c 9 * For SMF timebase analysis, see "MIDI Sequencer Analysis.xls".
47 //3 dls: The timebase for this module is adequate to keep MIDI and
50 //3 required, more fractional bits should be added to the timebase.
843 /* read the 3-byte timebase value */
    [all...]
  /frameworks/base/tools/orientationplot/
orientationplot.py 166 self.timebase = None
246 if self.timebase is None:
247 self.timebase = timestamp
248 delta = timestamp - self.timebase
308 self.timebase += timedelta(seconds=bottom)
  /external/sonivox/jet_tools/JetCreator/
midifile.py 214 # TimeBase
216 class TimeBase (object):
388 def TimeEventStr (self, timebase):
389 return '[%s]: %s' % (timebase.ConvertTicksToStr(self.ticks), self.__str__())
955 def DumpEvents (self, output, timebase):
958 output.write('%s\n' % event.TimeEventStr(timebase))
961 midi_file_logger.debug(event.TimeEventStr(timebase))
983 tick_warning_level = stream.timebase.ppqn * LARGE_TICK_WARNING
    [all...]
JetUtils.py 35 from midifile import TimeBase, trackGrid
347 return TimeBase().ConvertStrTimeToTicks(mbt1)
353 return TimeBase().ConvertTicksToMBT(ticks)
357 return TimeBase().ConvertTicksToStr(ticks, '%02d:%02d:%02d')
361 return TimeBase().MbtDifference(mbt1, mbt2)
668 tb = TimeBase(ppqn, bpm)
  /external/libvpx/vpx/
vpx_encoder.h 134 (in timebase units) */
136 (in timebase units) */
277 /*!\brief Stream timebase units
282 * the \ref RECOMMENDED method is to set the timebase to the reciprocal
286 * \ref RECOMMENDED method is to set the timebase to that of the parent
678 * \param[in] pts Presentation time stamp, in timebase units.
679 * \param[in] duration Duration to show frame, in timebase units.
  /external/sonivox/arm-fm-22k/lib_src/
eas_smfdata.h 59 /* default timebase (120BPM) */
eas_smf.c 9 * For SMF timebase analysis, see "MIDI Sequencer Analysis.xls".
47 //3 dls: The timebase for this module is adequate to keep MIDI and
50 //3 required, more fractional bits should be added to the timebase.
843 /* read the 3-byte timebase value */
    [all...]
  /external/sonivox/arm-hybrid-22k/lib_src/
eas_smfdata.h 59 /* default timebase (120BPM) */
eas_smf.c 9 * For SMF timebase analysis, see "MIDI Sequencer Analysis.xls".
47 //3 dls: The timebase for this module is adequate to keep MIDI and
50 //3 required, more fractional bits should be added to the timebase.
843 /* read the 3-byte timebase value */
    [all...]
  /external/chromium/chrome/browser/resources/gpu_internals/
timeline_model.js 217 var timeBase = this.minTimestamp;
225 slice.start = (slice.start - timeBase) / 1000;
  /development/pdk/docs/porting/
intro_source_code.jd 32 <li>Android Alarm: A driver which provides timers that can wake the device up from sleep and a monotonic timebase that runs while the device is asleep.</li>
  /external/libvpx/
vpxdec.c 407 /* Some versions of vpxenc used 1/(2*fps) for the timebase, so
408 * we can guess the framerate using only the timebase in this
410 * timebase, like we do for webm.
414 /* Correct for the factor of 2 applied to the timebase in the
    [all...]
vpxenc.c 919 static const arg_def_t timebase = ARG_DEF(NULL, "timebase", 1, variable
920 "Stream timebase (frame duration)");
929 &width, &height, &timebase, &framerate, &error_resilient,
    [all...]
CHANGELOG 138 vpxenc supports the distinction between --fps and --timebase
  /external/srec/srec/cfront/
himul32.h 44 /* Reads timebase register for a higher precision clock */
  /external/qemu/
qemu-timer.h 170 /* This reads timebase in one 64bit go and includes Cell workaround from:
  /frameworks/base/core/java/android/widget/
Chronometer.java 37 * You can give it a start time in the {@link SystemClock#elapsedRealtime} timebase,
  /external/chromium/chrome/browser/automation/
ui_controls_mac.mm 59 // If this is the first time we've run, get the timebase.

Completed in 1642 milliseconds

1 2