/prebuilts/ndk/4/platforms/android-5/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/4/platforms/android-8/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/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...] |
test_dfp1.c | 45 __asm__ __volatile__ ("mtcr %0" : : "b"(_arg) : ALLCR ); 48 __asm__ __volatile__ ("mtxer %0" : : "b"(_arg) : "xer" ); 51 __asm__ __volatile__ ("mfcr %0" : "=b"(_lval) ) 54 __asm__ __volatile__ ("mfxer %0" : "=b"(_lval) ) 70 __asm__ __volatile__ ("mtfsf 0xFF, %0" : : "f"(_d) ); \ 74 __asm__ __volatile__ ("mffs %0" : "=f"(_arg) ) 77 __asm__ __volatile__ ("mtfsf 1, %0, 0, 1" : : "f"(f14) ) 85 __asm__ __volatile__ ("dadd. %0, %1, %2" : "=f" (f18) : "f" (f14),"f" (f16)); 87 __asm__ __volatile__ ("dadd %0, %1, %2" : "=f" (f18) : "f" (f14),"f" (f16)); 93 __asm__ __volatile__ ("dsub. %0, %1, %2" : "=f" (f18) : "f" (f14),"f" (f16)) [all...] |
/external/valgrind/main/none/tests/ppc64/ |
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/kernel-headers/original/asm-mips/ |
bug.h | 12 __asm__ __volatile__("break %0" : : "i" (BRK_BUG)); \ 21 __asm__ __volatile__("tne $0, %0, %1" \
|
/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__ (
|
/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__ (
|
/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" );
|
/external/kernel-headers/original/asm-arm/ |
spinlock.h | 30 __asm__ __volatile__( 50 __asm__ __volatile__( 70 __asm__ __volatile__( 94 __asm__ __volatile__( 114 __asm__ __volatile__( 134 __asm__ __volatile__( 164 __asm__ __volatile__( 186 __asm__ __volatile__( 206 __asm__ __volatile__(
|
/external/valgrind/main/memcheck/tests/ |
atomic_incs.c | 32 __asm__ __volatile__( 42 __asm__ __volatile__( 53 __asm__ __volatile__( 70 __asm__ __volatile__( 86 __asm__ __volatile__( 101 __asm__ __volatile__( 118 __asm__ __volatile__( 136 __asm__ __volatile__( 167 __asm__ __volatile__( 177 __asm__ __volatile__( [all...] |
/external/chromium/base/ |
atomicops_internals_x86_gcc.h | 22 #define ATOMICOPS_COMPILER_BARRIER() __asm__ __volatile__("" : : : "memory") 33 __asm__ __volatile__("lock; cmpxchgl %1,%2" 42 __asm__ __volatile__("xchgl %1,%0" // The lock prefix is implicit for xchg. 52 __asm__ __volatile__("lock; xaddl %0,%1" 62 __asm__ __volatile__("lock; xaddl %0,%1" 67 __asm__ __volatile__("lfence" : : : "memory"); 77 __asm__ __volatile__("lfence" : : : "memory"); 97 __asm__ __volatile__("mfence" : : : "memory"); 109 __asm__ __volatile__("mfence" : : : "memory"); 119 __asm__ __volatile__("mfence" : : : "memory") [all...] |
/external/chromium_org/base/ |
atomicops_internals_x86_gcc.h | 25 #define ATOMICOPS_COMPILER_BARRIER() __asm__ __volatile__("" : : : "memory") 36 __asm__ __volatile__("lock; cmpxchgl %1,%2" 45 __asm__ __volatile__("xchgl %1,%0" // The lock prefix is implicit for xchg. 55 __asm__ __volatile__("lock; xaddl %0,%1" 65 __asm__ __volatile__("lock; xaddl %0,%1" 70 __asm__ __volatile__("lfence" : : : "memory"); 80 __asm__ __volatile__("lfence" : : : "memory"); 100 __asm__ __volatile__("mfence" : : : "memory"); 112 __asm__ __volatile__("mfence" : : : "memory"); 122 __asm__ __volatile__("mfence" : : : "memory") [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/chromium_org/v8/src/ |
atomicops_internals_x86_gcc.h | 47 #define ATOMICOPS_COMPILER_BARRIER() __asm__ __volatile__("" : : : "memory") 55 __asm__ __volatile__("lock; cmpxchgl %1,%2" 64 __asm__ __volatile__("xchgl %1,%0" // The lock prefix is implicit for xchg. 74 __asm__ __volatile__("lock; xaddl %0,%1" 84 __asm__ __volatile__("lock; xaddl %0,%1" 89 __asm__ __volatile__("lfence" : : : "memory"); 99 __asm__ __volatile__("lfence" : : : "memory"); 119 __asm__ __volatile__("mfence" : : : "memory"); 131 __asm__ __volatile__("mfence" : : : "memory"); 141 __asm__ __volatile__("mfence" : : : "memory") [all...] |
/external/speex/libspeex/ |
lsp_bfin.h | 47 __asm__ __volatile__
|
/external/v8/src/ |
atomicops_internals_x86_gcc.h | 47 #define ATOMICOPS_COMPILER_BARRIER() __asm__ __volatile__("" : : : "memory") 55 __asm__ __volatile__("lock; cmpxchgl %1,%2" 64 __asm__ __volatile__("xchgl %1,%0" // The lock prefix is implicit for xchg. 74 __asm__ __volatile__("lock; xaddl %0,%1" 84 __asm__ __volatile__("lock; xaddl %0,%1" 89 __asm__ __volatile__("lfence" : : : "memory"); 99 __asm__ __volatile__("lfence" : : : "memory"); 119 __asm__ __volatile__("mfence" : : : "memory"); 131 __asm__ __volatile__("mfence" : : : "memory"); 141 __asm__ __volatile__("mfence" : : : "memory") [all...] |
/bionic/libc/private/ |
bionic_atomic_mips.h | 26 __asm__ __volatile__ ( "sync" : : : "memory" ); 33 __asm__ __volatile__ ( "" : : : "memory" ); 45 __asm__ __volatile__ ("1: move %[status], %[new_value] \n" 63 __asm__ __volatile__ ("1: move %[status], %[new_value] \n" 78 __asm__ __volatile__ ("1: ll %[prev], 0(%[ptr]) \n" 93 __asm__ __volatile__ ("1: ll %[prev], 0(%[ptr]) \n"
|
bionic_atomic_arm.h | 97 __asm__ __volatile__ ( "dmb" : : : "memory" ); 107 __asm__ __volatile__ ( 119 __asm__ __volatile__ ( "" : : : "memory" ); 136 __asm__ __volatile__ ( 159 __asm__ __volatile__ ( 179 __asm__ __volatile__ ( 200 __asm__ __volatile__ (
|