HomeSort by relevance Sort by last modified time
    Searched defs:time (Results 251 - 275 of 660) sorted by null

<<11121314151617181920>>

  /external/icu/icu4c/source/test/intltest/
tzbdtest.cpp 195 logln("-- Verifying time " + dateToString(d) + " in zone " + time_zone->getID(str));
229 * calendar and time zone in conjunction with one another,
230 * including the calendar time->fields and fields->time and
231 * the time zone getOffset method.
310 // i is minutes past midnight standard time
456 UDate time = d; local
457 UDate limit = time + ONE_YEAR + ONE_DAY;
463 while (time < limit) {
464 d = time;
    [all...]
  /external/iw/
iw.h 123 bool frame, time, reltime; member in struct:print_event_args
  /external/kernel-headers/original/uapi/linux/
joystick.h 45 __u32 time; /* event timestamp in milliseconds */ member in struct:js_event
rtc.h 4 * This version contains the part of the user interface to the Real Time Clock
17 * struct tm in <time.h>, but it needs to be here so that the kernel
40 struct rtc_time time; /* time the alarm is set to */ member in struct:rtc_wkalrm
80 #define RTC_ALM_SET _IOW('p', 0x07, struct rtc_time) /* Set alarm time */
81 #define RTC_ALM_READ _IOR('p', 0x08, struct rtc_time) /* Read alarm time */
82 #define RTC_RD_TIME _IOR('p', 0x09, struct rtc_time) /* Read RTC time */
83 #define RTC_SET_TIME _IOW('p', 0x0a, struct rtc_time) /* Set RTC time */
  /external/libaom/libaom/test/
comp_mask_variance_test.cc 142 double time = static_cast<double>(aom_usec_timer_elapsed(&timer)); local
143 elapsed_time[i] = 1000.0 * time / num_loops;
246 double time = static_cast<double>(aom_usec_timer_elapsed(&timer)); local
247 elapsed_time[i] = 1000.0 * time / num_loops;
410 double time = static_cast<double>(aom_usec_timer_elapsed(&timer)); local
411 elapsed_time[i] = 1000.0 * time / num_loops;
546 double time = static_cast<double>(aom_usec_timer_elapsed(&timer)); local
547 elapsed_time[i] = 1000.0 * time / num_loops;
  /external/libchrome/base/message_loop/
message_pump_glib_unittest.cc 50 TimeDelta delta = events_[0].time - Time::NowFromSystemTime();
57 return events_[0].time <= Time::NowFromSystemTime();
95 Time time; member in struct:base::__anon27430::EventInjector::Event
105 Time last_time;
107 last_time = (events_.end()-1)->time;
109 last_time = Time::NowFromSystemTime();
111 Time future = last_time + TimeDelta::FromMilliseconds(delay_ms)
    [all...]
  /external/libchrome/base/time/
time.cc 5 #include "base/time/time.h"
18 #include "base/time/time_override.h"
45 return static_cast<int>(delta_ / Time::kMicrosecondsPerDay);
53 int result = delta_ / Time::kMicrosecondsPerDay;
54 int64_t remainder = delta_ - (result * Time::kMicrosecondsPerDay);
66 return static_cast<int>(delta_ / Time::kMicrosecondsPerHour);
74 return static_cast<int>(delta_ / Time::kMicrosecondsPerMinute);
82 return static_cast<double>(delta_) / Time::kMicrosecondsPerSecond;
90 return delta_ / Time::kMicrosecondsPerSecond
290 Time time; local
    [all...]
  /external/libxkbcommon/xkbcommon/test/
interactive-x11.c 193 xcb_timestamp_t time; member in struct:xkb_event::__anon30403
  /external/linux-kselftest/tools/testing/selftests/timers/
freq-step.c 23 #include <time.h>
42 double time; member in struct:sample
80 sample->time = ts1.tv_sec + ts1.tv_nsec / 1e9;
93 txc.time.tv_sec = 0;
94 txc.time.tv_usec = 0;
128 x = samples[i].time;
143 x = samples[i].time;
  /external/ltp/testcases/cve/
meltdown.c 167 int i, time; local
173 time = get_access_time(addr);
175 if (time <= cache_hit_threshold)
258 "access time: cached = %ld, uncached = %ld, threshold = %d",
  /external/mesa3d/src/gallium/drivers/radeonsi/
si_fence.c 218 int64_t time = os_time_get_nano(); local
219 timeout = abs_timeout > time ? abs_timeout - time : 0;
229 int64_t time = os_time_get_nano(); local
230 timeout = abs_timeout > time ? abs_timeout - time : 0;
255 * signaled in finite time (for example, by an associated
282 int64_t time = os_time_get_nano(); local
283 timeout = abs_timeout > time ? abs_timeout - time : 0
    [all...]
  /external/mesa3d/src/gallium/drivers/vc4/
vc4_bufmgr.c 95 fprintf(stderr, " oldest cache time: %ld\n",
97 fprintf(stderr, " newest cache time: %ld\n",
100 struct timespec time; local
101 clock_gettime(CLOCK_MONOTONIC, &time);
103 time.tv_sec);
286 struct timespec time; local
287 clock_gettime(CLOCK_MONOTONIC, &time);
289 vc4_bo_last_unreference_locked_timed(bo, time.tv_sec);
294 free_stale_bos(struct vc4_screen *screen, time_t time)
308 if (time - bo->free_time > 2)
    [all...]
  /external/mesa3d/src/gallium/drivers/vc5/
vc5_bufmgr.c 69 fprintf(stderr, " oldest cache time: %ld\n",
71 fprintf(stderr, " newest cache time: %ld\n",
74 struct timespec time; local
75 clock_gettime(CLOCK_MONOTONIC, &time);
77 time.tv_sec);
190 struct timespec time; local
191 clock_gettime(CLOCK_MONOTONIC, &time);
193 vc5_bo_last_unreference_locked_timed(bo, time.tv_sec);
234 free_stale_bos(struct vc5_screen *screen, time_t time)
248 if (time - bo->free_time > 2)
    [all...]
  /external/mp4parser/isoparser/src/main/java/com/coremedia/iso/boxes/fragment/
TrackFragmentRandomAccessBox.java 41 * unsigned int(64) time;
44 * unsigned int(32) time;
99 entry.time = IsoTypeReader.readUInt64(content);
102 entry.time = IsoTypeReader.readUInt32(content);
129 IsoTypeWriter.writeUInt64(byteBuffer, entry.time);
132 IsoTypeWriter.writeUInt32(byteBuffer, entry.time);
192 private long time; field in class:TrackFragmentRandomAccessBox.Entry
201 public Entry(long time, long moofOffset, long trafNumber, long trunNumber, long sampleNumber) {
204 this.time = time;
    [all...]
  /external/pdfium/fxjs/
cjs_util.cpp 9 #include <time.h>
236 struct tm time = {}; local
237 time.tm_year = year - 1900;
238 time.tm_mon = month - 1;
239 time.tm_mday = day;
240 time.tm_hour = hour;
241 time.tm_min = min;
242 time.tm_sec = sec;
245 FXSYS_wcsftime(buf, 64, cFormat.c_str(), &time);
  /external/protobuf/src/google/protobuf/stubs/
time.cc 1 #include <google/protobuf/stubs/time.h>
73 bool ValidateDateTime(const DateTime& time) {
74 if (time.year < 1 || time.year > 9999 ||
75 time.month < 1 || time.month > 12 ||
76 time.day < 1 || time.day > 31 ||
77 time.hour < 0 || time.hour > 23 |
272 DateTime time; local
286 DateTime time; local
    [all...]
  /external/replicaisland/src/com/replica/replicaisland/
AnimationPlayerActivity.java 158 long time = System.currentTimeMillis(); local
159 if (time > mAnimationEndTime) {
DoorAnimationComponent.java 141 TimeSystem time = sSystemRegistry.timeSystem; local
142 final float gameTime = time.getGameTime();
191 public void setStayOpenTime(float time) {
192 mStayOpenTime = time;
EventReporter.java 19 public float time; field in class:EventReporter.Event
55 public void addEvent(int eventType, float x, float y, float time, String level, int version, long session) {
59 event.time = time;
90 + "&time=" + event.time
FadeDrawableComponent.java 64 final TimeSystem time = sSystemRegistry.timeSystem; local
65 final float currentTime = time.getGameTime();
GameOverActivity.java 82 final long time = SystemClock.uptimeMillis(); local
83 final long delta = time - mLastTime;
GameThread.java 56 final long time = SystemClock.uptimeMillis(); local
57 final long timeDelta = time - mLastTime;
60 float secondsDelta = (time - mLastTime) * 0.001f;
64 mLastTime = time;
79 finalDelta = endTime - time;
GhostComponent.java 111 final TimeSystem time = sSystemRegistry.timeSystem; local
112 final float gameTime = time.getGameTime();
LauncherComponent.java 63 final TimeSystem time = sSystemRegistry.timeSystem; local
64 final float gameTime = time.getGameTime();
97 final TimeSystem time = sSystemRegistry.timeSystem; local
98 final float gameTime = time.getGameTime();
NPCAnimationComponent.java 122 TimeSystem time = sSystemRegistry.timeSystem; local
123 final float airTime = time.getGameTime() - parentObject.getLastTouchedFloorTime();

Completed in 3385 milliseconds

<<11121314151617181920>>