OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:__volatile__
(Results
276 - 300
of
887
) sorted by null
<<
11
12
13
14
15
16
17
18
19
20
>>
/prebuilts/ndk/9/platforms/android-15/arch-x86/usr/include/asm/
atomic_32.h
36
#define atomic_clear_mask(mask, addr) __asm__
__volatile__
(LOCK_PREFIX "andl %0,%1" : : "r" (~(mask)),"m" (*addr) : "memory")
37
#define atomic_set_mask(mask, addr) __asm__
__volatile__
(LOCK_PREFIX "orl %0,%1" : : "r" (mask),"m" (*(addr)) : "memory")
/prebuilts/ndk/9/platforms/android-16/arch-x86/usr/include/asm/
atomic_32.h
36
#define atomic_clear_mask(mask, addr) __asm__
__volatile__
(LOCK_PREFIX "andl %0,%1" : : "r" (~(mask)),"m" (*addr) : "memory")
37
#define atomic_set_mask(mask, addr) __asm__
__volatile__
(LOCK_PREFIX "orl %0,%1" : : "r" (mask),"m" (*(addr)) : "memory")
/prebuilts/ndk/9/platforms/android-17/arch-x86/usr/include/asm/
atomic_32.h
36
#define atomic_clear_mask(mask, addr) __asm__
__volatile__
(LOCK_PREFIX "andl %0,%1" : : "r" (~(mask)),"m" (*addr) : "memory")
37
#define atomic_set_mask(mask, addr) __asm__
__volatile__
(LOCK_PREFIX "orl %0,%1" : : "r" (mask),"m" (*(addr)) : "memory")
/prebuilts/ndk/9/platforms/android-18/arch-x86/usr/include/asm/
atomic_32.h
36
#define atomic_clear_mask(mask, addr) __asm__
__volatile__
(LOCK_PREFIX "andl %0,%1" : : "r" (~(mask)),"m" (*addr) : "memory")
37
#define atomic_set_mask(mask, addr) __asm__
__volatile__
(LOCK_PREFIX "orl %0,%1" : : "r" (mask),"m" (*(addr)) : "memory")
/prebuilts/ndk/9/platforms/android-19/arch-x86/usr/include/asm/
atomic_32.h
36
#define atomic_clear_mask(mask, addr) __asm__
__volatile__
(LOCK_PREFIX "andl %0,%1" : : "r" (~(mask)),"m" (*addr) : "memory")
37
#define atomic_set_mask(mask, addr) __asm__
__volatile__
(LOCK_PREFIX "orl %0,%1" : : "r" (mask),"m" (*(addr)) : "memory")
/prebuilts/ndk/9/platforms/android-9/arch-x86/usr/include/asm/
atomic_32.h
36
#define atomic_clear_mask(mask, addr) __asm__
__volatile__
(LOCK_PREFIX "andl %0,%1" : : "r" (~(mask)),"m" (*addr) : "memory")
37
#define atomic_set_mask(mask, addr) __asm__
__volatile__
(LOCK_PREFIX "orl %0,%1" : : "r" (mask),"m" (*(addr)) : "memory")
/external/valgrind/main/none/tests/ppc32/
test_isa_2_06_part3.c
56
__asm__
__volatile__
("mtcr %0" : : "b"(_arg) : ALLCR );
59
__asm__
__volatile__
("mtxer %0" : : "b"(_arg) : "xer" );
62
__asm__
__volatile__
("mfcr %0" : "=b"(_lval) )
65
__asm__
__volatile__
("mfxer %0" : "=b"(_lval) )
81
__asm__
__volatile__
("mtfsf 0xFF, %0" : : "f"(_d) ); \
573
__asm__
__volatile__
("xvredp %x0, %x1" : "=wa" (vec_out): "wa" (vec_inB));
578
__asm__
__volatile__
("xsredp %x0, %x1" : "=wa" (vec_out): "wa" (vec_inB));
583
__asm__
__volatile__
("xvrsqrtedp %x0, %x1" : "=wa" (vec_out): "wa" (vec_inB));
588
__asm__
__volatile__
("xsrsqrtedp %x0, %x1" : "=wa" (vec_out): "wa" (vec_inB));
593
__asm__
__volatile__
("xvrsqrtesp %x0, %x1" : "=wa" (vec_out): "wa" (vec_inB))
[
all
...]
/development/ndk/platforms/android-3/include/linux/
compiler-gcc.h
12
#define barrier() __asm__
__volatile__
("": : :"memory")
/development/ndk/platforms/android-9/arch-x86/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")
/external/chromium_org/skia/ext/
convolver_mips_dspr2.cc
28
__asm__
__volatile__
(
137
__asm__
__volatile__
(
248
__asm__
__volatile__
(
371
__asm__
__volatile__
(
/external/chromium_org/v8/src/base/
atomicops_internals_mips_gcc.h
27
__asm__
__volatile__
(".set push\n"
49
__asm__
__volatile__
(".set push\n"
72
__asm__
__volatile__
(".set push\n"
126
__asm__
__volatile__
("sync" : : : "memory");
/external/fio/arch/
arch-ia64.h
41
__asm__
__volatile__
("mov %0=ar.itc" : "=r" (ret) : : "memory");
/external/valgrind/main/helgrind/tests/
tc03_re_excl.c
13
__asm__
__volatile__
( "" : : "r"(x) : "cc","memory" );
/external/valgrind/main/none/tests/x86/
bug125959-x86.c
12
__asm__
__volatile__
(
/prebuilts/ndk/4/platforms/android-3/arch-arm/usr/include/linux/
compiler-gcc.h
12
#define barrier() __asm__
__volatile__
("": : :"memory")
/prebuilts/ndk/4/platforms/android-4/arch-arm/usr/include/linux/
compiler-gcc.h
12
#define barrier() __asm__
__volatile__
("": : :"memory")
/prebuilts/ndk/4/platforms/android-5/arch-arm/usr/include/linux/
compiler-gcc.h
12
#define barrier() __asm__
__volatile__
("": : :"memory")
/prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/asm/
io_32.h
26
#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
20
#define nop() __asm__
__volatile__
("nop")
/prebuilts/ndk/4/platforms/android-5/arch-x86/usr/include/linux/
compiler-gcc.h
12
#define barrier() __asm__
__volatile__
("": : :"memory")
/prebuilts/ndk/4/platforms/android-8/arch-arm/usr/include/linux/
compiler-gcc.h
12
#define barrier() __asm__
__volatile__
("": : :"memory")
/prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/asm/
io_32.h
26
#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
20
#define nop() __asm__
__volatile__
("nop")
/prebuilts/ndk/4/platforms/android-8/arch-x86/usr/include/linux/
compiler-gcc.h
12
#define barrier() __asm__
__volatile__
("": : :"memory")
Completed in 995 milliseconds
<<
11
12
13
14
15
16
17
18
19
20
>>