HomeSort by relevance Sort by last modified time
    Searched full:volatile (Results 476 - 500 of 5898) sorted by null

<<11121314151617181920>>

  /external/qemu/distrib/sdl-1.2.15/src/video/fbcon/
3dfx_mmio.h 30 #define tdfx_in8(reg) *(volatile Uint8 *)(mapped_io + (reg))
31 #define tdfx_in32(reg) *(volatile Uint32 *)(mapped_io + (reg))
33 #define tdfx_out8(reg,v) *(volatile Uint8 *)(mapped_io + (reg)) = v;
34 #define tdfx_out32(reg,v) *(volatile Uint32 *)(mapped_io + (reg)) = v;
matrox_mmio.h 30 #define mga_in8(reg) *(volatile Uint8 *)(mapped_io + (reg))
31 #define mga_in32(reg) *(volatile Uint32 *)(mapped_io + (reg))
33 #define mga_out8(reg,v) *(volatile Uint8 *)(mapped_io + (reg)) = v;
34 #define mga_out32(reg,v) *(volatile Uint32 *)(mapped_io + (reg)) = v;
  /external/valgrind/main/memcheck/tests/
bug287260.c 11 volatile Oink r;
err_disable_arange1.c 13 volatile int* volatile mem
14 = (volatile int* volatile)malloc(1000 * sizeof(int));
  /external/valgrind/main/none/tests/amd64/
loopnel.c 8 asm volatile ("1: addq $1, %0; loopnel 1b" : "+a" (rax), "+c" (rcx) : : "cc");
faultstatus.c 16 volatile void *addr;
28 static char volatile *volatile mapping;
48 static int testaddr(void *addr, volatile void *want)
77 asm volatile("test1_ill: ud2");
82 asm volatile ("int3");
87 asm volatile ("int $0x10");
  /external/valgrind/main/none/tests/s390x/
stmg.c 11 asm volatile( "lg 5, 0(%1)\n\t"
19 asm volatile( "lghi 2, 1\n\t" // stdout
33 asm volatile( "lg 15, 0(%1)\n\t"
42 asm volatile( "lghi 2, 1\n\t" // stdout
tmll.c 7 asm volatile( "brc 8,1f\n\t" \
50 asm volatile( "tmll %[v],0xFFFF\n\t" : : [v] "d"(v) : "cc");
55 asm volatile( "tmll %[v],0\n\t" : : [v] "d"(v) : "cc");
60 asm volatile( "tmll %[v],0xf0\n\t" : : [v] "d"(v) : "cc");
65 asm volatile( "tmll %[v],0x70\n\t" : : [v] "d"(v) : "cc");
70 asm volatile( "tmll %[v],0x81\n\t" : : [v] "d"(v) : "cc");
75 asm volatile( "tmll %[v],0x81\n\t" : : [v] "d"(v) : "cc");
  /external/valgrind/main/none/tests/
stackgrowth.c 9 volatile char frame[FRAME];
  /frameworks/av/include/media/stagefright/
AACWriter.h 53 volatile bool mPaused;
54 volatile bool mResumed;
55 volatile bool mDone;
56 volatile bool mReachedEOS;
AMRWriter.h 51 volatile bool mPaused;
52 volatile bool mResumed;
53 volatile bool mDone;
54 volatile bool mReachedEOS;
  /ndk/tests/device/issue42891-boost-1_52/jni/boost/boost/type_traits/
has_nothrow_constructor.hpp 38 BOOST_TT_AUX_BOOL_TRAIT_SPEC1(has_nothrow_constructor,void const volatile,false)
39 BOOST_TT_AUX_BOOL_TRAIT_SPEC1(has_nothrow_constructor,void volatile,false)
45 BOOST_TT_AUX_BOOL_TRAIT_SPEC1(has_nothrow_default_constructor,void const volatile,false)
46 BOOST_TT_AUX_BOOL_TRAIT_SPEC1(has_nothrow_default_constructor,void volatile,false)
has_nothrow_copy.hpp 38 BOOST_TT_AUX_BOOL_TRAIT_SPEC1(has_nothrow_copy,void const volatile,false)
39 BOOST_TT_AUX_BOOL_TRAIT_SPEC1(has_nothrow_copy,void volatile,false)
45 BOOST_TT_AUX_BOOL_TRAIT_SPEC1(has_nothrow_copy_constructor,void const volatile,false)
46 BOOST_TT_AUX_BOOL_TRAIT_SPEC1(has_nothrow_copy_constructor,void volatile,false)
  /packages/apps/Gallery2/src/com/android/gallery3d/filtershow/pipeline/
SharedPreset.java 21 private volatile ImagePreset mProducerPreset = null;
22 private volatile ImagePreset mConsumerPreset = null;
23 private volatile ImagePreset mIntermediatePreset = null;
24 private volatile boolean mHasNewContent = false;
  /external/libcxx/test/utilities/function.objects/func.memfn/
member_function_const_volatile.pass.cpp 13 // unspecified mem_fn(R (T::* pm)(Args...) const volatile);
20 char test0() const volatile {return 'a';}
21 char test1(int) const volatile {return 'b';}
22 char test2(int, double) const volatile {return 'c';}
34 const volatile A* cap = &a;
50 const volatile A* cap = &a;
66 const volatile A* cap = &a;
member_function_volatile.pass.cpp 13 // unspecified mem_fn(R (T::* pm)(Args...) volatile);
20 char test0() volatile {return 'a';}
21 char test1(int) volatile {return 'b';}
22 char test2(int, double) volatile {return 'c';}
34 volatile A* cap = &a;
50 volatile A* cap = &a;
66 volatile A* cap = &a;
  /external/llvm/test/Transforms/SimplifyCFG/
trapping-load-unreachable.ll 14 %1 = load volatile i32* null
21 ; CHECK: load volatile
38 store volatile i32 4, i32* null
42 ; CHECK: store volatile i32 4, i32* null
54 store volatile i32 0, i32* %P
68 cmpxchg volatile i32* %P, i32 0, i32 1 seq_cst seq_cst
82 atomicrmw volatile xchg i32* %P, i32 0 seq_cst
  /ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.memfn/
member_function_const_volatile.pass.cpp 13 // unspecified mem_fn(R (T::* pm)(Args...) const volatile);
20 char test0() const volatile {return 'a';}
21 char test1(int) const volatile {return 'b';}
22 char test2(int, double) const volatile {return 'c';}
34 const volatile A* cap = &a;
50 const volatile A* cap = &a;
66 const volatile A* cap = &a;
member_function_volatile.pass.cpp 13 // unspecified mem_fn(R (T::* pm)(Args...) volatile);
20 char test0() volatile {return 'a';}
21 char test1(int) volatile {return 'b';}
22 char test2(int, double) volatile {return 'c';}
34 volatile A* cap = &a;
50 volatile A* cap = &a;
66 volatile A* cap = &a;
  /system/extras/tests/bionic/libstdc++/
test_cstddef.cpp 53 volatile ::size_t size_t_in_top_ns = 0;
54 volatile ::std::size_t size_t_in_std_ns = 0;
62 volatile ::ptrdiff_t ptrdiff_t_in_top_ns = 0;
63 volatile ::std::ptrdiff_t ptrdiff_t_in_std_ns = 0;
70 volatile int *null_is_defined = NULL;
81 volatile size_t offset = offsetof(struct Foo, field2);
91 volatile int null_is_not_void_star = NULL;
  /development/ndk/platforms/android-9/arch-mips/include/asm/sgi/
pi1.h 24 volatile u8 data;
26 volatile u8 ctrl;
37 volatile u8 status;
49 volatile u8 dmactrl;
64 volatile u8 intstat;
74 volatile u8 intmask;
84 volatile u8 timer1;
87 volatile u8 timer2;
91 volatile u8 timer3;
95 volatile u8 timer4
    [all...]
  /external/llvm/test/CodeGen/AArch64/
addsub-shifted.ll 9 %rhs1 = load volatile i32* @var32
12 store volatile i32 %val1, i32* @var32
15 %rhs2 = load volatile i32* @var32
18 store volatile i32 %val2, i32* @var32
21 %rhs3 = load volatile i32* @var32
24 store volatile i32 %val3, i32* @var32
28 %rhs4 = load volatile i32* @var32
31 store volatile i32 %val4, i32* @var32
34 %lhs4a = load volatile i32* @var32
37 store volatile i32 %val4a, i32* @var3
    [all...]
  /external/valgrind/main/none/tests/x86/
faultstatus.c 17 volatile void *addr;
31 static char volatile *volatile mapping;
51 static int testaddr(void *addr, volatile void *want)
80 asm volatile(VG_SYM(test1_ill) ": ud2");
85 asm volatile ("int3");
90 asm volatile ("int $0x10");
95 volatile int a;
96 asm volatile ("add $1, %0;"/* set OF */
105 asm volatile ("bound %0, %1" : : "r" (11), "m" (limit[0]))
    [all...]
  /prebuilts/ndk/8/platforms/android-14/arch-mips/usr/include/asm/sgi/
pi1.h 24 volatile u8 data;
26 volatile u8 ctrl;
37 volatile u8 status;
49 volatile u8 dmactrl;
64 volatile u8 intstat;
74 volatile u8 intmask;
84 volatile u8 timer1;
87 volatile u8 timer2;
91 volatile u8 timer3;
95 volatile u8 timer4
    [all...]
  /prebuilts/ndk/8/platforms/android-9/arch-mips/usr/include/asm/sgi/
pi1.h 24 volatile u8 data;
26 volatile u8 ctrl;
37 volatile u8 status;
49 volatile u8 dmactrl;
64 volatile u8 intstat;
74 volatile u8 intmask;
84 volatile u8 timer1;
87 volatile u8 timer2;
91 volatile u8 timer3;
95 volatile u8 timer4
    [all...]

Completed in 518 milliseconds

<<11121314151617181920>>