Home
last modified time | relevance | path

Searched refs:currTime (Results 1 – 5 of 5) sorted by relevance

/external/deqp/framework/delibs/deutil/
DdeClock.c59 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/
Dutility.cc71 void ACMTestTimer::CurrentTimeHMS(char* currTime) { in CurrentTimeHMS() argument
72 sprintf(currTime, "%4lu:%02u:%06.3f", _hour, _min, in CurrentTimeHMS()
Dutility.h73 void CurrentTimeHMS(char* currTime);
DChannel.cc417 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/
Dwrtxml.cpp1031 time_t currTime; in bundle_write_xml() local
1159 time(&currTime); in bundle_write_xml()
1160 strftime(timeBuf, sizeof(timeBuf), "%Y-%m-%dT%H:%M:%SZ", gmtime(&currTime)); in bundle_write_xml()