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

<<11121314151617181920>>

  /art/runtime/
trace.cc 126 LOG(WARNING) << "Ignoring tracing request to use CPU time.";
160 // Compute an average time taken to measure clocks.
626 // Compute elapsed time.
643 os << StringPrintf("elapsed-time-usec=%" PRIu64 "\n", elapsed);
795 // First event, record the base time in the map.
796 uint64_t time = thread->GetCpuMicroTime(); local
797 thread->SetTraceClockBase(time);
    [all...]
  /bionic/libc/kernel/uapi/linux/
input.h 14 *** Any manual change here will be lost the next time this script will
21 #include <sys/time.h>
28 struct timeval time; member in struct:input_event
29 #define input_event_sec time.tv_sec
30 #define input_event_usec time.tv_usec
msdos_fs.h 14 *** Any manual change here will be lost the next time this script will
146 __le16 time, date, start; member in struct:msdos_dir_entry
  /cts/tests/tests/media/src/android/media/cts/
AudioEffectTest.java 384 int time = 500; local
385 if (value[0] == time) {
386 time = 1000;
388 status = mEffect.setParameter(param, time);
392 assertTrue("got incorrect decay time",
393 ((float)value[0] > (float)(time / DELAY_TOLERANCE)) &&
394 ((float)value[0] < (float)(time * DELAY_TOLERANCE)));
450 int time = 500; local
451 if (mEffect.byteArrayToInt(value) == time) {
452 time = 1000
487 int[] time = new int[1]; local
558 int time = 500; local
    [all...]
  /developers/build/prebuilts/androidtv/leanback/app/src/main/java/com/example/android/tvleanback/ui/
PlaybackOverlayFragment.java 237 String time = mmr.extractMetadata(MediaMetadataRetriever.METADATA_KEY_DURATION); local
238 mDuration = Long.parseLong(time);
385 Log.d(TAG, "current time: " + mPlaybackControlsRow.getCurrentTime());
  /device/google/contexthub/firmware/os/drivers/orientation/
orientation.c 91 uint64_t time; member in struct:FusionSensorSample
253 mTask.samples[index][w].time = curr_time + counter;
281 static bool allocateDataEvt(struct FusionSensor *mSensor, uint64_t time)
290 // delta time for the first sample is sample count
292 mSensor->ev->referenceTime = time;
293 mSensor->prev_time = time;
299 static bool addSample(struct FusionSensor *mSensor, uint64_t time, float x, float y, float z)
305 if (mSensor->prev_time == time) {
312 if (!allocateDataEvt(mSensor, time))
324 sample->deltaTime = time > mSensor->prev_time ? (time - mSensor->prev_time) : 0
    [all...]
  /device/linaro/hikey/hifi/xaf/host-apf/playback/tinyalsa/
pcm.c 34 #include <sys/time.h>
1234 int time = -1; local
    [all...]
  /external/boringssl/src/ssl/
ssl_session.cc 246 new_session->time = session->time;
287 // To avoid overflows and underflows, if we've gone back in time, update the
288 // time, but mark the session expired.
289 if (session->time > now.tv_sec) {
290 session->time = now.tv_sec;
296 // Adjust the session time and timeouts. If the session has already expired,
298 uint64_t delta = now.tv_sec - session->time;
299 session->time = now.tv_sec;
314 // Rebase the timestamp relative to the current time so |timeout| is measure
1185 uint64_t time; member in struct:timeout_param_st
    [all...]
  /external/cldr/tools/java/org/unicode/cldr/util/
ZoneParser.java 142 public static class Time {
147 Time(String in) {
268 * describe times that are not representable as time
271 * differing time value types.
304 * AT Gives the time of day at which the rule takes
307 * 2 time in hours
308 * 2:00 time in hours and minutes
309 * 15:00 24-hour format time (for times after noon)
310 * 1:28:14 time in hours, minutes, and seconds
316 * the given time is local "wall clock" time, s if th
372 public Time time; field in class:ZoneParser.RuleLine
    [all...]
  /external/conscrypt/repackaged/openjdk/src/main/java/com/android/org/conscrypt/
Platform.java 120 long time = System.currentTimeMillis(); local
124 String tempName = String.format(Locale.US, "%s%d%04d%s", prefix, time, i, suffix);
  /external/grpc-grpc-java/grpclb/src/main/java/io/grpc/grpclb/
GrpclbState.java 112 private final TimeProvider time; field in class:GrpclbState
152 TimeProvider time,
158 this.time = checkNotNull(time, "time provider");
285 prevLbRpcStartNanos = time.currentTimeNanos();
482 loadRecorder = new GrpclbClientLoadRecorder(time);
631 // depending how much time was spent in the previous RPC.
633 prevLbRpcStartNanos + lbRpcRetryPolicy.nextBackoffNanos() - time.currentTimeNanos();
724 // stream thus no time is wasted in re-process
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
OlsonTimeZone.java 32 * A time zone based on the Olson tz database. Olson time zones change
33 * behavior over time. The raw offset, rules, presence or absence of
34 * daylight savings time, and even the daylight savings amount can all
65 * Each time is represented by a pair of 32bit integer.
70 * time (transPre32/trans/transPost32) and its corresponding offset
76 * after the final transition time, finalRule represents the rule
105 * cessation lists consist of the month, dowim, dow, time, and time
164 long time = Grego.fieldsToDay(year, month, dom) * Grego.MILLIS_PER_DAY + millis local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/text/
DateIntervalFormat.java 56 * There is no structural information in date time patterns.
57 * For any punctuations and string literals inside a date time pattern,
64 * patterns, similar to date time pattern in SimpleDateFormat.
88 * in date time patterns, will be returned without honor the field pattern
127 * For time skeleton, the interval patterns when am/pm, or hour, or minute is
139 * For the combination of date and time,
151 * for the time.
169 * formatting: time zone, calendar type, pattern, date format symbols,
411 * @return a date time interval formatter.
431 * @return a date time interval formatter
1109 StringBuilder time = new StringBuilder(skeleton.length()); local
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/
IslamicTest.java 279 errln("get/set time failed with non-civil islamic calendar");
294 Date time = cal.getTime(); local
313 logln(calLocName + "/" + locName + " --> " + format.format(time));
    [all...]
  /external/icu/icu4c/source/test/intltest/
tzfmttst.cpp 196 // just for making sure that it does not depends on the time zone
220 errln((UnicodeString)"Failed to get offsets from time zone" + *tzid);
225 errln((UnicodeString)"Failed to get offsets from time zone" + outtzid);
243 + ", time=" + DATES[datidx] + ", str=" + tzstr
248 + ", time=" + DATES[datidx] + ", str=" + tzstr
257 + ", time=" + DATES[datidx] + ", str=" + tzstr
261 // Location: time zone rule must be preserved except
263 // Time zones in this category do not have "/" in its ID.
277 + ", time=" + DATES[datidx] + ", str=" + tzstr
282 + ", time=" + DATES[datidx] + ", str=" + tzst
360 UDate time; member in struct:__anon24303
    [all...]
tzregts.cpp 203 * (Assume transition time of 2:00 AM)
225 * Savings Time (PDT) does work at 2am.
361 // time.
468 dataerrln("We're not in Daylight Savings Time and we should be. - %s", u_errorName(status));
629 int32_t time = DATA[i+4]; local
635 zone->setStartRule(month, day, dayOfWeek, time, status);
641 ", dayOfWeek=" + dayOfWeek + ", time=" + time +
649 zone->setEndRule(month, day, dayOfWeek, time, status);
655 ", dayOfWeek=" + dayOfWeek + ", time=" + time
    [all...]
  /external/icu/icu4c/source/test/perf/collperf/
collperf.cpp 387 virtual double time(int32_t n, UErrorCode* status) { function in struct:CmdQsort
389 double t2 = UPerfFunction::time(n, status);
  /external/icu/icu4j/demos/src/com/ibm/icu/dev/demo/calendar/
CalendarCalc.java 50 * CalendarCalc demonstrates how Date/Time formatter works.
90 private long time = System.currentTimeMillis(); field in class:CalendarCalcFrame
340 * This function is called when it is necessary to parse the time
356 time = date.getTime();
377 * This function is called when it is necessary to format the time
385 out = calendars[i].format.format(new Date(time));
391 + calendars[i].name + " " + time);
417 * This function is called when users select a new time field
428 c.setTime(new Date(time));
436 time = c.getTime().getTime()
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
OlsonTimeZone.java 31 * A time zone based on the Olson tz database. Olson time zones change
32 * behavior over time. The raw offset, rules, presence or absence of
33 * daylight savings time, and even the daylight savings amount can all
64 * Each time is represented by a pair of 32bit integer.
69 * time (transPre32/trans/transPost32) and its corresponding offset
75 * after the final transition time, finalRule represents the rule
104 * cessation lists consist of the month, dowim, dow, time, and time
162 long time = Grego.fieldsToDay(year, month, dom) * Grego.MILLIS_PER_DAY + millis local
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/
DateIntervalFormat.java 55 * There is no structural information in date time patterns.
56 * For any punctuations and string literals inside a date time pattern,
63 * patterns, similar to date time pattern in SimpleDateFormat.
87 * in date time patterns, will be returned without honor the field pattern
126 * For time skeleton, the interval patterns when am/pm, or hour, or minute is
138 * For the combination of date and time,
150 * for the time.
168 * formatting: time zone, calendar type, pattern, date format symbols,
410 * @return a date time interval formatter.
431 * @return a date time interval formatter
1121 StringBuilder time = new StringBuilder(skeleton.length()); local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
IslamicTest.java 276 errln("get/set time failed with non-civil islamic calendar");
291 Date time = cal.getTime(); local
310 logln(calLocName + "/" + locName + " --> " + format.format(time));
    [all...]
  /external/icu/icu4j/perf-tests/src/com/ibm/icu/dev/test/perf/
PerfTest.java 70 * total elapsed time in milliseconds, and the second is the number of events
71 * per iteration. In this example, the time per event is 12047 / (100 * 1109044)
91 protected int time; field in class:PerfTest
243 public final long time(long n) { method in class:PerfTest.Function
255 * init is called each time before looping through call
338 static final int TIME = 9;
361 UOption.DEF("time", 't', UOption.REQUIRES_ARG),
411 System.out.println("= " + meth + " begin " + time + " seconds");
458 passes = iterations = time = -1;
479 if (options[TIME].doesOccur && options[ITERATIONS].doesOccur
    [all...]
  /external/jemalloc/include/jemalloc/internal/
arena.h 42 /* Default decay time in seconds. */
47 /* Default decay time in seconds. */
50 /* Number of event ticks between time checks. */
286 * Approximate time in seconds from the creation of a set of unused
290 ssize_t time; member in struct:arena_decay_s
291 /* time / SMOOTHSTEP_NSTEPS. */
294 * Time at which the current decay interval logically started. We do
    [all...]
  /external/kernel-headers/original/uapi/linux/
input.h 14 #include <sys/time.h>
30 struct timeval time; member in struct:input_event
31 #define input_event_sec time.tv_sec
32 #define input_event_usec time.tv_usec
180 #define EVIOCGEFFECTS _IOR('E', 0x84, int) /* Report number of effects playable at the same time */
395 * for the time being as no driver supports it yet.
msdos_fs.h 176 __u8 ctime_cs; /* Creation time, centiseconds (0-199) */
177 __le16 ctime; /* Creation time */
181 __le16 time,date,start;/* time, date and first cluster */ member in struct:msdos_dir_entry

Completed in 1905 milliseconds

<<11121314151617181920>>