HomeSort by relevance Sort by last modified time
    Searched full:volatile (Results 426 - 450 of 2876) sorted by null

<<11121314151617181920>>

  /external/kernel-headers/original/asm-mips/
io.h 117 static inline unsigned long virt_to_phys(volatile const void *address)
142 static inline unsigned long isa_virt_to_bus(volatile void * address)
169 extern void __iounmap(const volatile void __iomem *addr);
282 static inline void iounmap(const volatile void __iomem *addr)
301 volatile void __iomem *mem) \
303 volatile type *__mem; \
334 static inline type pfx##read##bwlq(const volatile void __iomem *mem) \
336 volatile type *__mem; \
370 volatile type *__addr; \
386 volatile type *__addr;
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/i686-linux/include/c++/4.6.x-google/
functional 103 struct _Weak_result_type_impl<_Res(_ArgTypes...) volatile>
107 struct _Weak_result_type_impl<_Res(_ArgTypes......) volatile>
111 struct _Weak_result_type_impl<_Res(_ArgTypes...) const volatile>
115 struct _Weak_result_type_impl<_Res(_ArgTypes......) const volatile>
154 /// Retrieve result type for a volatile member function pointer.
156 struct _Weak_result_type_impl<_Res (_Class::*)(_ArgTypes...) volatile>
160 struct _Weak_result_type_impl<_Res (_Class::*)(_ArgTypes......) volatile>
163 /// Retrieve result type for a const volatile member function pointer.
166 const volatile>
171 const volatile>
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/x86_64-linux/include/c++/4.6.x-google/
functional 103 struct _Weak_result_type_impl<_Res(_ArgTypes...) volatile>
107 struct _Weak_result_type_impl<_Res(_ArgTypes......) volatile>
111 struct _Weak_result_type_impl<_Res(_ArgTypes...) const volatile>
115 struct _Weak_result_type_impl<_Res(_ArgTypes......) const volatile>
154 /// Retrieve result type for a volatile member function pointer.
156 struct _Weak_result_type_impl<_Res (_Class::*)(_ArgTypes...) volatile>
160 struct _Weak_result_type_impl<_Res (_Class::*)(_ArgTypes......) volatile>
163 /// Retrieve result type for a const volatile member function pointer.
166 const volatile>
171 const volatile>
    [all...]
  /external/kernel-headers/original/asm-x86/
cmpxchg_32.h 72 * Note 2: xchg has side effect, so that attribute volatile is necessary,
75 static inline unsigned long __xchg(unsigned long x, volatile void * ptr, int size)
119 static inline unsigned long __cmpxchg(volatile void *ptr, unsigned long old,
151 static inline unsigned long __sync_cmpxchg(volatile void *ptr,
179 static inline unsigned long __cmpxchg_local(volatile void *ptr,
213 extern unsigned long cmpxchg_386_u8(volatile void *, u8, u8);
214 extern unsigned long cmpxchg_386_u16(volatile void *, u16, u16);
215 extern unsigned long cmpxchg_386_u32(volatile void *, u32, u32);
217 static inline unsigned long cmpxchg_386(volatile void *ptr, unsigned long old,
255 static inline unsigned long long __cmpxchg64(volatile void *ptr, unsigned long long old
    [all...]
  /external/valgrind/main/VEX/pub/
libvex_guest_ppc64.h 43 volatile == caller-saved (not preserved across function calls)
44 non-volatile == callee-saved (preserved across function calls)
46 r0 Volatile register used in function prologs
49 r3 Volatile parameter and return value register
50 r4-r10 Volatile registers used for function parameters
51 r11 Volatile register used in calls by pointer and as an
53 r12 Volatile register used for exception handling and glink code
57 f0 Volatile scratch register
58 f1-f4 Volatile floating point parameter and return value registers
59 f5-f13 Volatile floating point parameter register
    [all...]
  /bionic/libc/bionic/
__errno.c 31 volatile int* __errno( void )
33 return &((volatile int*)__get_tls())[TLS_SLOT_ERRNO];
  /bionic/libc/kernel/arch-arm/asm/arch/
mtd-xip.h 31 #define xip_omap_mpu_timer_base(n) ((volatile xip_omap_mpu_timer_regs_t*)IO_ADDRESS(OMAP_MPU_TIMER_BASE + (n)*OMAP_MPU_TIMER_OFFSET))
36 #define xip_cpu_idle() asm volatile ("mcr p15, 0, %0, c7, c0, 4" :: "r" (1))
  /bionic/libc/kernel/arch-arm/asm/
spinlock_types.h 26 volatile unsigned int lock;
31 volatile unsigned int lock;
vga.h 25 #define vga_readb(x) (*((volatile unsigned char *)x))
26 #define vga_writeb(x,y) (*((volatile unsigned char *)y) = (x))
  /cts/tools/signature-tools/src/signature/model/
Modifier.java 26 "static"), FINAL("final"), SYNCHRONIZED("synchronized"), VOLATILE(
27 "volatile"), TRANSIENT("transient"), NATIVE("native"), ABSTRACT(
  /external/bluetooth/glib/tests/
onceinit.c 28 static volatile int thread_call_count = 0;
34 static volatile int seen_execution = 0;
43 static volatile int seen_execution = 0;
52 static volatile int seen_execution = 0;
61 static volatile gsize initialized = 0;
73 static volatile gsize initialized = 0;
86 static volatile gsize initialized = 0;
167 static volatile gsize initialized = 0; \
  /external/clang/test/CodeGen/
asm-reg-var-local.c 10 asm volatile("; %0 This asm defines rsi" : "=r"(a));
17 asm volatile("; %0 This asm uses rsi" : : "r"(a));
asm.c 12 __asm__ volatile("" : "=&r"(len), "+&r"(len));
16 __asm__ volatile("" : "+m"(t));
20 __asm__ volatile("" : "+m"(temp), "+r"(src));
27 __asm__ volatile ("":: "m"(a), "m"(b));
37 __asm__ volatile("" : : "i" (t6));
41 __asm__ volatile("T7 NAMED: %[input]" : "+r"(a): [input] "i" (4));
47 __asm__ volatile("T8 NAMED MODIFIER: %c[input]" :: [input] "i" (4));
221 __asm__ volatile("vmovaps %0, %%ymm0" :: "m" (*(__m256i*)p) : "ymm0");
mangle.c 68 extern int llvm_cas(volatile int*, int, int)
71 int foo10(volatile int* add, int from, int to) {
  /external/clang/test/Parser/
cxx-stmt.cpp 58 asm volatile ("":: :"memory");
59 asm volatile ("": ::"memory");
  /external/clang/test/SemaCXX/
composite-pointer-type.cpp 7 void f0(volatile Base *b, Derived1 *d1, const Derived2 *d2) {
18 void f1(volatile Base *b, Derived1 *d1, const Derived2 *d2) {
  /external/llvm/test/Analysis/BasicAA/
constant-over-index.ll 19 store volatile double 0.0, double* %p3
20 store volatile double 0.1, double* %p.0.i.0
  /external/llvm/test/CodeGen/MSP430/
2009-05-10-CyclicDAG.ll 10 %tmp = load volatile i16* @uip_len ; <i16> [#uses=1]
12 store volatile i16 0, i16* @uip_len
2009-09-18-AbsoluteAddr.ll 14 %tmp1 = load volatile i8* @"\010x0021" ; <i8> [#uses=1]
17 store volatile i8 %tmp2, i8* @"\010x0021"
  /external/llvm/test/CodeGen/X86/
loop-strength-reduce5.ll 14 store volatile i16 %tmp1, i16* @X, align 2
16 store volatile i16 %tmp34, i16* @Y, align 2
  /external/llvm/test/Transforms/LICM/
2011-04-06-HoistMissedASTUpdate.ll 18 ; CHECK: load volatile i16* @g_39
22 %tmp7 = load volatile i16* @g_39, align 2
  /external/llvm/test/Transforms/LoopStrengthReduce/
2008-08-13-CmpStride.ll 13 store volatile i16 %t0, i16* @g_3, align 2
25 load volatile i16* @g_3, align 2 ; <i16>:0 [#uses=1]
  /external/llvm/test/Transforms/Sink/
basic.ll 27 ; CHECK: load volatile
31 %l = load volatile i32* @A
  /external/valgrind/main/memcheck/tests/
leak-cycle.c 39 struct n *volatile c1, *volatile c2;
  /external/valgrind/main/none/tests/s390x/
ex_clone.c 22 asm volatile(
45 asm volatile(

Completed in 218 milliseconds

<<11121314151617181920>>