/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/util/ |
D | u_time.h | 76 int64_t usecs, in util_time_add() argument 79 t2->counter = t1->counter + usecs; in util_time_add() 140 util_time_sleep(int64_t usecs) in util_time_sleep() argument 142 os_time_sleep(usecs); in util_time_sleep()
|
/external/mesa3d/src/gallium/auxiliary/util/ |
D | u_time.h | 76 int64_t usecs, in util_time_add() argument 79 t2->counter = t1->counter + usecs; in util_time_add() 140 util_time_sleep(int64_t usecs) in util_time_sleep() argument 142 os_time_sleep(usecs); in util_time_sleep()
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/os/ |
D | os_time.c | 74 os_time_sleep(int64_t usecs) in os_time_sleep() argument 76 Sleep((usecs + 999) / 1000); in os_time_sleep()
|
D | os_time.h | 67 os_time_sleep(int64_t usecs);
|
/external/mesa3d/src/gallium/auxiliary/os/ |
D | os_time.c | 74 os_time_sleep(int64_t usecs) in os_time_sleep() argument 76 Sleep((usecs + 999) / 1000); in os_time_sleep()
|
D | os_time.h | 67 os_time_sleep(int64_t usecs);
|
/external/chromium_org/base/synchronization/ |
D | condition_variable_posix.cc | 63 int64 usecs = max_time.InMicroseconds(); in TimedWait() local 65 relative_time.tv_sec = usecs / Time::kMicrosecondsPerSecond; in TimedWait() 67 (usecs % Time::kMicrosecondsPerSecond) * Time::kNanosecondsPerMicrosecond; in TimedWait()
|
/external/mesa3d/src/gallium/auxiliary/pipebuffer/ |
D | pb_bufmgr_cache.c | 79 unsigned usecs; member 161 buf->end = buf->start + mgr->usecs; in pb_cache_buffer_destroy() 390 unsigned usecs) in pb_cache_manager_create() argument 405 mgr->usecs = usecs; in pb_cache_manager_create()
|
D | pb_bufmgr.h | 164 unsigned usecs);
|
/external/chromium_org/third_party/mesa/src/src/gallium/auxiliary/pipebuffer/ |
D | pb_bufmgr_cache.c | 79 unsigned usecs; member 161 buf->end = buf->start + mgr->usecs; in pb_cache_buffer_destroy() 390 unsigned usecs) in pb_cache_manager_create() argument 405 mgr->usecs = usecs; in pb_cache_manager_create()
|
D | pb_bufmgr.h | 164 unsigned usecs);
|
/external/fio/ |
D | gettime.c | 171 uint64_t usecs, t; in __fio_gettime() local 181 usecs = t / ARCH_CPU_CLOCK_CYCLES_PER_USEC; in __fio_gettime() 183 usecs = (t * inv_cycles_per_usec) / 16777216UL; in __fio_gettime() 185 tp->tv_sec = usecs / 1000000; in __fio_gettime() 186 tp->tv_usec = usecs % 1000000; in __fio_gettime()
|
/external/linux-tools-perf/perf-3.12.0/tools/perf/Documentation/ |
D | perf-bench.txt | 30 5.855061 usecs/op 113 8.091833 usecs/op 120 16.948000 usecs/op
|
/external/iproute2/ip/ |
D | ipmonitor.c | 91 long usecs = ((__u32*)NLMSG_DATA(n))[1]; in accept_msg() local 94 fprintf(fp, "Timestamp: %s %lu us\n", tstr, usecs); in accept_msg()
|
/external/chromium_org/tools/cygprofile/ |
D | mergetraces.py | 107 usecs = int (fields[1]) 113 converted_calls.append((secs, usecs, fields[2], (callee - startAddr)))
|
/external/valgrind/main/coregrind/ |
D | vgdb.c | 222 unsigned int usecs; in invoke_gdbserver_in_valgrind() local 244 usecs = 1000 * max_invoke_ms; in invoke_gdbserver_in_valgrind() 251 usecs = 0; in invoke_gdbserver_in_valgrind() 257 if (usecs == 0 || usecs > 1000 * 1000) in invoke_gdbserver_in_valgrind() 258 usecs = 1000 * 1000; in invoke_gdbserver_in_valgrind() 260 usleep(usecs); in invoke_gdbserver_in_valgrind()
|
/external/qemu/distrib/sdl-1.2.15/src/video/ipod/ |
D | SDL_ipodvideo.c | 510 static int M_timer_check(int clock_start, int usecs) in M_timer_check() argument 515 if ( (clock - clock_start) >= usecs ) { in M_timer_check() 614 static int C_timer_check(int clock_start, int usecs) in C_timer_check() argument 619 if ( (clock - clock_start) >= usecs ) { in C_timer_check()
|
/external/wpa_supplicant_8/wpa_supplicant/ |
D | gas_query.c | 320 unsigned int secs, usecs; in gas_query_tx_comeback_req_delay() local 323 usecs = comeback_delay * 1024 - secs * 1000000; in gas_query_tx_comeback_req_delay() 325 " in %u secs %u usecs", MAC2STR(query->addr), secs, usecs); in gas_query_tx_comeback_req_delay() 327 eloop_register_timeout(secs, usecs, gas_query_tx_comeback_timeout, in gas_query_tx_comeback_req_delay()
|
/external/wpa_supplicant_8/src/utils/ |
D | eloop.h | 179 int eloop_register_timeout(unsigned int secs, unsigned int usecs,
|
D | eloop_win.c | 237 int eloop_register_timeout(unsigned int secs, unsigned int usecs, in eloop_register_timeout() argument 263 timeout->time.usec += usecs; in eloop_register_timeout()
|
/external/chromium_org/third_party/npapi/npspy/extern/nspr/ |
D | prtime.h | 192 PRTime usecs, PRTimeParamFn params, PRExplodedTime *exploded);
|
/external/iputils/ |
D | arping.c | 459 long usecs = (tv.tv_sec-last.tv_sec) * 1000000 + in recv_pack() local 461 long msecs = (usecs+500)/1000; in recv_pack() 462 usecs -= msecs*1000 - 500; in recv_pack() 463 printf(" %ld.%03ldms\n", msecs, usecs); in recv_pack()
|
/external/chromium_org/chromeos/network/ |
D | network_event_log.cc | 52 int usecs = static_cast<int>(fmod(time.ToDoubleT() * 1000000, 1000000)); in DateAndTimeWithMicroseconds() local 53 return base::StringPrintf("%s.%06d", formatted.c_str(), usecs); in DateAndTimeWithMicroseconds()
|
/external/chromium_org/v8/src/base/platform/ |
D | platform-posix.cc | 272 int OS::GetUserTime(uint32_t* secs, uint32_t* usecs) { in GetUserTime() argument 281 *usecs = usage.ru_utime.tv_usec; in GetUserTime()
|
D | platform.h | 156 static int GetUserTime(uint32_t* secs, uint32_t* usecs);
|