HomeSort by relevance Sort by last modified time
    Searched defs:usec (Results 26 - 50 of 57) sorted by null

12 3

  /external/tensorflow/tensorflow/compiler/xla/tests/
xla_hlo_profile_test.cc 44 double usec; member in struct:xla::__anon39118::ParsedProfileOutputLine
84 string match_usecs = "([0-9.]+) usec";
105 &parsed_line.usec, &parsed_line.flops, &parsed_line.trops,
  /external/wpa_supplicant_8/src/utils/
os.h 15 * os_sleep - Sleep (sec, usec)
17 * @usec: Number of microseconds to sleep
19 void os_sleep(os_time_t sec, os_time_t usec);
23 os_time_t usec; member in struct:os_time
28 os_time_t usec; member in struct:os_reltime
32 * os_get_time - Get current time (sec, usec)
39 * os_get_reltime - Get relative time (sec, usec)
51 (a->sec == b->sec && a->usec < b->usec);
59 res->usec = a->usec - b->usec
    [all...]
common.c 236 u32 sec, usec; local
243 usec = now.usec;
244 usec = 4295 * usec - (usec >> 5) - (usec >> 9);
247 tmp = host_to_be32(usec);
eloop.c 788 timeout->time.usec += usecs;
789 while (timeout->time.usec >= 1000000) {
791 timeout->time.usec -= 1000000;
853 remaining->sec = remaining->usec = 0;
899 requested.usec = req_usecs;
906 requested.usec,
931 requested.usec = req_usecs;
938 requested.usec,
1108 tv.sec = tv.usec = 0;
1110 timeout_ms = tv.sec * 1000 + tv.usec / 1000
1255 int sec, usec; local
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter/
nfnetlink_log.h 32 __aligned_be64 usec; member in struct:nfulnl_msg_packet_timestamp
nfnetlink_queue.h 30 __aligned_be64 usec; member in struct:nfqnl_msg_packet_timestamp
  /bionic/libc/kernel/uapi/linux/netfilter/
nfnetlink_log.h 40 __aligned_be64 usec; member in struct:nfulnl_msg_packet_timestamp
nfnetlink_queue.h 42 __aligned_be64 usec; member in struct:nfqnl_msg_packet_timestamp
  /external/kernel-headers/original/uapi/linux/netfilter/
nfnetlink_log.h 33 __aligned_be64 usec; member in struct:nfulnl_msg_packet_timestamp
nfnetlink_queue.h 31 __aligned_be64 usec; member in struct:nfqnl_msg_packet_timestamp
  /external/libnl/include/linux-private/linux/netfilter/
nfnetlink_queue.h 34 __aligned_be64 usec; member in struct:nfqnl_msg_packet_timestamp
  /external/ltp/lib/
tst_timer_test.c 33 static int (*sample)(int clk_id, long long usec);
264 void do_timer_test(long long usec, unsigned int nsamples)
269 long long threshold = compute_threshold(usec, keep_samples);
275 scall, usec, nsamples, 1.00 * threshold / (keep_samples));
279 if (sample(CLOCK_MONOTONIC, usec)) {
289 for (i = 0; samples[i] > 10 * usec && i < (int)nsamples; i++) {
299 for (i = nsamples - 1; samples[i] < usec && i > -1; i--);
320 if (trunc_mean > (nsamples - discard) * usec + threshold) {
395 long long usec; member in struct:tst_timer_tcase
409 do_timer_test(tcases[n].usec, tcases[n].samples)
    [all...]
  /external/mesa3d/src/gallium/drivers/radeonsi/
si_debug.c 533 unsigned sec, usec; local
549 if (sscanf(line, "[%u.%u]", &sec, &usec) != 2) {
558 timestamp = sec * 1000000llu + usec;
  /external/python/cpython3/Python/
pytime.c 188 _PyTime_ObjectToTimeval(PyObject *obj, time_t *sec, long *usec,
192 res = _PyTime_ObjectToDenominator(obj, sec, usec, 1e6, round);
193 assert(0 <= *usec && *usec < SEC_TO_US);
414 int usec; local
420 usec = (int)_PyTime_Divide(ns, US_TO_NS, round);
421 if (usec < 0) {
422 usec += SEC_TO_US;
428 else if (usec >= SEC_TO_US) {
429 usec -= SEC_TO_US
    [all...]
  /external/wpa_supplicant_8/src/ap/
sta_info.c 1070 tu = (passed.sec * 1000000 + passed.usec) / 1024;
1092 unsigned int timeout, sec, usec; local
1128 usec = (timeout % 1000) * 1024;
1129 eloop_register_timeout(sec, usec, ap_sa_query_timer, hapd, sta);
    [all...]
  /frameworks/native/opengl/libagl/
dxt.cpp 184 long usec = (end_t.tv_sec - start_t.tv_sec)*1000000 + local
187 printf("Scanned w=%d h=%d in %ld usec\n", width, height, usec);
629 long usec = (end_t.tv_sec - start_t.tv_sec)*1000000 + local
632 printf("Loaded w=%d h=%d in %ld usec\n", width, height, usec);
  /external/fio/
gettime.c 384 int64_t sec, usec; local
387 usec = e->tv_usec - s->tv_usec;
388 if (sec > 0 && usec < 0) {
390 usec += 1000000;
396 if (sec < 0 || (sec == 0 && usec < 0))
399 return usec + (sec * 1000000);
418 long sec, usec; local
421 usec = e->tv_usec - s->tv_usec;
422 if (sec > 0 && usec < 0) {
424 usec += 1000000
    [all...]
io_u.c 665 long usec; local
694 usec = td->rate_next_io_time[ddir] - now;
696 usec = td->rate_next_io_time[odir] - now;
700 usec = td->rate_next_io_time[ddir] - now;
705 usec = usec_sleep(td, usec);
992 static void io_u_mark_lat_usec(struct thread_data *td, unsigned long usec)
996 assert(usec < 1000);
998 switch (usec) {
1078 static void io_u_mark_latency(struct thread_data *td, unsigned long usec)
    [all...]
iolog.c 65 uint64_t usec = utime_since_now(&td->last_issue); local
75 if (delay < usec)
78 delay -= usec;
90 usec = utime_since_now(&tv);
91 if (usec > delay)
92 td->time_offset = usec - delay;
  /external/fio/t/
read-to-pipe-async.c 105 long sec, usec; local
109 usec = e->tv_usec - s->tv_usec;
110 if (sec > 0 && usec < 0) {
112 usec += 1000000;
115 if (sec < 0 || (sec == 0 && usec < 0))
118 ret = sec * 1000000ULL + usec;
210 fprintf(stderr, "%s latency=%u usec\n", name, us);
451 fprintf(stderr, "Latency percentiles (usec) (%s)\n", msg);
500 fprintf(stderr, "%s: [-b blocksize] [-t max usec] [-w separate writer] -f file\n", argv[0]);
btrace2fio.c 561 uint64_t usec = (o->last_ttime[rw] - o->first_ttime[rw]) / 1000ULL; local
564 if (!usec)
567 usec /= 1000;
568 if (!usec)
572 return val / usec;
602 unsigned long total, usec; local
637 usec = o_longest_ttime(o) / 1000ULL;
638 printf("usec:\t%lu (delay=%llu)\n", usec, (unsigned long long) o->start_delay);
  /external/libchrome/base/third_party/nspr/
prtime.cc 473 int usec = -1; local
826 usec = tmp_usec;
    [all...]
  /external/snakeyaml/src/main/java/org/yaml/snakeyaml/constructor/
SafeConstructor.java 347 int usec = (int) Math.round((fractions - sec_s) * 1000); local
367 calendar.set(Calendar.MILLISECOND, usec);
  /external/wpa_supplicant_8/wpa_supplicant/
bss.c 276 os_time_t usec; local
279 update_time->usec = fetch_time->usec;
281 usec = (age_ms % 1000) * 1000;
282 if (update_time->usec < usec) {
284 update_time->usec += 1000000;
286 update_time->usec -= usec;
617 (unsigned int) bss->last_update.usec,
    [all...]
  /system/core/logd/tests/
logd_test.cpp 1106 useconds_t usec; local
    [all...]

Completed in 2292 milliseconds

12 3