HomeSort by relevance Sort by last modified time
    Searched defs:time (Results 126 - 150 of 2361) sorted by null

1 2 3 4 56 7 8 91011>>

  /external/skqp/debugger/QT/
SkListWidget.cpp 65 float time = index.data(Qt::UserRole + 4).toFloat(); local
67 drawTime.setNum(time, 'f', 2);
92 if (time >= 0.0) {
95 // don't need time offset
106 if (time >= 0.0) {
107 // Draw time
  /external/skqp/samplecode/
SampleClock.cpp 103 SkTime::DateTime time; variable
104 SkTime::GetDateTime(&time); member in class:ClockView::SkTime
105 time.fHour = time.fHour >= 12 ? time.fHour-12 : time.fHour;
110 canvas->rotate(time.fHour*(180.f/6.f) + time.fMinute*(180.f/360.f)
111 + time.fSecond*(180.f/21600.f) );
131 canvas->rotate(time.fMinute*(180.f/30.f
    [all...]
  /external/sonivox/arm-wt-22k/lib_src/
eas_wavefile.h 48 EAS_U32 time; member in struct:s_wave_state_tag
  /external/syslinux/core/lwip/src/include/lwip/
timers.h 67 u32_t time; member in struct:sys_timeo
  /external/syslinux/gpxe/src/interface/efi/
efi_timer.c 41 /** Calibration time */
65 * Get current system time in ticks
67 * @ret ticks Current time, in ticks
70 UINT64 time; local
74 if ( ( efirc = cpu_arch->GetTimerValue ( cpu_arch, 0, &time,
82 return ( time >> EFI_TIMER0_SHIFT );
  /external/tensorflow/tensorflow/core/profiler/internal/
tfprof_show.h 126 string time = FormatTime(node->proto().total_exec_micros()); local
128 time = FormatTime(node->proto().exec_micros()) + "/" + time;
130 time = "--/" + time;
132 return time;
136 string time = FormatTime(node->proto().total_cpu_exec_micros()); local
138 time = FormatTime(node->proto().cpu_exec_micros()) + "/" + time;
140 time = "--/" + time
146 string time = FormatTime(node->proto().total_accelerator_exec_micros()); local
    [all...]
  /external/toybox/toys/other/
hwclock.c 17 -r Show hardware clock time (--show)
18 -s Set system time from hardware clock (--hctosys)
19 -t Set the system time based on the current timezone (--systz)
21 -w Set hardware clock from system time (--systohc)
62 time_t time; local
65 // check for Grenich Mean Time
87 // Get current time in seconds from rtc device. todo: get subsecond time
93 if ((time = mktime(&tm)) < 0) error_exit("mktime failed");
108 /* The value of tm_isdst is positive if daylight saving time is in effect
    [all...]
  /external/v8/tools/profviz/
worker.js 60 function time(name, fun) { function
69 time("Loading scripts",
92 time("Reading log file (" + (file.size / 1024).toFixed(1) + " kB)",
98 time("Producing statistical profile",
131 time("Collecting events (" + content_lines.length + " entries)",
141 time("Assembling plot script",
156 time("Running gnuplot (" + objects + " objects)",
  /external/valgrind/none/tests/s390x/
stcke.c 9 unsigned long long time; member in struct:stcke::reader
46 unsigned long c = clockticks_in_msec(end.reader.time,
47 start.reader.time);
  /external/webrtc/webrtc/base/
timing.cc 17 #include <sys/time.h>
52 struct timeval time; local
53 gettimeofday(&time, NULL);
55 return (static_cast<double>(time.tv_sec) +
56 static_cast<double>(time.tv_usec) * 1.0e-6);
59 struct _timeb time;
60 _ftime(&time);
62 return (static_cast<double>(time.time) +
63 static_cast<double>(time.millitm) * 1.0e-3)
    [all...]
  /external/webrtc/webrtc/modules/audio_coding/neteq/
delay_peak_detector_unittest.cc 61 int time = 0; local
64 while (next < kNumPackets && arrival_times_ms[next] <= time) {
68 if (time < peak_mode_start_ms || time > peak_mode_end_ms) {
78 time += 10; // Increase time 10 ms.
107 int time = 0; local
110 while (next < kNumPackets && arrival_times_ms[next] <= time) {
118 time += 10; // Increase time 10 ms
    [all...]
  /external/webrtc/webrtc/modules/video_coding/codecs/vp8/
reference_picture_selection_unittest.cc 18 // The minimum time between reference frame updates. Should match the values
21 // The minimum time between decoder refreshes through restricted prediction.
54 uint32_t time = (4 * kMinUpdateInterval) / 3 + 1; local
55 EXPECT_EQ(rps_.EncodeFlags(1, false, 90 * time), kPropagateAltRef);
57 time += (4 * (time + kMinUpdateInterval)) / 3 + 1;
59 EXPECT_EQ(rps_.EncodeFlags(2, false, 90 * time), kPropagateGolden);
62 time = (4 * (time + kMinUpdateInterval)) / 3 + 1;
63 EXPECT_EQ(rps_.EncodeFlags(3, false, 90 * time), kPropagateAltRef)
72 uint32_t time = kRtt + 1; local
    [all...]
  /external/webrtc/webrtc/video/
call_stats.h 47 // Helper struct keeping track of the time a rtt value is reported.
50 : rtt(new_rtt), time(rtt_time) {}
52 const int64_t time; member in struct:webrtc::CallStats::RttTime
66 // The last time 'Process' resulted in statistic update.
72 // All Rtt reports within valid time interval, oldest first.
  /external/wpa_supplicant_8/wpa_supplicant/wpa_gui-qt4/
eventhistory.cpp 67 void EventListModel::addEvent(QString time, QString msg)
70 timeList << time; local
  /frameworks/av/media/libaaudio/src/utility/
AudioClock.h 22 #include <time.h>
26 // Time conversion constants.
35 struct timespec time; local
36 int result = clock_gettime(clockId, &time);
40 return (time.tv_sec * AAUDIO_NANOS_PER_SECOND) + time.tv_nsec;
44 * Sleep until the specified absolute time.
48 * @param nanoTime time to wake up
55 struct timespec time; local
56 time.tv_sec = nanoTime / AAUDIO_NANOS_PER_SECOND
84 struct timespec time; local
    [all...]
  /frameworks/av/media/libnbaio/
AudioStreamOutSink.cpp 81 struct timespec time; local
82 if (mStream->getPresentationPosition(&position64, &time) != OK) {
86 timestamp.mTimeNs[ExtendedTimestamp::LOCATION_KERNEL] = audio_utils_ns_from_timespec(&time);
  /frameworks/base/cmds/statsd/tools/loadtest/src/com/android/statsd/loadtest/
BatteryStatsParser.java 61 Long time = getTime(lineMatcher.group(1)); local
62 if (time != null) {
63 return time + "," + lineMatcher.group(2) + "\n";
65 return null; // bad time
68 return null; // bad or no time
91 long time = 0L; local
94 time += Long.parseLong(matches[0]) * 60 * 60 * 1000; // hours
99 time += Long.parseLong(matches[0]) * 60 * 1000; // minutes
104 time += Long.parseLong(matches[0]) * 1000; // seconds
109 time += Long.parseLong(group); // millisecond
    [all...]
  /frameworks/base/tests/VectorDrawableTest/src/com/android/test/dynamic/
BitmapDrawableDupe.java 64 long time = android.os.SystemClock.elapsedRealtimeNanos(); local
73 time = android.os.SystemClock.elapsedRealtimeNanos()-time;
75 t.setText("avgS=" + df.format(time / (icon.length * 1000000.)) + " ms");
  /frameworks/support/car/src/main/java/androidx/car/widget/
PagedSmoothScroller.java 59 final int time = calculateTimeForDeceleration(dy); local
60 if (time > 0) {
61 action.update(0, -dy, time, mInterpolator);
  /libcore/luni/src/test/java/libcore/java/time/
DateTimeExceptionTest.java 16 package libcore.java.time;
19 import java.time.DateTimeException;
OffsetTimeTest.java 16 package libcore.java.time;
19 import java.time.OffsetTime;
20 import java.time.ZoneOffset;
21 import java.time.temporal.ChronoUnit;
22 import java.time.temporal.TemporalUnit;
23 import java.time.temporal.UnsupportedTemporalTypeException;
33 * @see tck.java.time.TCKOffsetTime
34 * @see test.java.time.TestOffsetTime
ZoneOffsetTest.java 16 package libcore.java.time;
19 import java.time.ZoneOffset;
20 import java.time.temporal.ChronoField;
21 import java.time.temporal.UnsupportedTemporalTypeException;
29 * @see tck.java.time.TCKZoneOffset
30 * @see test.java.time.TestZoneOffset
  /libcore/luni/src/test/java/libcore/java/time/chrono/
ChronologyDisplayNameTest.java 16 package libcore.java.time.chrono;
21 import java.time.chrono.Chronology;
22 import java.time.chrono.Era;
23 import java.time.format.TextStyle;
  /libcore/luni/src/test/java/libcore/java/time/format/
DateTimeFormatterBuilderTest.java 16 package libcore.java.time.format;
19 import java.time.DateTimeException;
20 import java.time.LocalDate;
21 import java.time.Month;
22 import java.time.OffsetDateTime;
23 import java.time.ZoneId;
24 import java.time.ZoneOffset;
25 import java.time.ZonedDateTime;
26 import java.time.format.DateTimeFormatter;
27 import java.time.format.DateTimeFormatterBuilder
    [all...]
DateTimeParseExceptionTest.java 16 package libcore.java.time.format;
19 import java.time.format.DateTimeParseException;

Completed in 1608 milliseconds

1 2 3 4 56 7 8 91011>>