Home
last modified time | relevance | path

Searched refs:MinAtomic (Results 1 - 7 of 7) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/src/Reactor/
H A DEmulatedIntrinsics.hpp51 RValue<Int> MinAtomic(RValue<Pointer<Int>> x, RValue<Int> y, std::memory_order memoryOrder);
52 RValue<UInt> MinAtomic(RValue<Pointer<UInt>> x, RValue<UInt> y, std::memory_order memoryOrder);
H A DEmulatedIntrinsics.cpp256 RValue<Int> MinAtomic(RValue<Pointer<Int>> x, RValue<Int> y, std::memory_order memoryOrder)
261 RValue<UInt> MinAtomic(RValue<Pointer<UInt>> x, RValue<UInt> y, std::memory_order memoryOrder)
H A DSubzeroReactor.cpp4523 RValue<Int> MinAtomic(RValue<Pointer<Int>> x, RValue<Int> y, std::memory_order memoryOrder)
4526 return emulated::MinAtomic(x, y, memoryOrder);
4529 RValue<UInt> MinAtomic(RValue<Pointer<UInt>> x, RValue<UInt> y, std::memory_order memoryOrder)
4532 return emulated::MinAtomic(x, y, memoryOrder);
H A DReactor.hpp1345 RValue<Int> MinAtomic(RValue<Pointer<Int>> x, RValue<Int> y, std::memory_order memoryOrder);
1347 RValue<UInt> MinAtomic(RValue<Pointer<UInt>> x, RValue<UInt> y, std::memory_order memoryOrder);
H A DLLVMReactor.cpp3566 RValue<Int> MinAtomic(RValue<Pointer<Int>> x, RValue<Int> y, std::memory_order memoryOrder) in MinAtomic() function
3571 RValue<UInt> MinAtomic(RValue<Pointer<UInt>> x, RValue<UInt> y, std::memory_order memoryOrder) in MinAtomic() function
/third_party/skia/third_party/externals/swiftshader/src/Pipeline/
H A DSpirvShader.cpp2359 v = As<UInt>(MinAtomic(Pointer<Int>(&ptr.base[offset]), As<Int>(laneValue), memoryOrder)); in EmitAtomicOp()
2365 v = MinAtomic(Pointer<UInt>(&ptr.base[offset]), laneValue, memoryOrder); in EmitAtomicOp()
/third_party/skia/third_party/externals/swiftshader/tests/ReactorUnitTests/
H A DReactorUnitTests.cpp3207 TEST(ReactorUnitTests, MinAtomic)
3214 UInt r = rr::MinAtomic(p, a, std::memory_order_relaxed);
3231 Int r = rr::MinAtomic(p, a, std::memory_order_relaxed);

Completed in 23 milliseconds