Searched refs:currTime (Results 1 – 6 of 6) sorted by relevance
/external/deqp/framework/delibs/deutil/ |
D | deClock.c | 59 struct timespec currTime; in deGetMicroseconds() 60 clock_gettime(CLOCK_MONOTONIC, &currTime); in deGetMicroseconds() 61 return (deUint64)currTime.tv_sec*1000000 + ((deUint64)currTime.tv_nsec/1000); in deGetMicroseconds() 64 struct timespec currTime; in deGetMicroseconds() 67 clock_gettime(CLOCK_REALTIME, &currTime); in deGetMicroseconds() 68 return (deUint64)currTime.tv_sec*1000000 + ((deUint64)currTime.tv_nsec/1000); in deGetMicroseconds() 71 struct timeval currTime; in deGetMicroseconds() 72 gettimeofday(&currTime, DE_NULL); in deGetMicroseconds() 73 return (deUint64)currTime.tv_sec*1000000 + (deUint64)currTime.tv_usec; in deGetMicroseconds()
|
/external/webrtc/webrtc/modules/audio_coding/test/ |
D | utility.cc | 71 void ACMTestTimer::CurrentTimeHMS(char* currTime) { in CurrentTimeHMS() argument 72 sprintf(currTime, "%4lu:%02u:%06.3f", _hour, _min, in CurrentTimeHMS()
|
D | utility.h | 73 void CurrentTimeHMS(char* currTime);
|
D | Channel.cc | 417 uint64_t currTime = TickTime::MillisecondTimestamp(); in BitRate() local 419 rate = ((double) _totalBytes * 8.0) / (double) (currTime - _beginTime); in BitRate()
|
/external/icu/icu4c/source/tools/genrb/ |
D | wrtxml.cpp | 1036 time_t currTime; in bundle_write_xml() local 1164 time(&currTime); in bundle_write_xml() 1165 strftime(timeBuf, sizeof(timeBuf), "%Y-%m-%dT%H:%M:%SZ", gmtime(&currTime)); in bundle_write_xml()
|
/external/libxaac/test/ |
D | ixheaacd_main.c | 84 long long currTime; in itGetMs() local 89 currTime = ((t.tv_sec * 1000 * 1000) + (t.tv_usec)); in itGetMs() 90 return currTime; in itGetMs()
|