HomeSort by relevance Sort by last modified time
    Searched defs:rdtsc (Results 1 - 4 of 4) sorted by null

  /external/mesa3d/src/gallium/drivers/llvmpipe/
lp_test.h 76 #define rdtsc() __rdtsc() macro
81 rdtsc(void) function
84 __asm__ __volatile__ ("rdtsc" : "=a"(lo), "=d"(hi));
90 #define rdtsc() 0 macro
  /external/autotest/client/tests/iosched_bugs/src/
dirty.c 14 rdtsc(void) function
18 __asm __volatile("rdtsc" : "=A" (tsc));
48 s = rdtsc();
51 e = rdtsc();
  /external/autotest/client/tests/monotonic_time/src/
time_test.c 76 static inline uint64_t rdtsc(void) function
79 __asm__ __volatile__("rdtsc" : "=a" (tsc_lo), "=d" (tsc_hi));
83 static inline uint64_t rdtsc(void) function
86 __asm__ __volatile__("rdtsc" : "=A" (tsc));
90 #error "rdtsc() not implemented for this architecture"
97 return rdtsc();
104 return rdtsc();
  /external/autotest/client/tests/tsc/src/
checktsc.c 147 static inline uint64_t rdtsc(void) function
151 __asm__ __volatile__("rdtsc" : "=a" (tsc_lo), "=d" (tsc_hi));
156 static inline uint64_t rdtsc(void) function
160 __asm__ __volatile__("rdtsc" : "=A" (tsc));
216 t0 = rdtsc();
219 t1 = rdtsc();
266 slave_tsc = rdtsc();

Completed in 116 milliseconds