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

  /external/chromium_org/third_party/mesa/src/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/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/chromium_org/third_party/smhasher/src/
Platform.h 32 // RDTSC == Read Time Stamp Counter
34 #define rdtsc() __rdtsc() macro
73 __inline__ unsigned long long int rdtsc() function
77 __asm__ volatile ("rdtsc" : "=a" (a), "=d" (d));
81 __asm__ volatile ("rdtsc" : "=A" (x));
  /prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/asm/
msr.h 36 #define rdtsc(low,high) __asm__ __volatile__("rdtsc" : "=a" (low), "=d" (high)) macro
38 #define rdtscl(low) __asm__ __volatile__ ("rdtsc" : "=a" (low) : : "edx")
42 #define rdtscll(val) do { unsigned int __a,__d; __asm__ __volatile__("rdtsc" : "=a" (__a), "=d" (__d)); (val) = ((unsigned long)__a) | (((unsigned long)__d)<<32); } while(0)
  /prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/asm/
msr.h 36 #define rdtsc(low,high) __asm__ __volatile__("rdtsc" : "=a" (low), "=d" (high)) macro
38 #define rdtscl(low) __asm__ __volatile__ ("rdtsc" : "=a" (low) : : "edx")
42 #define rdtscll(val) do { unsigned int __a,__d; __asm__ __volatile__("rdtsc" : "=a" (__a), "=d" (__d)); (val) = ((unsigned long)__a) | (((unsigned long)__d)<<32); } while(0)
  /prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/asm/
msr.h 36 #define rdtsc(low,high) __asm__ __volatile__("rdtsc" : "=a" (low), "=d" (high)) macro
38 #define rdtscl(low) __asm__ __volatile__ ("rdtsc" : "=a" (low) : : "edx")
42 #define rdtscll(val) do { unsigned int __a,__d; __asm__ __volatile__("rdtsc" : "=a" (__a), "=d" (__d)); (val) = ((unsigned long)__a) | (((unsigned long)__d)<<32); } while(0)
  /prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/asm/
msr.h 36 #define rdtsc(low,high) __asm__ __volatile__("rdtsc" : "=a" (low), "=d" (high)) macro
38 #define rdtscl(low) __asm__ __volatile__ ("rdtsc" : "=a" (low) : : "edx")
42 #define rdtscll(val) do { unsigned int __a,__d; __asm__ __volatile__("rdtsc" : "=a" (__a), "=d" (__d)); (val) = ((unsigned long)__a) | (((unsigned long)__d)<<32); } while(0)
  /prebuilts/ndk/7/platforms/android-9/arch-x86/usr/include/asm/
msr.h 36 #define rdtsc(low,high) __asm__ __volatile__("rdtsc" : "=a" (low), "=d" (high)) macro
38 #define rdtscl(low) __asm__ __volatile__ ("rdtsc" : "=a" (low) : : "edx")
42 #define rdtscll(val) do { unsigned int __a,__d; __asm__ __volatile__("rdtsc" : "=a" (__a), "=d" (__d)); (val) = ((unsigned long)__a) | (((unsigned long)__d)<<32); } while(0)
  /external/linux-tools-perf/perf-3.12.0/tools/perf/tests/
perf-time-to-tsc.c 30 static u64 rdtsc(void) function
34 asm volatile("rdtsc" : "=a" (low), "=d" (high));
111 test_tsc = rdtsc();
151 pr_debug("rdtsc time %"PRIu64" tsc %"PRIu64"\n",
rdpmc.c 23 static u64 rdtsc(void) function
27 asm volatile("rdtsc" : "=a" (low), "=d" (high));
46 cyc = rdtsc();
  /external/chromium_org/tools/traceline/traceline/
stubs.asm 21 rdtsc label

Completed in 1256 milliseconds