Home
last modified time | relevance | path

Searched refs:Monotonic (Results 1 – 25 of 41) sorted by relevance

12

/third_party/rust/crates/rustix/tests/thread/
Dclocks.rs66 ClockId::Monotonic, in test_invalid_nanosleep_absolute()
76 ClockId::Monotonic, in test_invalid_nanosleep_absolute()
86 ClockId::Monotonic, in test_invalid_nanosleep_absolute()
96 ClockId::Monotonic, in test_invalid_nanosleep_absolute()
121 ClockId::Monotonic, in test_invalid_nanosleep_relative()
131 ClockId::Monotonic, in test_invalid_nanosleep_relative()
141 ClockId::Monotonic, in test_invalid_nanosleep_relative()
151 ClockId::Monotonic, in test_invalid_nanosleep_relative()
188 ClockId::Monotonic, in test_zero_nanosleep_absolute()
213 ClockId::Monotonic, in test_zero_nanosleep_relative()
/third_party/rust/crates/rustix/tests/time/
Dmonotonic.rs9 let a = clock_gettime(ClockId::Monotonic); in test_monotonic_clock()
10 let b = clock_gettime(ClockId::Monotonic); in test_monotonic_clock()
23 let a = clock_gettime(ClockId::Monotonic); in test_monotonic_clock_with_sleep_1s()
28 let b = clock_gettime(ClockId::Monotonic); in test_monotonic_clock_with_sleep_1s()
37 let a = clock_gettime(ClockId::Monotonic); in test_monotonic_clock_with_sleep_1ms()
42 let b = clock_gettime(ClockId::Monotonic); in test_monotonic_clock_with_sleep_1ms()
Dtimerfd.rs8 let fd = timerfd_create(TimerfdClockId::Monotonic, TimerfdFlags::CLOEXEC).unwrap(); in test_timerfd()
42 let fd = timerfd_create(TimerfdClockId::Monotonic, TimerfdFlags::CLOEXEC).unwrap(); in test_timerfd_with_interval()
Ddynamic_clocks.rs9 clock_gettime_dynamic(DynamicClockId::Known(ClockId::Monotonic)).unwrap(); in test_known_clocks()
Dy2038.rs45 let fd = timerfd_create(TimerfdClockId::Monotonic, TimerfdFlags::CLOEXEC).unwrap(); in test_y2038_with_timerfd()
/third_party/rust/crates/rustix/src/backend/linux_raw/time/
Dtypes.rs37 Monotonic = linux_raw_sys::general::CLOCK_MONOTONIC, enumerator
133 Monotonic = linux_raw_sys::general::CLOCK_MONOTONIC, enumerator
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Support/
DAtomicOrdering.h59 Monotonic = 2, // Equivalent to C++'s relaxed. enumerator
124 return isStrongerThan(ao, AtomicOrdering::Monotonic); in isStrongerThanMonotonic()
/third_party/rust/crates/rustix/src/backend/libc/time/
Dtypes.rs127 Monotonic = c::CLOCK_MONOTONIC, enumerator
177 Monotonic = c::CLOCK_MONOTONIC, enumerator
343 Monotonic = c::CLOCK_MONOTONIC, enumerator
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstCombineAtomicRMW.cpp122 Ordering != AtomicOrdering::Monotonic) in visitAtomicRMWInst()
152 Ordering != AtomicOrdering::Monotonic) in visitAtomicRMWInst()
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
DLLVMReactor.hpp129 …case llvm::AtomicOrdering::Monotonic: return std::memory_order_relaxed; // https://llvm.org/docs/… in atomicOrdering()
149 …case std::memory_order_relaxed: return llvm::AtomicOrdering::Monotonic; // https://llvm.org/docs/… in atomicOrdering()
/third_party/skia/third_party/externals/angle2/src/libANGLE/renderer/
Dserial_utils_unittest.cpp16 TEST(SerialTest, Monotonic) in TEST() argument
/third_party/rust/crates/rustix/examples/
Dtime.rs13 rustix::time::clock_gettime(rustix::time::ClockId::Monotonic) in main()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DAtomicExpandPass.cpp254 auto FenceOrdering = AtomicOrdering::Monotonic; in runOnFunction()
257 LI->setOrdering(AtomicOrdering::Monotonic); in runOnFunction()
260 SI->setOrdering(AtomicOrdering::Monotonic); in runOnFunction()
264 RMWI->setOrdering(AtomicOrdering::Monotonic); in runOnFunction()
275 CASI->setSuccessOrdering(AtomicOrdering::Monotonic); in runOnFunction()
276 CASI->setFailureOrdering(AtomicOrdering::Monotonic); in runOnFunction()
279 if (FenceOrdering != AtomicOrdering::Monotonic) { in runOnFunction()
435 Order = AtomicOrdering::Monotonic; in expandAtomicLoadToCmpXchg()
1105 ShouldInsertFencesForAtomic ? AtomicOrdering::Monotonic : SuccessOrder; in expandAtomicCmpXchg()
1117 SuccessOrder != AtomicOrdering::Monotonic && in expandAtomicCmpXchg()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/RISCV/
DRISCVExpandPseudoInsts.cpp153 case AtomicOrdering::Monotonic: in getLRForRMW32()
170 case AtomicOrdering::Monotonic: in getSCForRMW32()
187 case AtomicOrdering::Monotonic: in getLRForRMW64()
204 case AtomicOrdering::Monotonic: in getSCForRMW64()
/third_party/rust/crates/rustix/benches/
Dmod.rs109 let _ = clock_gettime(ClockId::Monotonic); in simple_clock_gettime()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DMemoryDependenceAnalysis.cpp124 if (LI->getOrdering() == AtomicOrdering::Monotonic) { in GetLocation()
137 if (SI->getOrdering() == AtomicOrdering::Monotonic) { in GetLocation()
572 if (LI->getOrdering() != AtomicOrdering::Monotonic) in getSimplePointerDependencyFrom()
625 if (SI->getOrdering() != AtomicOrdering::Monotonic) in getSimplePointerDependencyFrom()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
DAArch64LegalizerInfo.cpp452 atomicOrderingAtLeastOrStrongerThan(0, AtomicOrdering::Monotonic))); in AArch64LegalizerInfo()
460 atomicOrderingAtLeastOrStrongerThan(0, AtomicOrdering::Monotonic))); in AArch64LegalizerInfo()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
DThreadSanitizer.cpp582 case AtomicOrdering::Monotonic: v = 0; break; in createOrdering()
DInstrProfiling.cpp646 AtomicOrdering::Monotonic); in lowerIncrement()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DSIMemoryLegalizer.cpp1142 if (MOI.getOrdering() == AtomicOrdering::Monotonic || in expandLoad()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/XCore/
DXCoreISelLowering.cpp942 N->getOrdering() == AtomicOrdering::Monotonic) && in LowerATOMIC_LOAD()
973 N->getOrdering() == AtomicOrdering::Monotonic) && in LowerATOMIC_STORE()
/third_party/icu/icu4c/source/data/lang/
Dzu.txt916 MONOTON{"i-Monotonic"}
Dar_XB.txt1245 MONOTON{"؜‮Monotonic‬؜"}
/third_party/skia/third_party/externals/icu/source/data/lang/
Dzu.txt876 MONOTON{"i-Monotonic"}
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/IPO/
DAttributor.cpp1416 Success != AtomicOrdering::Monotonic) in isNonRelaxedAtomic()
1419 Failure != AtomicOrdering::Monotonic) in isNonRelaxedAtomic()
1430 Ordering == AtomicOrdering::Monotonic) in isNonRelaxedAtomic()

12