/external/llvm/test/Transforms/InstCombine/ |
volatile_store.ll | 1 ; RUN: opt < %s -instcombine -S | grep {store volatile} 2 ; RUN: opt < %s -instcombine -S | grep {load volatile} 8 %tmp = load volatile i32* @x ; <i32> [#uses=1] 9 store volatile i32 %tmp, i32* @x
|
/external/llvm/test/Transforms/ScalarRepl/ |
volatile.ll | 1 ; RUN: opt < %s -scalarrepl -S | grep {load volatile} 2 ; RUN: opt < %s -scalarrepl -S | grep {store volatile} 7 store volatile i32 %T, i32* %B 10 %X = load volatile i32* %C
|
/external/valgrind/main/memcheck/tests/ |
nanoleak_supp.c | 6 volatile int* a = malloc(1000);
|
supp.c | 6 volatile int x; /* make sure it isn't in a register */
|
/external/valgrind/main/none/tests/s390x/ |
op00.c | 4 asm volatile (".hword 0\n");
|
/external/v8/src/ |
atomicops_internals_x86_macosx.h | 38 inline Atomic32 NoBarrier_CompareAndSwap(volatile Atomic32* ptr, 52 inline Atomic32 NoBarrier_AtomicExchange(volatile Atomic32* ptr, 62 inline Atomic32 NoBarrier_AtomicIncrement(volatile Atomic32* ptr, 67 inline Atomic32 Barrier_AtomicIncrement(volatile Atomic32* ptr, 76 inline Atomic32 Acquire_CompareAndSwap(volatile Atomic32* ptr, 90 inline Atomic32 Release_CompareAndSwap(volatile Atomic32* ptr, 96 inline void NoBarrier_Store(volatile Atomic32* ptr, Atomic32 value) { 100 inline void Acquire_Store(volatile Atomic32* ptr, Atomic32 value) { 105 inline void Release_Store(volatile Atomic32* ptr, Atomic32 value) { 110 inline Atomic32 NoBarrier_Load(volatile const Atomic32* ptr) [all...] |
/external/chromium/base/ |
atomicops_internals_x86_msvc.h | 16 inline Atomic32 NoBarrier_CompareAndSwap(volatile Atomic32* ptr, 20 reinterpret_cast<volatile LONG*>(ptr), 26 inline Atomic32 NoBarrier_AtomicExchange(volatile Atomic32* ptr, 29 reinterpret_cast<volatile LONG*>(ptr), 34 inline Atomic32 Barrier_AtomicIncrement(volatile Atomic32* ptr, 37 reinterpret_cast<volatile LONG*>(ptr), 41 inline Atomic32 NoBarrier_AtomicIncrement(volatile Atomic32* ptr, 54 inline Atomic32 Acquire_CompareAndSwap(volatile Atomic32* ptr, 60 inline Atomic32 Release_CompareAndSwap(volatile Atomic32* ptr, 66 inline void NoBarrier_Store(volatile Atomic32* ptr, Atomic32 value) [all...] |
atomicops_internals_x86_macosx.h | 16 inline Atomic32 NoBarrier_CompareAndSwap(volatile Atomic32 *ptr, 30 inline Atomic32 NoBarrier_AtomicExchange(volatile Atomic32 *ptr, 40 inline Atomic32 NoBarrier_AtomicIncrement(volatile Atomic32 *ptr, 45 inline Atomic32 Barrier_AtomicIncrement(volatile Atomic32 *ptr, 54 inline Atomic32 Acquire_CompareAndSwap(volatile Atomic32 *ptr, 68 inline Atomic32 Release_CompareAndSwap(volatile Atomic32 *ptr, 74 inline void NoBarrier_Store(volatile Atomic32* ptr, Atomic32 value) { 78 inline void Acquire_Store(volatile Atomic32 *ptr, Atomic32 value) { 83 inline void Release_Store(volatile Atomic32 *ptr, Atomic32 value) { 88 inline Atomic32 NoBarrier_Load(volatile const Atomic32* ptr) [all...] |
/external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/dcl.fct.def.default/ |
p2.cpp | 11 struct Volatile { 12 Volatile(volatile Volatile&&) = default; // expected-error {{the parameter for an explicitly-defaulted move constructor may not be volatile}} 13 Volatile& operator=(volatile Volatile&&) = default; // expected-error {{the parameter for an explicitly-defaulted move assignment operator may not be volatile}} 25 ConstAssignment& operator=(ConstAssignment&&) const = default; // expected-error {{an explicitly-defaulted move assignment operator may not have 'const', 'constexpr' or 'volatile' qualifiers} [all...] |
/external/clang/test/CXX/expr/expr.mptr.oper/ |
p5.cpp | 6 void f2() volatile; 7 void f3() const volatile; 12 void (X0::*pmv)() volatile, 13 void (X0::*pmcv)() const volatile, 16 volatile X0 *pv, 17 const volatile X0 *pcv, 20 volatile X0 &ov, 21 const volatile X0 &ocv) { 29 (pc->*pmv)(); // expected-error{{call to pointer to member function of type 'void () volatile' drops 'const' qualifier}} 32 (pv->*pm)(); // expected-error{{call to pointer to member function of type 'void ()' drops 'volatile' qualifier} [all...] |
/external/llvm/test/CodeGen/X86/ |
volatile.ll | 7 %a = load volatile double* @x 8 store volatile double 0.0, double* @x 9 store volatile double 0.0, double* @x 10 %b = load volatile double* @x 15 %c = load volatile double* @x
|
/frameworks/base/tests/RenderScriptTests/tests_v11/src/com/android/rs/test/ |
math.rs | 5 volatile float f1; 6 volatile float2 f2; 7 volatile float3 f3; 8 volatile float4 f4; 10 volatile int i1; 11 volatile int2 i2; 12 volatile int3 i3; 13 volatile int4 i4; 15 volatile uint ui1; 16 volatile uint2 ui2 [all...] |
/frameworks/base/tests/RenderScriptTests/tests_v14/src/com/android/rs/test/ |
math.rs.bak | 5 volatile float f1; 6 volatile float2 f2; 7 volatile float3 f3; 8 volatile float4 f4; 10 volatile int i1; 11 volatile int2 i2; 12 volatile int3 i3; 13 volatile int4 i4; 15 volatile uint ui1; 16 volatile uint2 ui2 [all...] |
/system/extras/tests/bionic/libstdc++/ |
test_climits.cpp | 47 volatile char c1 = CHAR_BIT; 48 volatile char c2 = CHAR_MAX; 49 volatile char c3 = CHAR_MIN; 52 volatile int i1 = INT_MAX; 53 volatile int i2 = INT_MIN; 56 volatile short s1 = SHRT_MAX; 57 volatile short s2 = SHRT_MIN; 60 volatile long l1 = LONG_MAX; 61 volatile long l2 = LONG_MIN; 64 volatile long long ll1 = LLONG_MAX [all...] |
/external/llvm/test/CodeGen/XCore/ |
scavenging.ll | 21 %2 = load volatile i32* @g0, align 4 ; <i32> [#uses=1] 22 %3 = load volatile i32* @g1, align 4 ; <i32> [#uses=1] 23 %4 = load volatile i32* @g2, align 4 ; <i32> [#uses=1] 24 %5 = load volatile i32* @g3, align 4 ; <i32> [#uses=1] 25 %6 = load volatile i32* @g4, align 4 ; <i32> [#uses=1] 26 %7 = load volatile i32* @g5, align 4 ; <i32> [#uses=1] 27 %8 = load volatile i32* @g6, align 4 ; <i32> [#uses=1] 28 %9 = load volatile i32* @g7, align 4 ; <i32> [#uses=1] 29 %10 = load volatile i32* @g8, align 4 ; <i32> [#uses=1] 30 %11 = load volatile i32* @g9, align 4 ; <i32> [#uses=1 [all...] |
/development/ndk/platforms/android-3/arch-arm/include/asm/arch/ |
io.h | 26 #define omap_readb(a) (*(volatile unsigned char *)IO_ADDRESS(a)) 27 #define omap_readw(a) (*(volatile unsigned short *)IO_ADDRESS(a)) 28 #define omap_readl(a) (*(volatile unsigned int *)IO_ADDRESS(a)) 30 #define omap_writeb(v,a) (*(volatile unsigned char *)IO_ADDRESS(a) = (v)) 31 #define omap_writew(v,a) (*(volatile unsigned short *)IO_ADDRESS(a) = (v)) 32 #define omap_writel(v,a) (*(volatile unsigned int *)IO_ADDRESS(a) = (v)) 34 typedef struct { volatile u16 offset[256]; } __regbase16; 38 typedef struct { volatile u8 offset[4096]; } __regbase8; 42 typedef struct { volatile u32 offset[4096]; } __regbase32;
|
/external/blktrace/ |
barrier.h | 5 #define store_barrier() asm volatile ("mf" ::: "memory") 7 #define store_barrier() asm volatile("sfence" ::: "memory") 9 #define store_barrier() asm volatile ("": : :"memory") 11 #define store_barrier() asm volatile ("eieio" : : : "memory") 13 #define store_barrier() asm volatile ("bcr 15,0" : : : "memory") 15 #define store_barrier() asm volatile("wmb": : :"memory") 17 #define store_barrier() asm volatile("":::"memory") 19 #define store_barrier() asm volatile("":::"memory") 21 #define store_barrier() asm volatile("":::"memory")
|
/external/clang/test/CodeGen/ |
address-space-cast.c | 3 volatile unsigned char* const __attribute__((address_space(1))) serial_ctrl = 0x02;
|
volatile.c | 2 // RUN: grep volatile %t | count 28 5 // The number 28 comes from the current codegen for volatile loads; 7 // something has changed to affect volatile load/store codegen 10 volatile int vS; 13 volatile int* pvS; 16 volatile int vA[10]; 19 struct { volatile int x; } vF; 22 volatile struct { int x; } vF2; 23 volatile struct { int x; } *vpF2; 26 volatile struct { struct { int y; } x; } vF3 [all...] |
/external/clang/test/SemaCXX/ |
decltype-this.cpp | 14 void h() volatile { static_assert(is_same<decltype(this), volatile S*>::value, ""); } 15 void i() const volatile { static_assert(is_same<decltype(this), const volatile S*>::value, ""); }
|
/prebuilts/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/asm/arch/ |
io.h | 26 #define omap_readb(a) (*(volatile unsigned char *)IO_ADDRESS(a)) 27 #define omap_readw(a) (*(volatile unsigned short *)IO_ADDRESS(a)) 28 #define omap_readl(a) (*(volatile unsigned int *)IO_ADDRESS(a)) 30 #define omap_writeb(v,a) (*(volatile unsigned char *)IO_ADDRESS(a) = (v)) 31 #define omap_writew(v,a) (*(volatile unsigned short *)IO_ADDRESS(a) = (v)) 32 #define omap_writel(v,a) (*(volatile unsigned int *)IO_ADDRESS(a) = (v)) 34 typedef struct { volatile u16 offset[256]; } __regbase16; 38 typedef struct { volatile u8 offset[4096]; } __regbase8; 42 typedef struct { volatile u32 offset[4096]; } __regbase32;
|
/prebuilts/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/asm/arch/ |
io.h | 26 #define omap_readb(a) (*(volatile unsigned char *)IO_ADDRESS(a)) 27 #define omap_readw(a) (*(volatile unsigned short *)IO_ADDRESS(a)) 28 #define omap_readl(a) (*(volatile unsigned int *)IO_ADDRESS(a)) 30 #define omap_writeb(v,a) (*(volatile unsigned char *)IO_ADDRESS(a) = (v)) 31 #define omap_writew(v,a) (*(volatile unsigned short *)IO_ADDRESS(a) = (v)) 32 #define omap_writel(v,a) (*(volatile unsigned int *)IO_ADDRESS(a) = (v)) 34 typedef struct { volatile u16 offset[256]; } __regbase16; 38 typedef struct { volatile u8 offset[4096]; } __regbase8; 42 typedef struct { volatile u32 offset[4096]; } __regbase32;
|
/prebuilts/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/asm/arch/ |
io.h | 26 #define omap_readb(a) (*(volatile unsigned char *)IO_ADDRESS(a)) 27 #define omap_readw(a) (*(volatile unsigned short *)IO_ADDRESS(a)) 28 #define omap_readl(a) (*(volatile unsigned int *)IO_ADDRESS(a)) 30 #define omap_writeb(v,a) (*(volatile unsigned char *)IO_ADDRESS(a) = (v)) 31 #define omap_writew(v,a) (*(volatile unsigned short *)IO_ADDRESS(a) = (v)) 32 #define omap_writel(v,a) (*(volatile unsigned int *)IO_ADDRESS(a) = (v)) 34 typedef struct { volatile u16 offset[256]; } __regbase16; 38 typedef struct { volatile u8 offset[4096]; } __regbase8; 42 typedef struct { volatile u32 offset[4096]; } __regbase32;
|
/prebuilts/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/asm/arch/ |
io.h | 26 #define omap_readb(a) (*(volatile unsigned char *)IO_ADDRESS(a)) 27 #define omap_readw(a) (*(volatile unsigned short *)IO_ADDRESS(a)) 28 #define omap_readl(a) (*(volatile unsigned int *)IO_ADDRESS(a)) 30 #define omap_writeb(v,a) (*(volatile unsigned char *)IO_ADDRESS(a) = (v)) 31 #define omap_writew(v,a) (*(volatile unsigned short *)IO_ADDRESS(a) = (v)) 32 #define omap_writel(v,a) (*(volatile unsigned int *)IO_ADDRESS(a) = (v)) 34 typedef struct { volatile u16 offset[256]; } __regbase16; 38 typedef struct { volatile u8 offset[4096]; } __regbase8; 42 typedef struct { volatile u32 offset[4096]; } __regbase32;
|
/prebuilts/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/asm/arch/ |
io.h | 26 #define omap_readb(a) (*(volatile unsigned char *)IO_ADDRESS(a)) 27 #define omap_readw(a) (*(volatile unsigned short *)IO_ADDRESS(a)) 28 #define omap_readl(a) (*(volatile unsigned int *)IO_ADDRESS(a)) 30 #define omap_writeb(v,a) (*(volatile unsigned char *)IO_ADDRESS(a) = (v)) 31 #define omap_writew(v,a) (*(volatile unsigned short *)IO_ADDRESS(a) = (v)) 32 #define omap_writel(v,a) (*(volatile unsigned int *)IO_ADDRESS(a) = (v)) 34 typedef struct { volatile u16 offset[256]; } __regbase16; 38 typedef struct { volatile u8 offset[4096]; } __regbase8; 42 typedef struct { volatile u32 offset[4096]; } __regbase32;
|