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

<<31323334353637383940>>

  /prebuilts/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/asm/
i387_32.h 29 #define __clear_fpu( tsk ) do { if (task_thread_info(tsk)->status & TS_USEDFPU) { asm volatile("fnclex ; fwait"); task_thread_info(tsk)->status &= ~TS_USEDFPU; stts(); } } while (0)
  /prebuilts/ndk/android-ndk-r6/platforms/android-9/arch-x86/usr/include/asm/
i387_32.h 29 #define __clear_fpu( tsk ) do { if (task_thread_info(tsk)->status & TS_USEDFPU) { asm volatile("fnclex ; fwait"); task_thread_info(tsk)->status &= ~TS_USEDFPU; stts(); } } while (0)
  /prebuilts/ndk/android-ndk-r7/platforms/android-14/arch-x86/usr/include/asm/
i387_32.h 29 #define __clear_fpu( tsk ) do { if (task_thread_info(tsk)->status & TS_USEDFPU) { asm volatile("fnclex ; fwait"); task_thread_info(tsk)->status &= ~TS_USEDFPU; stts(); } } while (0)
  /prebuilts/ndk/android-ndk-r7/platforms/android-9/arch-x86/usr/include/asm/
i387_32.h 29 #define __clear_fpu( tsk ) do { if (task_thread_info(tsk)->status & TS_USEDFPU) { asm volatile("fnclex ; fwait"); task_thread_info(tsk)->status &= ~TS_USEDFPU; stts(); } } while (0)
  /system/extras/tests/bionic/libc/glibc/assert/
test-assert.c 50 volatile int failed = 1;
  /external/qemu/distrib/sdl-1.2.12/src/audio/dc/
aica.c 12 /* #define dc_snd_base ((volatile unsigned char *)0x00800000) */ /* arm side */
13 #define dc_snd_base ((volatile unsigned char *)0xa0700000) /* dc side */
20 #define SNDREG32(x) (*(volatile unsigned long *)SNDREGADDR(x))
21 #define SNDREG8(x) (*(volatile unsigned char *)SNDREGADDR(x))
22 #define CHNREG32(ch, x) (*(volatile unsigned long *)CHNREGADDR(ch,x))
23 #define CHNREG8(ch, x) (*(volatile unsigned long *)CHNREGADDR(ch,x))
30 while((*(volatile unsigned int *)0xa05f688c) & 0x20) \
  /frameworks/av/media/libstagefright/codecs/m4v_h263/enc/src/
fastquant_inline.h 437 asm volatile("smlabb %0, %2, %1, %3\n\t"
457 asm volatile("smulbb %0, %3, %2\n\t"
473 asm volatile("add %1, %0, %2\n\t"
492 asm volatile("cmp %2, #0\n\t"
517 asm volatile("smlabb %0, %1, %2, %3"
531 asm volatile("smulbb %0, %1, %2"
544 asm volatile("cmp %1, #0\n\t"
556 asm volatile("add %1, %0, %2\n\t"
576 asm volatile("movs %1, %2, lsl #1\n\t"
605 asm volatile("movs %1, %2, lsl #1\n\t
    [all...]
  /external/kernel-headers/original/asm-mips/
jazz.h 77 volatile unsigned int *led_register = (unsigned int *) PICA_LED;
278 unsigned short ret = *((volatile unsigned short *)addr);
285 unsigned int ret = *((volatile unsigned int *)addr);
292 *((volatile unsigned short *)addr) = val;
298 *((volatile unsigned int *)addr) = val;
  /external/stlport/stlport/stl/config/
_windows.h 98 _STLP_IMPORT_DECLSPEC long _STLP_STDCALL InterlockedIncrement(long volatile *);
99 _STLP_IMPORT_DECLSPEC long _STLP_STDCALL InterlockedDecrement(long volatile *);
100 _STLP_IMPORT_DECLSPEC long _STLP_STDCALL InterlockedExchange(long volatile *, long);
102 _STLP_IMPORT_DECLSPEC void* _STLP_STDCALL _InterlockedExchangePointer(void* volatile *, void*);
206 void* _STLP_CALL STLPInterlockedExchangePointer(void* volatile* __a, void* __b) {
  /ndk/sources/cxx-stl/stlport/stlport/stl/config/
_windows.h 98 _STLP_IMPORT_DECLSPEC long _STLP_STDCALL InterlockedIncrement(long volatile *);
99 _STLP_IMPORT_DECLSPEC long _STLP_STDCALL InterlockedDecrement(long volatile *);
100 _STLP_IMPORT_DECLSPEC long _STLP_STDCALL InterlockedExchange(long volatile *, long);
102 _STLP_IMPORT_DECLSPEC void* _STLP_STDCALL _InterlockedExchangePointer(void* volatile *, void*);
206 void* _STLP_CALL STLPInterlockedExchangePointer(void* volatile* __a, void* __b) {
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/alsa/
iatomic.h 18 typedef struct { volatile int counter; } atomic_t;
214 #define mb() asm volatile("mfence":::"memory")
215 #define rmb() asm volatile("lfence":::"memory")
216 #define wmb() asm volatile("sfence":::"memory")
228 * On IA-64, counter must always be volatile to ensure that that the
231 typedef struct { volatile int counter; } atomic_t;
297 volatile __typeof__(*(v)) *_v = (v); \
389 * Counter is volatile to make sure gcc doesn't try to be clever
393 typedef struct { volatile int counter; } atomic_t;
499 typedef struct { volatile int counter; } atomic_t
    [all...]
  /prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/alsa/
iatomic.h 18 typedef struct { volatile int counter; } atomic_t;
214 #define mb() asm volatile("mfence":::"memory")
215 #define rmb() asm volatile("lfence":::"memory")
216 #define wmb() asm volatile("sfence":::"memory")
228 * On IA-64, counter must always be volatile to ensure that that the
231 typedef struct { volatile int counter; } atomic_t;
297 volatile __typeof__(*(v)) *_v = (v); \
389 * Counter is volatile to make sure gcc doesn't try to be clever
393 typedef struct { volatile int counter; } atomic_t;
499 typedef struct { volatile int counter; } atomic_t
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.7-4.6/sysroot/usr/include/alsa/
iatomic.h 18 typedef struct { volatile int counter; } atomic_t;
214 #define mb() asm volatile("mfence":::"memory")
215 #define rmb() asm volatile("lfence":::"memory")
216 #define wmb() asm volatile("sfence":::"memory")
228 * On IA-64, counter must always be volatile to ensure that that the
231 typedef struct { volatile int counter; } atomic_t;
297 volatile __typeof__(*(v)) *_v = (v); \
389 * Counter is volatile to make sure gcc doesn't try to be clever
393 typedef struct { volatile int counter; } atomic_t;
499 typedef struct { volatile int counter; } atomic_t
    [all...]
  /prebuilts/ndk/android-ndk-r5/sources/cxx-stl/stlport/stlport/stl/config/
_windows.h 98 _STLP_IMPORT_DECLSPEC long _STLP_STDCALL InterlockedIncrement(long volatile *);
99 _STLP_IMPORT_DECLSPEC long _STLP_STDCALL InterlockedDecrement(long volatile *);
100 _STLP_IMPORT_DECLSPEC long _STLP_STDCALL InterlockedExchange(long volatile *, long);
102 _STLP_IMPORT_DECLSPEC void* _STLP_STDCALL _InterlockedExchangePointer(void* volatile *, void*);
206 void* _STLP_CALL STLPInterlockedExchangePointer(void* volatile* __a, void* __b) {
  /prebuilts/ndk/android-ndk-r6/sources/cxx-stl/stlport/stlport/stl/config/
_windows.h 98 _STLP_IMPORT_DECLSPEC long _STLP_STDCALL InterlockedIncrement(long volatile *);
99 _STLP_IMPORT_DECLSPEC long _STLP_STDCALL InterlockedDecrement(long volatile *);
100 _STLP_IMPORT_DECLSPEC long _STLP_STDCALL InterlockedExchange(long volatile *, long);
102 _STLP_IMPORT_DECLSPEC void* _STLP_STDCALL _InterlockedExchangePointer(void* volatile *, void*);
206 void* _STLP_CALL STLPInterlockedExchangePointer(void* volatile* __a, void* __b) {
  /prebuilts/ndk/android-ndk-r7/sources/cxx-stl/stlport/stlport/stl/config/
_windows.h 98 _STLP_IMPORT_DECLSPEC long _STLP_STDCALL InterlockedIncrement(long volatile *);
99 _STLP_IMPORT_DECLSPEC long _STLP_STDCALL InterlockedDecrement(long volatile *);
100 _STLP_IMPORT_DECLSPEC long _STLP_STDCALL InterlockedExchange(long volatile *, long);
102 _STLP_IMPORT_DECLSPEC void* _STLP_STDCALL _InterlockedExchangePointer(void* volatile *, void*);
206 void* _STLP_CALL STLPInterlockedExchangePointer(void* volatile* __a, void* __b) {
  /external/libnfc-nxp/src/
phHciNfc_Generic.h 603 volatile phHciNfc_eSeq_t hci_seq;
606 volatile phNfc_sState_t hci_state;
699 volatile uint16_t tx_total;
701 volatile uint16_t tx_remain;
703 volatile uint16_t tx_sent;
705 volatile uint16_t rx_index;
708 volatile uint16_t rx_total;
710 volatile uint16_t rx_recvd;
716 volatile uint8_t tx_hcp_chaining;
718 volatile uint16_t tx_hcp_frgmnt_index
    [all...]
  /external/valgrind/main/coregrind/
m_debuglog.c 76 volatile Int block[2];
79 __asm__ volatile (
103 __asm__ volatile (
117 volatile Long block[2];
120 __asm__ volatile (
146 __asm__ volatile (
160 volatile Int block[2];
163 __asm__ volatile (
188 __asm__ volatile (
203 volatile Long block[2]
    [all...]
  /external/clang/test/SemaCXX/
overload-call.cpp 162 float* quals_rank1(int const volatile *p);
169 void quals_rank3(int const * const * const volatile * p); // expected-note{{candidate function}}
170 void quals_rank3(int const * const volatile * const * p); // expected-note{{candidate function}}
173 void quals_rank3(int volatile *); // expected-note{{candidate function}}
175 void test_quals_ranking(int * p, int volatile *pq, int * * pp, int * * * ppp) {
264 float& cvqual_subsume2(const volatile Y&); // expected-note{{candidate function}}
441 void f(bool const volatile&); // expected-note{{passing argument to parameter here}}
444 void g() { f(""); } // expected-error{{volatile lvalue reference to type 'const volatile bool' cannot bind to a value of unrelated type 'const char [1]'}}
  /external/stlport/test/unit/
type_traits_test.cpp 71 int volatile* int_volatile_pointer;
72 int const volatile* int_const_volatile_pointer;
75 int volatile int_volatile_val = 0;
78 int const volatile& int_const_volatile_ref = int_val;
97 any_type volatile* any_volatile_pointer;
98 any_type const volatile* any_const_volatile_pointer;
112 any_pod_type volatile* any_pod_volatile_pointer;
113 any_pod_type const volatile* any_pod_const_volatile_pointer;
404 CPPUNIT_ASSERT( type_to_value(_IsRefType<int const volatile&>::_Ret()) == 1 );
  /external/webkit/Source/WebCore/bridge/objc/
objc_instance.mm 327 // Work around problem in some versions of GCC where result gets marked volatile and
328 // it can't handle copying from a volatile to non-volatile.
378 // Work around problem in some versions of GCC where result gets marked volatile and
379 // it can't handle copying from a volatile to non-volatile.
435 // Work around problem in some versions of GCC where result gets marked volatile and
436 // it can't handle copying from a volatile to non-volatile.
  /ndk/tests/device/test-gnustl-full/unit/
type_traits_test.cpp 71 int volatile* int_volatile_pointer;
72 int const volatile* int_const_volatile_pointer;
75 int volatile int_volatile_val = 0;
78 int const volatile& int_const_volatile_ref = int_val;
97 any_type volatile* any_volatile_pointer;
98 any_type const volatile* any_const_volatile_pointer;
112 any_pod_type volatile* any_pod_volatile_pointer;
113 any_pod_type const volatile* any_pod_const_volatile_pointer;
404 CPPUNIT_ASSERT( type_to_value(_IsRefType<int const volatile&>::_Ret()) == 1 );
  /ndk/tests/device/test-stlport/unit/
type_traits_test.cpp 71 int volatile* int_volatile_pointer;
72 int const volatile* int_const_volatile_pointer;
75 int volatile int_volatile_val = 0;
78 int const volatile& int_const_volatile_ref = int_val;
97 any_type volatile* any_volatile_pointer;
98 any_type const volatile* any_const_volatile_pointer;
112 any_pod_type volatile* any_pod_volatile_pointer;
113 any_pod_type const volatile* any_pod_const_volatile_pointer;
404 CPPUNIT_ASSERT( type_to_value(_IsRefType<int const volatile&>::_Ret()) == 1 );
  /packages/apps/Email/tests/src/com/android/email/
RefreshManagerTest.java 403 // on the test thread, so mCalledSendPendingMessages needs to be volatile.
420 // volatile is necessary for testSendPendingMessagesForAllAccounts().
423 public volatile long mAccountId = -1;
424 public volatile long mMailboxId = -1;
425 public volatile boolean mCalledSendPendingMessages;
426 public volatile boolean mCalledUpdateMailbox;
427 public volatile boolean mCalledUpdateMailboxList;
428 public volatile boolean mCalledLoadMoreMessages;
429 public volatile Result mListener;
  /external/llvm/docs/
Atomics.html 37 minimal intrinsics were provided, and <code>volatile</code> was used in some
49 <li>Proper semantics for Java-style memory, for both <code>volatile</code> and
58 <p>Atomic and volatile in the IR are orthogonal; "volatile" is the C/C++
59 volatile, which ensures that every volatile load and store happens and is
63 be erased. This transformation is not allowed for a pair of volatile
64 stores. On the other hand, a non-volatile non-atomic load can be moved
65 across a volatile load freely, but not an Acquire load.</p>
207 volatile loads and stores are not properly atomic; do not try to us
    [all...]

Completed in 825 milliseconds

<<31323334353637383940>>