Lines Matching refs:PTime
28 PTime UTIL_getSpanTimeMicro(UTIL_time_t clockStart, UTIL_time_t clockEnd) in UTIL_getSpanTimeMicro()
42 PTime UTIL_getSpanTimeNano(UTIL_time_t clockStart, UTIL_time_t clockEnd) in UTIL_getSpanTimeNano()
62 PTime UTIL_getSpanTimeMicro(UTIL_time_t clockStart, UTIL_time_t clockEnd) in UTIL_getSpanTimeMicro()
70 return (((clockEnd - clockStart) * (PTime)rate.numer) / ((PTime)rate.denom))/1000ULL; in UTIL_getSpanTimeMicro()
73 PTime UTIL_getSpanTimeNano(UTIL_time_t clockStart, UTIL_time_t clockEnd) in UTIL_getSpanTimeNano()
81 return ((clockEnd - clockStart) * (PTime)rate.numer) / ((PTime)rate.denom); in UTIL_getSpanTimeNano()
118 PTime UTIL_getSpanTimeMicro(UTIL_time_t begin, UTIL_time_t end) in UTIL_getSpanTimeMicro()
121 PTime micro = 0; in UTIL_getSpanTimeMicro()
127 PTime UTIL_getSpanTimeNano(UTIL_time_t begin, UTIL_time_t end) in UTIL_getSpanTimeNano()
130 PTime nano = 0; in UTIL_getSpanTimeNano()
141 PTime UTIL_getSpanTimeMicro(UTIL_time_t clockStart, UTIL_time_t clockEnd) { return 1000000ULL * (cl… in UTIL_getSpanTimeMicro()
142 PTime UTIL_getSpanTimeNano(UTIL_time_t clockStart, UTIL_time_t clockEnd) { return 1000000000ULL * (… in UTIL_getSpanTimeNano()
149 PTime UTIL_clockSpanMicro(UTIL_time_t clockStart ) in UTIL_clockSpanMicro()
156 PTime UTIL_clockSpanNano(UTIL_time_t clockStart ) in UTIL_clockSpanNano()