/external/llvm/test/CodeGen/X86/ |
rdtsc.ll | 1 ; RUN: llc < %s -march=x86 | grep rdtsc 2 ; RUN: llc < %s -march=x86-64 | grep rdtsc
|
2006-07-10-InlineAsmAConstraint.ll | 5 %tmp.i5 = call i64 asm sideeffect "rdtsc", "=A,~{dirflag},~{fpsr},~{flags}"( ) ; <i64> [#uses=1]
|
/external/dropbear/libtommath/etc/ |
timer.asm | 19 rdtsc
33 rdtsc
|
tune.c | 13 /* RDTSC from Scott Duplichan */ 19 __asm__ __volatile__ ("rdtsc\nmovl %%eax,%0\nmovl %%edx,4+%0\n"::"m"(a):"%eax","%edx"); 31 __asm rdtsc 40 #error need rdtsc function for this build
|
makefile | 17 # same app but using RDTSC for higher precision [requires 80586+], coff based gcc installs [e.g. ming, cygwin, djgpp]
|
/bionic/libc/kernel/arch-x86/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)
|
/development/ndk/platforms/android-9/arch-x86/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)
|
/prebuilt/ndk/android-ndk-r4/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)
|
/prebuilt/ndk/android-ndk-r4/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)
|
/prebuilt/ndk/android-ndk-r6/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)
|
/prebuilt/ndk/android-ndk-r7/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)
|
/prebuilt/ndk/android-ndk-r7/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/grub/netboot/ |
timer.c | 23 #define rdtsc(low,high) \ macro 24 __asm__ __volatile__("rdtsc" : "=a" (low), "=d" (high)) 27 __asm__ __volatile__ ("rdtsc" : "=A" (val)) 68 rdtsc(startlow,starthigh); 73 rdtsc(endlow,endhigh); 116 rdtsc(clocks_low, clocks_high);
|
/external/llvm/test/CodeGen/Generic/ |
2007-12-17-InvokeAsm.ll | 5 invoke void asm "rdtsc\0A\09movl %eax, $0\0A\09movl %edx, $1", "=*imr,=*imr,~{dirflag},~{fpsr},~{flags},~{dx},~{ax}"( i32* null, i32* null )
|
/prebuilt/linux-x86/toolchain/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/asm/ |
msr.h | 43 #define rdtsc(low,high) \ macro 44 __asm__ __volatile__("rdtsc" : "=a" (low), "=d" (high)) 47 __asm__ __volatile__ ("rdtsc" : "=a" (low) : : "edx") 54 __asm__ __volatile__("rdtsc" : "=a" (__a), "=d" (__d)); \
|
/external/zlib/contrib/testzlib/ |
testzlib.c | 25 // printf("rdtsc = %I64x\n",__rdtsc());
34 // printf("rdtsc = %I64x\n",__rdtsc());
44 rdtsc
223 printf("defcpr result rdtsc = %I64x\n\n",dwResRdtsc.QuadPart);
264 printf("uncpr result rdtsc = %I64x\n\n",dwResRdtsc.QuadPart);
|
/external/dropbear/libtomcrypt/testprof/ |
tomcrypt_test.h | 53 ulong64 rdtsc (void);
|
/external/kernel-headers/original/asm-x86/ |
tsc.h | 54 * RDTSC is already synchronous:
|
/external/dropbear/libtommath/demo/ |
timing.c | 42 /* RDTSC from Scott Duplichan */ 48 __asm__ __volatile__("rdtsc\nmovl %%eax,%0\nmovl %%edx,4+%0\n":: 63 __asm rdtsc 72 #error need rdtsc function for this build
|
/external/llvm/test/Transforms/Inline/ |
2007-04-15-InlineEH.ll | 11 call void asm "rdtsc\0A\09movl %eax, $0\0A\09movl %edx, $1", "=*imr,=*imr,~{dirflag},~{fpsr},~{flags},~{dx},~{ax}"( i32* null, i32* null ) nounwind
|
/external/openssl/crypto/rand/ |
rand_nw.c | 139 * but for now we will loop checking the time stamp counter (rdtsc) and 143 * the data returned by rdtsc. 160 rdtsc 164 asm volatile("rdtsc":"=a"(tsc)::"edx");
|
/external/qemu/distrib/sdl-1.2.12/include/ |
SDL_cpuinfo.h | 37 /* This function returns true if the CPU has the RDTSC instruction
|
/prebuilt/darwin-x86/sdl/include/SDL/ |
SDL_cpuinfo.h | 37 /* This function returns true if the CPU has the RDTSC instruction
|
/prebuilt/linux-x86/sdl/include/SDL/ |
SDL_cpuinfo.h | 37 /* This function returns true if the CPU has the RDTSC instruction
|
/prebuilt/windows/sdl/include/SDL/ |
SDL_cpuinfo.h | 37 /* This function returns true if the CPU has the RDTSC instruction
|