HomeSort by: relevance | last modified time | path
    Searched refs:ATOMIC (Results 1 - 2 of 2) sorted by relevancy

  /src/sys/external/bsd/drm2/dist/drm/i915/
i915_utils.h 380 # define _WAIT_FOR_ATOMIC_CHECK(ATOMIC) WARN_ON_ONCE((ATOMIC) && !in_atomic())
382 # define _WAIT_FOR_ATOMIC_CHECK(ATOMIC) do { } while (0)
385 #define _wait_for_atomic(COND, US, ATOMIC) \
389 _WAIT_FOR_ATOMIC_CHECK(ATOMIC); \
390 if (!(ATOMIC)) { \
397 if (!(ATOMIC)) \
410 if (!(ATOMIC)) { \
  /src/sys/external/bsd/compiler_rt/dist/lib/tsan/rtl/
tsan_interface_atomic.cc 14 // ThreadSanitizer atomic operations are based on C++11/C1x standards.
32 // Protects emulation of 128-bit atomic operations.
101 // clang does not support 128-bit atomic ops.
102 // Atomic ops are executed under tsan internal mutex,
103 // here we assume that the atomic variables are not accessed
226 // Assume the access is atomic.
231 // Don't create sync object if it does not exist yet. For example, an atomic
264 // Assume the access is atomic.
470 // since we use __sync_ atomics for actual atomic operations,
487 return Atomic##func(thr, pc, __VA_ARGS__);
    [all...]

Completed in 13 milliseconds