Home
last modified time | relevance | path

Searched full:volatile (Results 1 – 25 of 2367) sorted by relevance

12345678910>>...95

/third_party/skia/third_party/externals/tint/test/bug/tint/
D749.spvasm155 %721 = OpLoad %24 %26 Volatile
164 OpStore %26 %720 Volatile
168 %723 = OpLoad %178 %180 Volatile|Nontemporal
176 %726 = OpLoad %24 %26 Volatile|Nontemporal
181 %727 = OpLoad %24 %26 Volatile|Nontemporal
183 OpStore %26 %727 Volatile|Nontemporal
184 %161 = OpLoad %6 %152 Volatile|Nontemporal
191 OpStore %26 %729 Volatile
192 %162 = OpLoad %6 %152 Volatile
193 %730 = OpLoad %178 %180 Volatile|Nontemporal
[all …]
/third_party/vk-gl-cts/android/cts/main/vk-master-2022-03-01/
Drobustness.txt129 dEQP-VK.robustness.robustness2.bind.notemplate.r32f.dontunroll.volatile.storage_buffer.readonly.no_…
130 dEQP-VK.robustness.robustness2.bind.notemplate.r32f.dontunroll.volatile.storage_buffer.readonly.no_…
131 dEQP-VK.robustness.robustness2.bind.notemplate.r32f.dontunroll.volatile.storage_buffer.readonly.no_…
132 dEQP-VK.robustness.robustness2.bind.notemplate.r32f.dontunroll.volatile.storage_buffer.readonly.no_…
133 dEQP-VK.robustness.robustness2.bind.notemplate.r32f.dontunroll.volatile.storage_buffer.readonly.no_…
134 dEQP-VK.robustness.robustness2.bind.notemplate.r32f.dontunroll.volatile.storage_buffer.readonly.no_…
135 dEQP-VK.robustness.robustness2.bind.notemplate.r32f.dontunroll.volatile.storage_buffer.readonly.no_…
136 dEQP-VK.robustness.robustness2.bind.notemplate.r32f.dontunroll.volatile.storage_buffer.readonly.no_…
137 dEQP-VK.robustness.robustness2.bind.notemplate.r32f.dontunroll.volatile.storage_buffer.readonly.no_…
138 dEQP-VK.robustness.robustness2.bind.notemplate.r32f.dontunroll.volatile.storage_buffer.readonly.no_…
[all …]
/third_party/vk-gl-cts/external/vulkancts/mustpass/main/vk-default/
Drobustness.txt1353 dEQP-VK.robustness.image_robustness.bind.notemplate.r32f.dontunroll.volatile.storage_image.fmt_qual…
1354 dEQP-VK.robustness.image_robustness.bind.notemplate.r32f.dontunroll.volatile.storage_image.fmt_qual…
1355 dEQP-VK.robustness.image_robustness.bind.notemplate.r32f.dontunroll.volatile.storage_image.fmt_qual…
1356 dEQP-VK.robustness.image_robustness.bind.notemplate.r32f.dontunroll.volatile.storage_image.fmt_qual…
1357 dEQP-VK.robustness.image_robustness.bind.notemplate.r32f.dontunroll.volatile.storage_image.fmt_qual…
1358 dEQP-VK.robustness.image_robustness.bind.notemplate.r32f.dontunroll.volatile.storage_image.fmt_qual…
1359 dEQP-VK.robustness.image_robustness.bind.notemplate.r32f.dontunroll.volatile.storage_image.fmt_qual…
1360 dEQP-VK.robustness.image_robustness.bind.notemplate.r32f.dontunroll.volatile.storage_image.fmt_qual…
1361 dEQP-VK.robustness.image_robustness.bind.notemplate.r32f.dontunroll.volatile.storage_image.fmt_qual…
1362 dEQP-VK.robustness.image_robustness.bind.notemplate.r32f.dontunroll.volatile.storage_image.fmt_qual…
[all …]
/third_party/node/deps/v8/src/base/
Datomicops.h81 volatile std::atomic<T>* to_std_atomic(volatile T* ptr) { in to_std_atomic()
82 return reinterpret_cast<volatile std::atomic<T>*>(ptr); in to_std_atomic()
85 volatile const std::atomic<T>* to_std_atomic_const(volatile const T* ptr) { in to_std_atomic_const()
86 return reinterpret_cast<volatile const std::atomic<T>*>(ptr); in to_std_atomic_const()
103 inline Atomic8 Relaxed_CompareAndSwap(volatile Atomic8* ptr, Atomic8 old_value, in Relaxed_CompareAndSwap()
111 inline Atomic16 Relaxed_CompareAndSwap(volatile Atomic16* ptr, in Relaxed_CompareAndSwap()
119 inline Atomic32 Relaxed_CompareAndSwap(volatile Atomic32* ptr, in Relaxed_CompareAndSwap()
127 inline Atomic32 Relaxed_AtomicExchange(volatile Atomic32* ptr, in Relaxed_AtomicExchange()
133 inline Atomic32 SeqCst_AtomicExchange(volatile Atomic32* ptr, in SeqCst_AtomicExchange()
139 inline Atomic32 Relaxed_AtomicIncrement(volatile Atomic32* ptr, in Relaxed_AtomicIncrement()
[all …]
Datomicops_internals_atomicword_compat.h26 inline AtomicWord Relaxed_CompareAndSwap(volatile AtomicWord* ptr, in Relaxed_CompareAndSwap()
29 return Relaxed_CompareAndSwap(reinterpret_cast<volatile Atomic32*>(ptr), in Relaxed_CompareAndSwap()
33 inline AtomicWord Relaxed_AtomicExchange(volatile AtomicWord* ptr, in Relaxed_AtomicExchange()
35 return Relaxed_AtomicExchange(reinterpret_cast<volatile Atomic32*>(ptr), in Relaxed_AtomicExchange()
39 inline AtomicWord Relaxed_AtomicIncrement(volatile AtomicWord* ptr, in Relaxed_AtomicIncrement()
41 return Relaxed_AtomicIncrement(reinterpret_cast<volatile Atomic32*>(ptr), in Relaxed_AtomicIncrement()
45 inline AtomicWord Acquire_CompareAndSwap(volatile AtomicWord* ptr, in Acquire_CompareAndSwap()
49 reinterpret_cast<volatile Atomic32*>(ptr), old_value, new_value); in Acquire_CompareAndSwap()
52 inline AtomicWord Release_CompareAndSwap(volatile AtomicWord* ptr, in Release_CompareAndSwap()
56 reinterpret_cast<volatile Atomic32*>(ptr), old_value, new_value); in Release_CompareAndSwap()
[all …]
/third_party/skia/third_party/externals/swiftshader/tests/regres/testlists/vk-default/
Drobustness.txt1919 dEQP-VK.robustness.robustness2.bind.notemplate.r32i.dontunroll.volatile.storage_buffer.readwrite.no…
1920 dEQP-VK.robustness.robustness2.bind.notemplate.r32i.dontunroll.volatile.storage_buffer.readwrite.no…
1921 dEQP-VK.robustness.robustness2.bind.notemplate.r32i.dontunroll.volatile.storage_buffer.readwrite.no…
1922 dEQP-VK.robustness.robustness2.bind.notemplate.r32i.dontunroll.volatile.storage_buffer.readwrite.no…
1923 dEQP-VK.robustness.robustness2.bind.notemplate.r32i.dontunroll.volatile.storage_buffer.readwrite.no…
1924 dEQP-VK.robustness.robustness2.bind.notemplate.r32i.dontunroll.volatile.storage_buffer.readwrite.no…
1925 dEQP-VK.robustness.robustness2.bind.notemplate.r32i.dontunroll.volatile.storage_buffer.readwrite.no…
1926 dEQP-VK.robustness.robustness2.bind.notemplate.r32i.dontunroll.volatile.storage_buffer.readwrite.no…
1927 dEQP-VK.robustness.robustness2.bind.notemplate.r32i.dontunroll.volatile.storage_buffer.readwrite.no…
1928 dEQP-VK.robustness.robustness2.bind.notemplate.r32i.dontunroll.volatile.storage_buffer.readwrite.no…
[all …]
/third_party/vk-gl-cts/external/vulkancts/mustpass/master/vk-default/
Drobustness.txt1919 dEQP-VK.robustness.robustness2.bind.notemplate.r32i.dontunroll.volatile.storage_buffer.readwrite.no…
1920 dEQP-VK.robustness.robustness2.bind.notemplate.r32i.dontunroll.volatile.storage_buffer.readwrite.no…
1921 dEQP-VK.robustness.robustness2.bind.notemplate.r32i.dontunroll.volatile.storage_buffer.readwrite.no…
1922 dEQP-VK.robustness.robustness2.bind.notemplate.r32i.dontunroll.volatile.storage_buffer.readwrite.no…
1923 dEQP-VK.robustness.robustness2.bind.notemplate.r32i.dontunroll.volatile.storage_buffer.readwrite.no…
1924 dEQP-VK.robustness.robustness2.bind.notemplate.r32i.dontunroll.volatile.storage_buffer.readwrite.no…
1925 dEQP-VK.robustness.robustness2.bind.notemplate.r32i.dontunroll.volatile.storage_buffer.readwrite.no…
1926 dEQP-VK.robustness.robustness2.bind.notemplate.r32i.dontunroll.volatile.storage_buffer.readwrite.no…
1927 dEQP-VK.robustness.robustness2.bind.notemplate.r32i.dontunroll.volatile.storage_buffer.readwrite.no…
1928 dEQP-VK.robustness.robustness2.bind.notemplate.r32i.dontunroll.volatile.storage_buffer.readwrite.no…
[all …]
/third_party/vk-gl-cts/external/vulkancts/mustpass/main/vksc-default/
Drobustness.txt1294 dEQP-VKSC.robustness.image_robustness.bind.notemplate.r32f.dontunroll.volatile.storage_image.fmt_qu…
1295 dEQP-VKSC.robustness.image_robustness.bind.notemplate.r32f.dontunroll.volatile.storage_image.fmt_qu…
1296 dEQP-VKSC.robustness.image_robustness.bind.notemplate.r32f.dontunroll.volatile.storage_image.fmt_qu…
1297 dEQP-VKSC.robustness.image_robustness.bind.notemplate.r32f.dontunroll.volatile.storage_image.fmt_qu…
1298 dEQP-VKSC.robustness.image_robustness.bind.notemplate.r32f.dontunroll.volatile.storage_image.fmt_qu…
1299 dEQP-VKSC.robustness.image_robustness.bind.notemplate.r32f.dontunroll.volatile.storage_image.fmt_qu…
1300 dEQP-VKSC.robustness.image_robustness.bind.notemplate.r32f.dontunroll.volatile.storage_image.fmt_qu…
1301 dEQP-VKSC.robustness.image_robustness.bind.notemplate.r32f.dontunroll.volatile.storage_image.fmt_qu…
1302 dEQP-VKSC.robustness.image_robustness.bind.notemplate.r32f.dontunroll.volatile.storage_image.fmt_qu…
1303 dEQP-VKSC.robustness.image_robustness.bind.notemplate.r32f.dontunroll.volatile.storage_image.fmt_qu…
[all …]
/third_party/vk-gl-cts/external/vulkancts/mustpass/main/vksc-default/image/
Dqualifiers.txt33 dEQP-VKSC.image.qualifiers.volatile.1d.r32f
34 dEQP-VKSC.image.qualifiers.volatile.1d.r32i
35 dEQP-VKSC.image.qualifiers.volatile.1d.r32ui
36 dEQP-VKSC.image.qualifiers.volatile.1d_array.r32f
37 dEQP-VKSC.image.qualifiers.volatile.1d_array.r32i
38 dEQP-VKSC.image.qualifiers.volatile.1d_array.r32ui
39 dEQP-VKSC.image.qualifiers.volatile.2d.r32f
40 dEQP-VKSC.image.qualifiers.volatile.2d.r32i
41 dEQP-VKSC.image.qualifiers.volatile.2d.r32ui
42 dEQP-VKSC.image.qualifiers.volatile.2d_array.r32f
[all …]
/third_party/vk-gl-cts/external/vulkancts/mustpass/main/vk-default/image/
Dqualifiers.txt33 dEQP-VK.image.qualifiers.volatile.1d.r32f
34 dEQP-VK.image.qualifiers.volatile.1d.r32i
35 dEQP-VK.image.qualifiers.volatile.1d.r32ui
36 dEQP-VK.image.qualifiers.volatile.1d_array.r32f
37 dEQP-VK.image.qualifiers.volatile.1d_array.r32i
38 dEQP-VK.image.qualifiers.volatile.1d_array.r32ui
39 dEQP-VK.image.qualifiers.volatile.2d.r32f
40 dEQP-VK.image.qualifiers.volatile.2d.r32i
41 dEQP-VK.image.qualifiers.volatile.2d.r32ui
42 dEQP-VK.image.qualifiers.volatile.2d_array.r32f
[all …]
/third_party/vk-gl-cts/android/cts/main/vk-master-2021-03-01/
Drobustness.txt493 dEQP-VK.robustness.image_robustness.bind.notemplate.r32f.dontunroll.volatile.storage_image.fmt_qual…
494 dEQP-VK.robustness.image_robustness.bind.notemplate.r32f.dontunroll.volatile.storage_image.fmt_qual…
495 dEQP-VK.robustness.image_robustness.bind.notemplate.r32f.dontunroll.volatile.storage_image.fmt_qual…
496 dEQP-VK.robustness.image_robustness.bind.notemplate.r32f.dontunroll.volatile.storage_image.fmt_qual…
497 dEQP-VK.robustness.image_robustness.bind.notemplate.r32f.dontunroll.volatile.storage_image.fmt_qual…
498 dEQP-VK.robustness.image_robustness.bind.notemplate.r32f.dontunroll.volatile.storage_image.fmt_qual…
499 dEQP-VK.robustness.image_robustness.bind.notemplate.r32f.dontunroll.volatile.storage_image.fmt_qual…
500 dEQP-VK.robustness.image_robustness.bind.notemplate.r32f.dontunroll.volatile.storage_image.fmt_qual…
501 dEQP-VK.robustness.image_robustness.bind.notemplate.r32f.dontunroll.volatile.storage_image.fmt_qual…
502 dEQP-VK.robustness.image_robustness.bind.notemplate.r32f.dontunroll.volatile.storage_image.fmt_qual…
[all …]
/third_party/libabigail/tests/data/test-abidiff-exit/
Dqualifier-typedef-array-report-1.txt19 entity changed from 'typedef A' to compatible type 'void* volatile[7]'
21 entity changed from 'void*' to 'void* volatile'
23 type name changed from 'void*[7]' to 'void* volatile[7]'
39 entity changed from 'typedef A' to compatible type 'void* volatile[7]'
41 entity changed from 'void*' to 'void* volatile'
43 type name changed from 'void*[7]' to 'void* volatile[7]'
50 entity changed from 'typedef C' to compatible type 'const volatile void*[7]'
52 'void* const' changed to 'const volatile void*'
53 type name changed from 'void* const[7]' to 'const volatile void*[7]'
62 entity changed from 'typedef D' to compatible type 'const volatile void*[7]'
[all …]
Dqualifier-typedef-array-v1.c5 typedef volatile D E;
12 volatile A v_a; // +volatile
15 volatile B v_b; // +volatile
18 volatile C v_c; // +volatile
21 volatile D v_d; // +volatile
24 volatile E v_e; // same
27 volatile F v_f; // same
30 volatile G v_g; // same
33 volatile H v_h; // same
/third_party/python/Python/
Ddynamic_annotations.c49 const volatile void *lock){} in AnnotateRWLockCreate()
51 const volatile void *lock){} in AnnotateRWLockDestroy()
53 const volatile void *lock, long is_w){} in AnnotateRWLockAcquired()
55 const volatile void *lock, long is_w){} in AnnotateRWLockReleased()
57 const volatile void *barrier, long count, in AnnotateBarrierInit()
60 const volatile void *barrier) {} in AnnotateBarrierWaitBefore()
62 const volatile void *barrier) {} in AnnotateBarrierWaitAfter()
64 const volatile void *barrier) {} in AnnotateBarrierDestroy()
67 const volatile void *cv, in AnnotateCondVarWait()
68 const volatile void *lock){} in AnnotateCondVarWait()
[all …]
/third_party/node/deps/v8/src/third_party/valgrind/
Dvalgrind.h238 ({volatile unsigned int _zzq_args[6]; \
239 volatile unsigned int _zzq_result; \
246 __asm__ volatile(__SPECIAL_INSTRUCTION_PREAMBLE \
257 { volatile OrigFn* _zzq_orig = &(_zzq_rlval); \
258 volatile unsigned int __addr; \
259 __asm__ volatile(__SPECIAL_INSTRUCTION_PREAMBLE \
305 volatile uintptr_t _zzq_args[6]; in valgrind_do_client_request_expr()
306 volatile unsigned int _zzq_result; in valgrind_do_client_request_expr()
323 { volatile OrigFn* _zzq_orig = &(_zzq_rlval); \
324 volatile unsigned int __addr; \
[all …]
/third_party/libinput/include/valgrind/
Dvalgrind.h283 ({volatile unsigned int _zzq_args[6]; \
284 volatile unsigned int _zzq_result; \
291 __asm__ volatile(__SPECIAL_INSTRUCTION_PREAMBLE \
302 { volatile OrigFn* _zzq_orig = &(_zzq_rlval); \
303 volatile unsigned int __addr; \
304 __asm__ volatile(__SPECIAL_INSTRUCTION_PREAMBLE \
321 __asm__ volatile(__SPECIAL_INSTRUCTION_PREAMBLE \
360 volatile uintptr_t _zzq_args[6]; in valgrind_do_client_request_expr()
361 volatile unsigned int _zzq_result; in valgrind_do_client_request_expr()
378 { volatile OrigFn* _zzq_orig = &(_zzq_rlval); \
[all …]
/third_party/cmsis/CMSIS/Core/Include/m-profile/
Dcmsis_iccarm_m.h120 #define __COMPILER_BARRIER() __ASM volatile("":::"memory")
326 __ASM volatile ("CPSID F" ::: "memory"); in __disable_fault_irq()
331 __ASM volatile ("CPSIE F" ::: "memory"); in __enable_fault_irq()
448 #define __CLREX() (__ASM volatile ("CLREX" ::: "memory"))
639 __IAR_FT uint32_t __LDREXW(uint32_t volatile *ptr) in __LDREXW()
644 __IAR_FT uint32_t __STREXW(uint32_t value, uint32_t volatile *ptr) in __STREXW()
657 __ASM volatile("RRX %0, %1" : "=r"(result) : "r" (value)); in __RRX()
663 __asm volatile("MSR BASEPRI_MAX,%0"::"r" (value)); in __set_BASEPRI_MAX()
668 __ASM volatile ("CPSID F" ::: "memory"); in __disable_fault_irq()
673 __ASM volatile ("CPSIE F" ::: "memory"); in __enable_fault_irq()
[all …]
Dcmsis_gcc_m.h109 #define __COMPILER_BARRIER() __ASM volatile("":::"memory")
225 #define __NOP() __ASM volatile ("nop")
232 #define __WFI() __ASM volatile ("wfi":::"memory")
240 #define __WFE() __ASM volatile ("wfe":::"memory")
247 #define __SEV() __ASM volatile ("sev")
258 __ASM volatile ("isb 0xF":::"memory"); in __ISB()
269 __ASM volatile ("dsb 0xF":::"memory"); in __DSB()
280 __ASM volatile ("dmb 0xF":::"memory"); in __DMB()
347 #define __BKPT(value) __ASM volatile ("bkpt "#value)
483 __ASM volatile ("clrex" ::: "memory"); in __CLREX()
[all …]
/third_party/python/Include/internal/
Dpycore_atomic.h127 __asm__ volatile("":::"memory");
134 __asm__ volatile("mfence":::"memory");
139 _Py_ANNOTATE_MEMORY_ORDER(const volatile void *address, _Py_memory_order order)
168 volatile __typeof__(new_val) *volatile_data = &atomic_val->_value; \
185 __asm__ volatile("xchg %0, %1" \
198 volatile __typeof__(result) *volatile_data = &atomic_val->_value; \
251 volatile uintptr_t _value;
255 volatile int _value;
263 …_InterlockedExchange64_HLEAcquire((__int64 volatile*)&((ATOMIC_VAL)->_value), (__int64)(NEW_VAL));…
266 …_InterlockedExchange64_HLERelease((__int64 volatile*)&((ATOMIC_VAL)->_value), (__int64)(NEW_VAL));…
[all …]
Dpycore_atomic_funcs.h46 volatile __int64 *volatile_var = (volatile __int64 *)var;
53 volatile long *volatile_var = (volatile long *)var;
66 volatile __int64 *volatile_var = (volatile __int64 *)var;
70 volatile long *volatile_var = (volatile long *)var;
76 // Fallback implementation using volatile
80 volatile Py_ssize_t *volatile_var = (volatile Py_ssize_t *)var;
86 volatile Py_ssize_t *volatile_var = (volatile Py_ssize_t *)var;
/third_party/cmsis/CMSIS/Core/Include/a-profile/
Dcmsis_clang_a.h103 #define __COMPILER_BARRIER() __ASM volatile("":::"memory")
112 #define __NOP() __ASM volatile ("nop")
119 #define __WFI() __ASM volatile ("wfi":::"memory")
127 #define __WFE() __ASM volatile ("wfe":::"memory")
134 #define __SEV() __ASM volatile ("sev")
145 __ASM volatile ("isb 0xF":::"memory"); in __ISB()
156 __ASM volatile ("dsb 0xF":::"memory"); in __DSB()
167 __ASM volatile ("dmb 0xF":::"memory"); in __DMB()
248 #define __BKPT(value) __ASM volatile ("bkpt "#value)
294 __STATIC_FORCEINLINE uint8_t __LDREXB(volatile uint8_t *addr) in __LDREXB()
[all …]
Dcmsis_gcc_a.h110 #define __COMPILER_BARRIER() __ASM volatile("":::"memory")
119 #define __NOP() __ASM volatile ("nop")
126 #define __WFI() __ASM volatile ("wfi":::"memory")
134 #define __WFE() __ASM volatile ("wfe":::"memory")
141 #define __SEV() __ASM volatile ("sev")
152 __ASM volatile ("isb 0xF":::"memory"); in __ISB()
163 __ASM volatile ("dsb 0xF":::"memory"); in __DSB()
174 __ASM volatile ("dmb 0xF":::"memory"); in __DMB()
255 #define __BKPT(value) __ASM volatile ("bkpt "#value)
303 __STATIC_FORCEINLINE uint8_t __LDREXB(volatile uint8_t *addr) in __LDREXB()
[all …]
/third_party/musl/src/internal/
Dfork_impl.h3 extern hidden volatile int *const __at_quick_exit_lockptr;
4 extern hidden volatile int *const __atexit_lockptr;
5 extern hidden volatile int *const __gettext_lockptr;
6 extern hidden volatile int *const __locale_lockptr;
7 extern hidden volatile int *const __random_lockptr;
8 extern hidden volatile int *const __sem_open_lockptr;
9 extern hidden volatile int *const __stdio_ofl_lockptr;
10 extern hidden volatile int *const __syslog_lockptr;
11 extern hidden volatile int *const __timezone_lockptr;
13 extern hidden volatile int *const __bump_lockptr;
[all …]
/third_party/musl/porting/liteos_m/user/src/internal/
Dpthread_impl.h29 volatile int detach_state;
30 volatile int cancel;
31 volatile unsigned char canceldisable, cancelasync;
43 volatile void *volatile head;
45 volatile void *volatile pending;
47 volatile int timer_id;
49 volatile int killlock[1];
143 extern hidden volatile size_t __pthread_tsd_size;
145 extern hidden volatile int __aio_fut;
146 extern hidden volatile int __eintr_valid_flag;
[all …]
/third_party/spirv-tools/test/fuzz/
Dtransformation_set_memory_operands_mask_test.cpp80 OpCopyMemory %133 %12 Volatile in TEST()
86 %147 = OpLoad %7 %146 Volatile|Nontemporal|Aligned 16 in TEST()
111 (uint32_t)spv::MemoryAccessMask::Volatile, in TEST()
128 (uint32_t)spv::MemoryAccessMask::Volatile | in TEST()
137 (uint32_t)spv::MemoryAccessMask::Volatile, in TEST()
158 // OK: adds Nontemporal and Volatile in TEST()
163 (uint32_t)spv::MemoryAccessMask::Volatile, in TEST()
171 // Not OK to remove Volatile in TEST()
181 (uint32_t)spv::MemoryAccessMask::Volatile, in TEST()
190 (uint32_t)spv::MemoryAccessMask::Volatile, in TEST()
[all …]

12345678910>>...95