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

<<21222324252627282930>>

  /external/clang/test/CXX/expr/expr.const/
p2-0x.cpp 285 // - a non-volatile glvalue of integral or enumeration type that refers to a
286 // non-volatile const object with a preceding initialization, initialized
289 volatile const int vi = 1; // expected-note 2{{here}}
291 volatile const int &vrci = ci;
292 static_assert(vi, ""); // expected-error {{constant expression}} expected-note {{read of volatile-qualified type}}
293 static_assert(const_cast<int&>(vi), ""); // expected-error {{constant expression}} expected-note {{read of volatile object 'vi'}}
294 static_assert(vrci, ""); // expected-error {{constant expression}} expected-note {{read of volatile-qualified type}}
296 // - a non-volatile glvalue of literal type that refers to a non-volatile
301 volatile int v; // expected-note {{not literal because}
    [all...]
  /external/clang/test/Sema/
atomic-ops.c 158 const volatile int flag_k = 0;
159 volatile int flag = 0;
160 (void)(int)__atomic_test_and_set(&flag_k, memory_order_seq_cst); // expected-warning {{passing 'const volatile int *' to parameter of type 'volatile void *'}}
162 __atomic_clear(&flag_k, memory_order_seq_cst); // expected-warning {{passing 'const volatile int *' to parameter of type 'volatile void *'}}
warn-unused-value.c 50 // pointer to volatile has side effect (thus no warning)
52 volatile int* pj = &j;
  /external/stlport/stlport/stl/
type_manips.h 162 // Helper struct that will forbid volatile qualified types:
199 * - any of the type has the volatile qualifier
232 typedef _ConversionHelper<_Src*, const volatile _Dst*> _H;
267 struct _IsVolatile { typedef _AreSameTypes<_Tp, volatile _Tp>::_Ret _Ret; };
281 template <class _Tp> struct _UnQual<volatile _Tp> { typedef _Tp _Type; };
282 template <class _Tp> struct _UnQual<const volatile _Tp> { typedef _Tp _Type; };
  /external/valgrind/main/VEX/useful/
x87_to_vex_and_back.c 126 asm volatile ("fsave (%0)"
138 asm volatile("frstor (%0) ; fsave (%0)"
155 asm volatile ("finit");
157 asm volatile ("fldpi");
159 asm volatile ("fldz ; fld1 ; fdiv %st(1)");
160 asm volatile ("fldln2 ; fldlg2 ; fchs ; fsqrt");
  /ndk/sources/cxx-stl/stlport/stlport/stl/
type_manips.h 162 // Helper struct that will forbid volatile qualified types:
199 * - any of the type has the volatile qualifier
232 typedef _ConversionHelper<_Src*, const volatile _Dst*> _H;
267 struct _IsVolatile { typedef _AreSameTypes<_Tp, volatile _Tp>::_Ret _Ret; };
281 template <class _Tp> struct _UnQual<volatile _Tp> { typedef _Tp _Type; };
282 template <class _Tp> struct _UnQual<const volatile _Tp> { typedef _Tp _Type; };
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/
type_manips.h 162 // Helper struct that will forbid volatile qualified types:
199 * - any of the type has the volatile qualifier
232 typedef _ConversionHelper<_Src*, const volatile _Dst*> _H;
267 struct _IsVolatile { typedef _AreSameTypes<_Tp, volatile _Tp>::_Ret _Ret; };
281 template <class _Tp> struct _UnQual<volatile _Tp> { typedef _Tp _Type; };
282 template <class _Tp> struct _UnQual<const volatile _Tp> { typedef _Tp _Type; };
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/
type_manips.h 162 // Helper struct that will forbid volatile qualified types:
199 * - any of the type has the volatile qualifier
232 typedef _ConversionHelper<_Src*, const volatile _Dst*> _H;
267 struct _IsVolatile { typedef _AreSameTypes<_Tp, volatile _Tp>::_Ret _Ret; };
281 template <class _Tp> struct _UnQual<volatile _Tp> { typedef _Tp _Type; };
282 template <class _Tp> struct _UnQual<const volatile _Tp> { typedef _Tp _Type; };
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/stlport/stlport/stl/
type_manips.h 162 // Helper struct that will forbid volatile qualified types:
199 * - any of the type has the volatile qualifier
232 typedef _ConversionHelper<_Src*, const volatile _Dst*> _H;
267 struct _IsVolatile { typedef _AreSameTypes<_Tp, volatile _Tp>::_Ret _Ret; };
281 template <class _Tp> struct _UnQual<volatile _Tp> { typedef _Tp _Type; };
282 template <class _Tp> struct _UnQual<const volatile _Tp> { typedef _Tp _Type; };
  /bionic/libc/arch-arm/include/
endian.h 58 __asm volatile ("rev16 %0, %0" : "+l" (_x)); \
64 __asm volatile ("rev %0, %0" : "+l" (_x)); \
  /bionic/libc/kernel/arch-mips/asm/mips-boards/
generic.h 51 #define MIPS_REVISION_CORID (((*(volatile u32 *)ioremap(MIPS_REVISION_REG, 4)) >> 10) & 0x3f)
64 #define MIPS_REVISION_SCONID (((*(volatile u32 *)ioremap(MIPS_REVISION_REG, 4)) >> 24) & 0xff)
  /bionic/libm/src/
s_rintf.c 34 volatile float w,t; /* volatile works around gcc bug */
  /dalvik/tests/067-preemptive-unpark/src/
Main.java 82 public volatile boolean parkNow = false;
83 public volatile boolean success = false;
  /dalvik/vm/mterp/armv5te/
OP_SPUT_WIDE.S 1 %default {"volatile":"0"}
22 .if $volatile
  /development/ndk/platforms/android-9/arch-mips/include/asm/mips-boards/
generic.h 51 #define MIPS_REVISION_CORID (((*(volatile u32 *)ioremap(MIPS_REVISION_REG, 4)) >> 10) & 0x3f)
64 #define MIPS_REVISION_SCONID (((*(volatile u32 *)ioremap(MIPS_REVISION_REG, 4)) >> 24) & 0xff)
  /external/bluetooth/bluez/test/
bdaddr.8 27 non-volatile value.
55 Temporary change. Do not write to non-volatile memory.
  /external/clang/test/CXX/dcl.decl/dcl.meaning/dcl.fct/
p6-0x.cpp 5 void f2() const volatile &&; // expected-error {{non-member function cannot have 'const volatile &&' qualifier}}
  /external/clang/test/CodeGen/
integer-overflow.c 13 extern volatile int f11G, a, b;
61 extern volatile signed char PR9350;
  /external/clang/test/SemaCXX/
default-assignment-operator.cpp 19 Y& operator=(volatile Y&);
20 Y& operator=(const volatile Y&);
  /external/kernel-headers/original/asm-mips/mips-boards/
generic.h 72 #define MIPS_REVISION_CORID (((*(volatile u32 *)ioremap(MIPS_REVISION_REG, 4)) >> 10) & 0x3f)
88 #define MIPS_REVISION_SCONID (((*(volatile u32 *)ioremap(MIPS_REVISION_REG, 4)) >> 24) & 0xff)
  /external/kernel-headers/original/asm-x86/
msr.h 21 asm volatile("rdmsr" : "=A" (val) : "c" (msr));
30 asm volatile("2: rdmsr ; xorl %0,%0\n"
47 asm volatile("wrmsr" : : "c" (msr), "A"(val));
54 asm volatile("2: wrmsr ; xorl %0,%0\n"
72 asm volatile("rdtsc" : "=A" (val));
79 asm volatile("rdpmc" : "=A" (val));
300 asm volatile("2: wrmsr ; xorl %0,%0\n" \
317 asm volatile ("1: rdmsr\n" \
  /external/libyuv/files/source/
cpu_id.cc 21 __asm__ volatile (
31 __asm__ volatile (
  /external/llvm/include/llvm/Support/
type_traits.h 93 /// \brief Metafunction that removes volatile qualification from a type.
95 template <typename T> struct remove_volatile<volatile T> { typedef T type; };
97 /// \brief Metafunction that removes both const and volatile qualification from
133 template <typename T> struct is_pointer<T* volatile> : true_type {};
134 template <typename T> struct is_pointer<T* const volatile> : true_type {};
175 template<typename Base> char base_of_helper(const volatile Base*);
193 template <typename T> struct remove_pointer<T*volatile> { typedef T type; };
194 template <typename T> struct remove_pointer<T*const volatile> {
  /external/llvm/lib/Support/
Valgrind.cpp 61 const volatile void *cv) {}
63 const volatile void *cv) {}
  /external/llvm/test/CodeGen/Thumb/
vargs.ll 16 %tmp = load volatile i8** %va ; <i8*> [#uses=2]
18 store volatile i8* %tmp2, i8** %va

Completed in 616 milliseconds

<<21222324252627282930>>