HomeSort by relevance Sort by last modified time
    Searched refs:__asm__ (Results 101 - 125 of 1021) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/kernel-headers/original/asm-mips/
barrier.h 68 __asm__ __volatile__( \
82 __asm__ __volatile__( \
97 __asm__ __volatile__( \
144 #define smp_mb() __asm__ __volatile__(__WEAK_ORDERING_MB : : :"memory")
145 #define smp_rmb() __asm__ __volatile__(__WEAK_ORDERING_MB : : :"memory")
146 #define smp_wmb() __asm__ __volatile__(__WEAK_ORDERING_MB : : :"memory")
151 #define smp_llsc_mb() __asm__ __volatile__(__WEAK_LLSC_MB : : :"memory")
152 #define smp_llsc_rmb() __asm__ __volatile__(__WEAK_LLSC_MB : : :"memory")
153 #define smp_llsc_wmb() __asm__ __volatile__(__WEAK_LLSC_MB : : :"memory")
bug.h 12 __asm__ __volatile__("break %0" : : "i" (BRK_BUG)); \
21 __asm__ __volatile__("tne $0, %0, %1" \
  /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/webrtc/src/common_audio/signal_processing/include/
spl_inl_armv7.h 21 __asm__("smulwb %0, %1, %2":"=r"(tmp):"r"(b), "r"(a));
29 __asm__("pkhbt %0, %1, %2, lsl #16" : "=r"(tmp) : "r"(b), "r"(a));
30 __asm__("smmul %0, %1, %2":"=r"(tmp):"r"(tmp), "r"(c));
37 __asm__("smmul %0, %1, %2":"=r"(tmp):"r"(a), "r"(b));
44 __asm__("smulbb %0, %1, %2":"=r"(tmp):"r"(a), "r"(b));
52 __asm__("smlabb %0, %1, %2, %3":"=r"(tmp):"r"(a), "r"(b), "r"(c));
60 __asm__("qadd16 %0, %1, %2":"=r"(s_sum):"r"(a), "r"(b));
69 __asm__("qadd %0, %1, %2":"=r"(l_sum):"r"(l_var1), "r"(l_var2));
78 __asm__("qsub16 %0, %1, %2":"=r"(s_sub):"r"(var1), "r"(var2));
87 __asm__("qsub %0, %1, %2":"=r"(l_sub):"r"(l_var1), "r"(l_var2))
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/asm/
msr.h 24 __asm__ __volatile__("rdmsr" \
30 __asm__ __volatile__("rdmsr" \
37 __asm__ __volatile__("wrmsr" \
44 __asm__ __volatile__("rdtsc" : "=a" (low), "=d" (high))
47 __asm__ __volatile__ ("rdtsc" : "=a" (low) : : "edx")
50 __asm__ __volatile__ (".byte 0x0f,0x01,0xf9" : "=a" (low), "=d" (high), "=c" (aux))
54 __asm__ __volatile__("rdtsc" : "=a" (__a), "=d" (__d)); \
60 __asm__ __volatile__ (".byte 0x0f,0x01,0xf9" : "=a" (__a), "=d" (__d), "=c" (aux)); \
69 __asm__ __volatile__("rdpmc" \
77 __asm__("cpuid
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/asm/
msr.h 24 __asm__ __volatile__("rdmsr" \
30 __asm__ __volatile__("rdmsr" \
37 __asm__ __volatile__("wrmsr" \
44 __asm__ __volatile__("rdtsc" : "=a" (low), "=d" (high))
47 __asm__ __volatile__ ("rdtsc" : "=a" (low) : : "edx")
50 __asm__ __volatile__ (".byte 0x0f,0x01,0xf9" : "=a" (low), "=d" (high), "=c" (aux))
54 __asm__ __volatile__("rdtsc" : "=a" (__a), "=d" (__d)); \
60 __asm__ __volatile__ (".byte 0x0f,0x01,0xf9" : "=a" (__a), "=d" (__d), "=c" (aux)); \
69 __asm__ __volatile__("rdpmc" \
77 __asm__("cpuid
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/asm/
msr.h 24 __asm__ __volatile__("rdmsr" \
30 __asm__ __volatile__("rdmsr" \
37 __asm__ __volatile__("wrmsr" \
44 __asm__ __volatile__("rdtsc" : "=a" (low), "=d" (high))
47 __asm__ __volatile__ ("rdtsc" : "=a" (low) : : "edx")
50 __asm__ __volatile__ (".byte 0x0f,0x01,0xf9" : "=a" (low), "=d" (high), "=c" (aux))
54 __asm__ __volatile__("rdtsc" : "=a" (__a), "=d" (__d)); \
60 __asm__ __volatile__ (".byte 0x0f,0x01,0xf9" : "=a" (__a), "=d" (__d), "=c" (aux)); \
69 __asm__ __volatile__("rdpmc" \
77 __asm__("cpuid
    [all...]
  /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 30 register double f14 __asm__ ("fr14");
31 register double f15 __asm__ ("fr15");
32 register double f16 __asm__ ("fr16");
33 register double f17 __asm__ ("fr17");
34 register double f18 __asm__ ("fr18");
35 register double f19 __asm__ ("fr19");
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)
    [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 30 register double f14 __asm__ ("fr14");
31 register double f15 __asm__ ("fr15");
32 register double f16 __asm__ ("fr16");
33 register double f17 __asm__ ("fr17");
34 register double f18 __asm__ ("fr18");
35 register double f19 __asm__ ("fr19");
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)
    [all...]
  /prebuilts/gcc/darwin-x86/host/i686-apple-darwin-4.2.1/include/gcc/darwin/4.2/
ppc_intrinsics.h 114 * - The declarations use __asm__ instead of asm and __inline__ instead
184 #define __eieio() __asm__ ("eieio" : : : "memory")
192 __asm__ volatile ("isync")
199 #define __sync() __asm__ volatile ("sync")
206 #define __lwsync() __asm__ volatile ("sync 1")
220 __asm__ volatile ("lhbrx %0, %1, %2" : "=r" (__ppc_i_lhbrxResult) : "b%" (index), "r" (base) : "memory"); \
230 __asm__ volatile ("lwbrx %0, %1, %2" : "=r" (__ppc_i_lwbrxResult) : "b%" (index), "r" (base) : "memory"); \
239 __asm__ ("sthbrx %0, %1, %2" : : "r" (value), "b%" (index), "r" (base) : "memory")
247 __asm__ ("stwbrx %0, %1, %2" : : "r" (value), "b%" (index), "r" (base) : "memory")
272 ({ __asm__ ("rlwimi %0,%2,%3,%4,%5" : "=r" (rA)
    [all...]
  /bionic/libc/kernel/arch-mips/asm/
hazards.h 26 #define ASMMACRO(name, code...) __asm__(".macro " #name "; " #code "; .endm"); static inline void name(void) { __asm__ __volatile__ (#name); }
  /development/ndk/platforms/android-9/arch-mips/include/asm/
hazards.h 26 #define ASMMACRO(name, code...) __asm__(".macro " #name "; " #code "; .endm"); static inline void name(void) { __asm__ __volatile__ (#name); }
  /external/aac/libFDK/include/mips/
clz_mips.h 99 __asm__ ("clz %0,%1" : "=d" (result) : "d" (value));
110 __asm__ ("clz %[result], %[value]" : [result] "=r" (result) : [value] "r" (value)) ;
  /external/clang/test/CodeGen/
x86_32-inline-asm.c 14 __asm__ volatile("wrmsr"
23 __asm__ volatile("outb %0, %w1" : : "a" (data), "Nd" (port)); // No error expected.
  /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__ (
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/asm/
hazards.h 26 #define ASMMACRO(name, code...) __asm__(".macro " #name "; " #code "; .endm"); static inline void name(void) { __asm__ __volatile__ (#name); }
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/asm/
hazards.h 26 #define ASMMACRO(name, code...) __asm__(".macro " #name "; " #code "; .endm"); static inline void name(void) { __asm__ __volatile__ (#name); }

Completed in 1713 milliseconds

1 2 3 45 6 7 8 91011>>