/prebuilts/ndk/9/platforms/android-3/arch-arm/usr/include/linux/ |
compiler-gcc.h | 12 #define barrier() __asm__ __volatile__("": : :"memory")
|
/prebuilts/ndk/9/platforms/android-4/arch-arm/usr/include/linux/ |
compiler-gcc.h | 12 #define barrier() __asm__ __volatile__("": : :"memory")
|
/prebuilts/ndk/9/platforms/android-5/arch-arm/usr/include/linux/ |
compiler-gcc.h | 12 #define barrier() __asm__ __volatile__("": : :"memory")
|
/prebuilts/ndk/9/platforms/android-8/arch-arm/usr/include/linux/ |
compiler-gcc.h | 12 #define barrier() __asm__ __volatile__("": : :"memory")
|
/prebuilts/ndk/9/platforms/android-9/arch-arm/usr/include/linux/ |
compiler-gcc.h | 12 #define barrier() __asm__ __volatile__("": : :"memory")
|
/prebuilts/ndk/9/platforms/android-9/arch-mips/usr/include/linux/ |
compiler-gcc.h | 12 #define barrier() __asm__ __volatile__("": : :"memory")
|
/prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/asm/ |
io_32.h | 31 #define BUILDIO(bwl,bw,type) static inline void out##bwl##_local(unsigned type value, int port) { __asm__ __volatile__("out" #bwl " %" #bw "0, %w1" : : "a"(value), "Nd"(port)); } static inline unsigned type in##bwl##_local(int port) { unsigned type value; __asm__ __volatile__("in" #bwl " %w1, %" #bw "0" : "=a"(value) : "Nd"(port)); return value; } static inline void out##bwl##_local_p(unsigned type value, int port) { out##bwl##_local(value, port); slow_down_io(); } static inline unsigned type in##bwl##_local_p(int port) { unsigned type value = in##bwl##_local(port); slow_down_io(); return value; } __BUILDIO(bwl,bw,type) static inline void out##bwl##_p(unsigned type value, int port) { out##bwl(value, port); slow_down_io(); } static inline unsigned type in##bwl##_p(int port) { unsigned type value = in##bwl(port); slow_down_io(); return value; } static inline void outs##bwl(int port, const void *addr, unsigned long count) { __asm__ __volatile__("rep; outs" #bwl : "+S"(addr), "+c"(count) : "d"(port)); } static inline void ins##bwl(int port, void *addr, unsigned long count) { __asm__ __volatile__("rep; ins" #bwl : "+D"(addr), "+c"(count) : "d"(port)); }
|
system_32.h | 26 #define nop() __asm__ __volatile__ ("nop")
|
/prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/linux/ |
compiler-gcc.h | 12 #define barrier() __asm__ __volatile__("": : :"memory")
|
/system/core/include/cutils/ |
atomic-x86.h | 28 __asm__ __volatile__ ("" : : : "memory"); 39 __asm__ __volatile__ ("mfence" : : : "memory"); 76 __asm__ __volatile__ ("lock; cmpxchgl %1, %2" 104 __asm__ __volatile__ ("lock; xaddl %0, %1"
|
atomic-x86_64.h | 41 __asm__ __volatile__ ("" : : : "memory"); 47 __asm__ __volatile__ ("mfence" : : : "memory"); 84 __asm__ __volatile__ ("lock; cmpxchgl %1, %2" 110 __asm__ __volatile__ ("lock; xaddl %0, %1"
|
/external/valgrind/main/none/tests/amd64/ |
fma.c | 31 __asm __volatile__ ("vfmadd132ss %2, %3, %0" : "=x" (w) : "0" (ft.x[i]), "x" (ft.y[i]), "x" (ft.z[i])); 33 __asm __volatile__ ("vfmadd132ss %2, %3, %0" : "=x" (w) : "0" (ft.x[i]), "m" (ft.y[i]), "x" (ft.z[i])); 35 __asm __volatile__ ("vfmadd213ss %3, %2, %0" : "=x" (w) : "0" (ft.x[i]), "x" (ft.y[i]), "x" (ft.z[i])); 37 __asm __volatile__ ("vfmadd213ss %3, %2, %0" : "=x" (w) : "0" (ft.x[i]), "x" (ft.y[i]), "m" (ft.z[i])); 39 __asm __volatile__ ("vfmadd231ss %2, %1, %0" : "=x" (w) : "x" (ft.x[i]), "x" (ft.y[i]), "0" (ft.z[i])); 41 __asm __volatile__ ("vfmadd231ss %2, %1, %0" : "=x" (w) : "x" (ft.x[i]), "m" (ft.y[i]), "0" (ft.z[i])); 47 __asm __volatile__ ("vfnmsub132ss %2, %3, %0" : "=x" (w) : "0" (ft.x[i]), "x" (ft.y[i]), "x" (ft.z[i])); 49 __asm __volatile__ ("vfnmsub132ss %2, %3, %0" : "=x" (w) : "0" (ft.x[i]), "m" (ft.y[i]), "x" (ft.z[i])); 51 __asm __volatile__ ("vfnmsub213ss %3, %2, %0" : "=x" (w) : "0" (ft.x[i]), "x" (ft.y[i]), "x" (ft.z[i])); 53 __asm __volatile__ ("vfnmsub213ss %3, %2, %0" : "=x" (w) : "0" (ft.x[i]), "x" (ft.y[i]), "m" (ft.z[i])) [all...] |
/external/chromium_org/third_party/opus/src/celt/arm/ |
kiss_fft_armv4.h | 41 __asm__ __volatile__( \ 69 __asm__ __volatile__( \ 97 __asm__ __volatile__( \
|
/external/fio/arch/ |
arch-ppc.h | 29 #define read_barrier() __asm__ __volatile__ ("lwsync" : : : "memory") 31 #define read_barrier() __asm__ __volatile__ ("sync" : : : "memory") 34 #define write_barrier() __asm__ __volatile__ ("sync" : : : "memory")
|
/external/libopus/celt/arm/ |
kiss_fft_armv4.h | 41 __asm__ __volatile__( \ 69 __asm__ __volatile__( \ 97 __asm__ __volatile__( \
|
/external/chromium_org/third_party/libvpx/source/libvpx/vp9/common/mips/dspr2/ |
vp9_mbloop_loopfilter_dspr2.c | 45 __asm__ __volatile__ ( 68 __asm__ __volatile__ ( 92 __asm__ __volatile__ ( 117 __asm__ __volatile__ ( 147 __asm__ __volatile__ ( 162 __asm__ __volatile__ ( 176 __asm__ __volatile__ ( 196 __asm__ __volatile__ ( 211 __asm__ __volatile__ ( 225 __asm__ __volatile__ ( [all...] |
/external/libvpx/libvpx/vp9/common/mips/dspr2/ |
vp9_mbloop_loopfilter_dspr2.c | 45 __asm__ __volatile__ ( 68 __asm__ __volatile__ ( 92 __asm__ __volatile__ ( 117 __asm__ __volatile__ ( 147 __asm__ __volatile__ ( 162 __asm__ __volatile__ ( 176 __asm__ __volatile__ ( 196 __asm__ __volatile__ ( 211 __asm__ __volatile__ ( 225 __asm__ __volatile__ ( [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp9/common/mips/dspr2/ |
vp9_mbloop_loopfilter_dspr2.c | 45 __asm__ __volatile__ ( 68 __asm__ __volatile__ ( 92 __asm__ __volatile__ ( 117 __asm__ __volatile__ ( 147 __asm__ __volatile__ ( 162 __asm__ __volatile__ ( 176 __asm__ __volatile__ ( 196 __asm__ __volatile__ ( 211 __asm__ __volatile__ ( 225 __asm__ __volatile__ ( [all...] |
/external/chromium_org/third_party/libvpx/source/libvpx/vp8/common/mips/dspr2/ |
loopfilter_filters_dspr2.c | 22 __asm__ __volatile__ ( 33 __asm__ __volatile__ ( 65 __asm__ __volatile__ ( 124 __asm__ __volatile__ ( 216 __asm__ __volatile__ ( 256 __asm__ __volatile__ ( 291 __asm__ __volatile__ ( 321 __asm__ __volatile__ ( 728 __asm__ __volatile__ ( 752 __asm__ __volatile__ ( [all...] |
/external/libvpx/libvpx/vp8/common/mips/dspr2/ |
loopfilter_filters_dspr2.c | 22 __asm__ __volatile__ ( 33 __asm__ __volatile__ ( 65 __asm__ __volatile__ ( 124 __asm__ __volatile__ ( 216 __asm__ __volatile__ ( 256 __asm__ __volatile__ ( 291 __asm__ __volatile__ ( 321 __asm__ __volatile__ ( 728 __asm__ __volatile__ ( 752 __asm__ __volatile__ ( [all...] |
/hardware/intel/common/omx-components/videocodec/libvpx_internal/libvpx/vp8/common/mips/dspr2/ |
loopfilter_filters_dspr2.c | 22 __asm__ __volatile__ ( 33 __asm__ __volatile__ ( 65 __asm__ __volatile__ ( 124 __asm__ __volatile__ ( 216 __asm__ __volatile__ ( 256 __asm__ __volatile__ ( 291 __asm__ __volatile__ ( 321 __asm__ __volatile__ ( 728 __asm__ __volatile__ ( 752 __asm__ __volatile__ ( [all...] |
/external/chromium_org/third_party/leveldatabase/src/port/ |
atomic_pointer.h | 65 __asm__ __volatile__("" : : : "memory"); 160 __asm__ __volatile__ ( 169 __asm__ __volatile__ ( 190 __asm__ __volatile__ ( 199 __asm__ __volatile__ (
|
/external/chromium_org/base/ |
atomicops_internals_arm64_gcc.h | 24 __asm__ __volatile__ ("dmb ish" ::: "memory"); // NOLINT 41 __asm__ __volatile__ ( // NOLINT 65 __asm__ __volatile__ ( // NOLINT 85 __asm__ __volatile__ ( // NOLINT 138 __asm__ __volatile__ ( // NOLINT 153 __asm__ __volatile__ ( // NOLINT 177 __asm__ __volatile__ ( // NOLINT 201 __asm__ __volatile__ ( // NOLINT 221 __asm__ __volatile__ ( // NOLINT 274 __asm__ __volatile__ ( // NOLIN [all...] |
/external/chromium_org/third_party/protobuf/src/google/protobuf/stubs/ |
atomicops_internals_arm64_gcc.h | 41 __asm__ __volatile__ ("dmb ish" ::: "memory"); // NOLINT 58 __asm__ __volatile__ ( // NOLINT 82 __asm__ __volatile__ ( // NOLINT 102 __asm__ __volatile__ ( // NOLINT 155 __asm__ __volatile__ ( // NOLINT 170 __asm__ __volatile__ ( // NOLINT 194 __asm__ __volatile__ ( // NOLINT 218 __asm__ __volatile__ ( // NOLINT 238 __asm__ __volatile__ ( // NOLINT 291 __asm__ __volatile__ ( // NOLIN [all...] |
/external/chromium_org/third_party/tcmalloc/chromium/src/base/ |
atomicops-internals-arm-v6plus.h | 67 __asm__ __volatile__( 86 __asm__ __volatile__( 101 __asm__ __volatile__( 115 __asm__ __volatile__("dmb" : : : "memory"); 121 __asm__ __volatile__( 190 __asm__ __volatile__( 212 __asm__ __volatile__( 228 __asm__ __volatile__( 246 __asm__ __volatile__( 264 __asm__ __volatile__( [all...] |