/prebuilts/ndk/6/platforms/android-9/arch-x86/usr/include/asm/ |
msr.h | 28 #define rdmsr(msr,val1,val2) __asm__ __volatile__("rdmsr" : "=a" (val1), "=d" (val2) : "c" (msr)) 30 #define rdmsrl(msr,val) do { unsigned long a__,b__; __asm__ __volatile__("rdmsr" : "=a" (a__), "=d" (b__) : "c" (msr)); val = a__ | (b__<<32); } while(0) 32 #define wrmsr(msr,val1,val2) __asm__ __volatile__("wrmsr" : : "c" (msr), "a" (val1), "d" (val2)) 36 #define rdtsc(low,high) __asm__ __volatile__("rdtsc" : "=a" (low), "=d" (high)) 38 #define rdtscl(low) __asm__ __volatile__ ("rdtsc" : "=a" (low) : : "edx") 40 #define rdtscp(low,high,aux) __asm__ __volatile__ (".byte 0x0f,0x01,0xf9" : "=a" (low), "=d" (high), "=c" (aux)) 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) 44 #define rdtscpll(val, aux) do { unsigned long __a, __d; __asm__ __volatile__ (".byte 0x0f,0x01,0xf9" : "=a" (__a), "=d" (__d), "=c" (aux)); (val) = (__d << 32) | __a; } while (0) 50 #define rdpmc(counter,low,high) __asm__ __volatile__("rdpmc" : "=a" (low), "=d" (high) : "c" (counter))
|
/prebuilts/ndk/7/platforms/android-14/arch-x86/usr/include/asm/ |
msr.h | 28 #define rdmsr(msr,val1,val2) __asm__ __volatile__("rdmsr" : "=a" (val1), "=d" (val2) : "c" (msr)) 30 #define rdmsrl(msr,val) do { unsigned long a__,b__; __asm__ __volatile__("rdmsr" : "=a" (a__), "=d" (b__) : "c" (msr)); val = a__ | (b__<<32); } while(0) 32 #define wrmsr(msr,val1,val2) __asm__ __volatile__("wrmsr" : : "c" (msr), "a" (val1), "d" (val2)) 36 #define rdtsc(low,high) __asm__ __volatile__("rdtsc" : "=a" (low), "=d" (high)) 38 #define rdtscl(low) __asm__ __volatile__ ("rdtsc" : "=a" (low) : : "edx") 40 #define rdtscp(low,high,aux) __asm__ __volatile__ (".byte 0x0f,0x01,0xf9" : "=a" (low), "=d" (high), "=c" (aux)) 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) 44 #define rdtscpll(val, aux) do { unsigned long __a, __d; __asm__ __volatile__ (".byte 0x0f,0x01,0xf9" : "=a" (__a), "=d" (__d), "=c" (aux)); (val) = (__d << 32) | __a; } while (0) 50 #define rdpmc(counter,low,high) __asm__ __volatile__("rdpmc" : "=a" (low), "=d" (high) : "c" (counter))
|
/prebuilts/ndk/7/platforms/android-9/arch-x86/usr/include/asm/ |
msr.h | 28 #define rdmsr(msr,val1,val2) __asm__ __volatile__("rdmsr" : "=a" (val1), "=d" (val2) : "c" (msr)) 30 #define rdmsrl(msr,val) do { unsigned long a__,b__; __asm__ __volatile__("rdmsr" : "=a" (a__), "=d" (b__) : "c" (msr)); val = a__ | (b__<<32); } while(0) 32 #define wrmsr(msr,val1,val2) __asm__ __volatile__("wrmsr" : : "c" (msr), "a" (val1), "d" (val2)) 36 #define rdtsc(low,high) __asm__ __volatile__("rdtsc" : "=a" (low), "=d" (high)) 38 #define rdtscl(low) __asm__ __volatile__ ("rdtsc" : "=a" (low) : : "edx") 40 #define rdtscp(low,high,aux) __asm__ __volatile__ (".byte 0x0f,0x01,0xf9" : "=a" (low), "=d" (high), "=c" (aux)) 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) 44 #define rdtscpll(val, aux) do { unsigned long __a, __d; __asm__ __volatile__ (".byte 0x0f,0x01,0xf9" : "=a" (__a), "=d" (__d), "=c" (aux)); (val) = (__d << 32) | __a; } while (0) 50 #define rdpmc(counter,low,high) __asm__ __volatile__("rdpmc" : "=a" (low), "=d" (high) : "c" (counter))
|
/external/valgrind/main/none/tests/ppc32/ |
test_dfp4.c | 48 __asm__ __volatile__ ("mtcr %0" : : "b"(_arg) : ALLCR ); 51 __asm__ __volatile__ ("mtxer %0" : : "b"(_arg) : "xer" ); 54 __asm__ __volatile__ ("mfcr %0" : "=b"(_lval) ) 57 __asm__ __volatile__ ("mfxer %0" : "=b"(_lval) ) 73 __asm__ __volatile__ ("mtfsf 0xFF, %0" : : "f"(_d) ); \ 77 __asm__ __volatile__ ("mffs %0" : "=f"(_arg) ) 80 __asm__ __volatile__ ("mtfsf 1, %0, 0, 1" : : "f"(f14) ) 101 __asm__ __volatile__ ("dtstdc 5, %0, 1" : : "f" (f14)); 103 __asm__ __volatile__ ("dtstdc 0, %0, 1" : : "f" (f14)); 107 __asm__ __volatile__ ("dtstdc 5, %0, 2" : : "f" (f14)) [all...] |
test_dfp3.c | 46 __asm__ __volatile__ ("mtcr %0" : : "b"(_arg) : ALLCR ); 49 __asm__ __volatile__ ("mtxer %0" : : "b"(_arg) : "xer" ); 52 __asm__ __volatile__ ("mfcr %0" : "=b"(_lval) ) 55 __asm__ __volatile__ ("mfxer %0" : "=b"(_lval) ) 71 __asm__ __volatile__ ("mtfsf 0xFF, %0" : : "f"(_d) ); \ 75 __asm__ __volatile__ ("mffs %0" : "=f"(_arg) ) 78 __asm__ __volatile__ ("mtfsf 1, %0, 0, 1" : : "f"(f14) ) 91 __asm__ __volatile__ ("drintx 1, %0, %1, 0" : "=f" (f18) : "f" (f16)); 93 __asm__ __volatile__ ("drintx 0, %0, %1, 0" : "=f" (f18) : "f" (f16)); 97 __asm__ __volatile__ ("drintx 1, %0, %1, 1" : "=f" (f18) : "f" (f16)) [all...] |
/external/qemu/distrib/sdl-1.2.15/src/audio/ |
SDL_mixer_MMX.c | 42 __asm__ __volatile__ ( 144 __asm__ __volatile__ (
|
/external/valgrind/main/none/tests/amd64/ |
bug132813-amd64.c | 7 __asm__ __volatile__ ( 26 __asm__ __volatile__ ( 45 __asm__ __volatile__ ( 64 __asm__ __volatile__ ( 83 __asm__ __volatile__ ( 102 __asm__ __volatile__ ( 122 __asm__ __volatile__ ( 141 __asm__ __volatile__ (
|
xacq_xrel.c | 19 __asm__ __volatile__( \ 55 __asm__ __volatile__( \ 79 __asm__ __volatile__( 100 __asm__ __volatile__( 121 __asm__ __volatile__( 143 __asm__ __volatile__( 164 __asm__ __volatile__( 180 __asm__ __volatile__( 205 __asm__ __volatile__( 230 __asm__ __volatile__( [all...] |
/external/valgrind/main/none/tests/mips32/ |
block_size.c | 6 __asm__ __volatile__( 35 __asm__ __volatile__(
|
/external/valgrind/main/none/tests/mips64/ |
macro_load_store.h | 6 __asm__ __volatile__( \ 25 __asm__ __volatile__( \ 50 __asm__ __volatile__( \ 68 __asm__ __volatile__( \ 86 __asm__ __volatile__( \ 107 __asm__ __volatile__( \ 124 __asm__ __volatile__( \ 141 __asm__ __volatile__( \
|
test_block_size.c | 6 __asm__ __volatile__( 35 __asm__ __volatile__(
|
fpu_control_word.c | 6 __asm__ __volatile__( \
|
/external/valgrind/main/none/tests/x86/ |
bug132813-x86.c | 7 __asm__ __volatile__ ( 26 __asm__ __volatile__ ( 45 __asm__ __volatile__ ( 64 __asm__ __volatile__ ( 83 __asm__ __volatile__ ( 102 __asm__ __volatile__ ( 122 __asm__ __volatile__ ( 141 __asm__ __volatile__ (
|
/bionic/libc/private/ |
bionic_atomic_arm.h | 21 __asm__ __volatile__ ( "dmb ish" : : : "memory" ); 24 __asm__ __volatile__ ( "" : : : "memory" ); 35 __asm__ __volatile__ ( 54 __asm__ __volatile__ ( 68 __asm__ __volatile__ (
|
bionic_atomic_mips.h | 25 __asm__ __volatile__ ( "sync" : : : "memory" ); 28 __asm__ __volatile__ ( "" : : : "memory" ); 38 __asm__ __volatile__ ("1: move %[status], %[new_value] \n" 53 __asm__ __volatile__ ("1: move %[status], %[new_value] \n" 66 __asm__ __volatile__ ("1: ll %[prev], 0(%[ptr]) \n"
|
bionic_atomic_arm64.h | 21 __asm__ __volatile__ ( "dmb ish" : : : "memory" ); 30 __asm__ __volatile__ ( 47 __asm__ __volatile__ ( 61 __asm__ __volatile__ (
|
/external/valgrind/main/VEX/test/ |
frstor.c | 7 asm __volatile__("fninit"); 8 asm __volatile__("fldpi"); 9 asm __volatile__("fld1"); 10 asm __volatile__("fldln2"); 11 asm __volatile__("fsave (%0)" : : "r" (p) : "memory" ); 16 asm __volatile__("fsave (%0)" : : "r" (p) : "memory" ); 21 asm __volatile__("frstor (%0)" : : "r" (p) : "memory" );
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
conio.h | 99 __asm__ __volatile__ ("inb %w1,%b0" 107 __asm__ __volatile__ ("inw %w1,%w0" 115 __asm__ __volatile__ ("inl %w1,%0" 122 __asm__ __volatile__ ("outb %b0,%w1" 128 __asm__ __volatile__ ("outw %w0,%w1" 134 __asm__ __volatile__ ("outl %0,%w1" 140 __asm__ __volatile__ ( 148 __asm__ __volatile__ ( 156 __asm__ __volatile__ ( 165 __asm__ __volatile__ ( [all...] |
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/ |
atomicops_internals_x86_gcc.h | 51 #define ATOMICOPS_COMPILER_BARRIER() __asm__ __volatile__("" : : : "memory") 59 __asm__ __volatile__("lock; cmpxchgl %1,%2" 68 __asm__ __volatile__("xchgl %1,%0" // The lock prefix is implicit for xchg. 78 __asm__ __volatile__("lock; xaddl %0,%1" 88 __asm__ __volatile__("lock; xaddl %0,%1" 93 __asm__ __volatile__("lfence" : : : "memory"); 103 __asm__ __volatile__("lfence" : : : "memory"); 123 __asm__ __volatile__("mfence" : : : "memory"); 135 __asm__ __volatile__("mfence" : : : "memory"); 145 __asm__ __volatile__("mfence" : : : "memory") [all...] |
/external/clang/lib/Headers/ |
ia32intrin.h | 36 __asm__ __volatile__ ("pushf\n\t" 48 __asm__ __volatile__ ("pushq %0\n\t" 61 __asm__ __volatile__ ("pushf\n\t" 73 __asm__ __volatile__ ("pushl %0\n\t"
|
/external/fio/arch/ |
arch-x86_64.h | 41 #define nop __asm__ __volatile__("rep;nop": : :"memory") 42 #define read_barrier() __asm__ __volatile__("lfence":::"memory") 43 #define write_barrier() __asm__ __volatile__("sfence":::"memory") 55 __asm__ __volatile__("rdtsc" : "=a" (lo), "=d" (hi));
|
/external/speex/libspeex/ |
lsp_bfin.h | 47 __asm__ __volatile__
|
/prebuilts/clang/darwin-x86/host/3.5/lib/clang/3.5/include/ |
ia32intrin.h | 36 __asm__ __volatile__ ("pushf\n\t" 48 __asm__ __volatile__ ("pushq %0\n\t" 61 __asm__ __volatile__ ("pushf\n\t" 73 __asm__ __volatile__ ("pushl %0\n\t"
|
/prebuilts/clang/linux-x86/host/3.5/lib/clang/3.5/include/ |
ia32intrin.h | 36 __asm__ __volatile__ ("pushf\n\t" 48 __asm__ __volatile__ ("pushq %0\n\t" 61 __asm__ __volatile__ ("pushf\n\t" 73 __asm__ __volatile__ ("pushl %0\n\t"
|
/prebuilts/sdk/renderscript/clang-include/ |
ia32intrin.h | 36 __asm__ __volatile__ ("pushf\n\t" 48 __asm__ __volatile__ ("pushq %0\n\t" 61 __asm__ __volatile__ ("pushf\n\t" 73 __asm__ __volatile__ ("pushl %0\n\t"
|