Home
last modified time | relevance | path

Searched refs:otherOp (Results 1 – 6 of 6) sorted by relevance

/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/selects/
DSelect.kt135 public fun trySelectOther(otherOp: PrepareOp?): Any? in trySelect()
484 override fun trySelectOther(otherOp: PrepareOp?): Any? { in next()
489 if (otherOp == null) { in next()
494 val pairSelectOp = PairSelectOp(otherOp) in next()
504 if (otherOp != null) { in next()
505 val otherAtomicOp = otherOp.atomicOp in next()
534 otherOp == null -> return null // already selected in next()
535 state === otherOp.desc -> return RESUME_TOKEN // was selected with this marker in next()
543 @JvmField val otherOp: PrepareOp in next() constant in kotlinx.coroutines.selects.PairSelectOp
549 otherOp.finishPrepare() in next()
[all …]
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/channels/
DAbstractChannel.kt449 override fun tryResumeSend(otherOp: PrepareOp?): Symbol? = in <lambda>()
450 select.trySelectOther(otherOp) as Symbol? // must return symbol in <lambda>()
478 …override fun tryResumeSend(otherOp: PrepareOp?): Symbol? = RESUME_TOKEN.also { otherOp?.finishPrep… in <lambda>()
891 override fun tryResumeReceive(value: E, otherOp: PrepareOp?): Symbol? { in tryResumeReceive()
892 …val token = cont.tryResume(resumeValue(value), otherOp?.desc, resumeOnCancellationFun(value)) ?: r… in tryResumeReceive()
895 otherOp?.finishPrepare() in tryResumeReceive()
924 override fun tryResumeReceive(value: E, otherOp: PrepareOp?): Symbol? { in tryResumeReceive()
925 val token = cont.tryResume(true, otherOp?.desc, resumeOnCancellationFun(value)) in tryResumeReceive()
929 otherOp?.finishPrepare() in tryResumeReceive()
966 override fun tryResumeReceive(value: E, otherOp: PrepareOp?): Symbol? = in resumeOnCancellationFun()
[all …]
/external/skia/src/gpu/
DGrStencilSettings.cpp181 SkDEBUGCODE(GrUserStencilOp otherOp = std::min(user.fPassOp, user.fFailOp);) in reset()
185 SkASSERT(otherOp <= kLastUserOnlyStencilOp); in reset()
189 SkASSERT(GrUserStencilOp::kKeep == otherOp || in reset()
190 (otherOp > kLastUserOnlyStencilOp && otherOp <= kLastClipOnlyStencilOp)); in reset()
194 SkASSERT(GrUserStencilOp::kKeep == otherOp || otherOp > kLastClipOnlyStencilOp); in reset()
/external/skqp/src/gpu/
DGrStencilSettings.cpp181 SkDEBUGCODE(GrUserStencilOp otherOp = SkTMin(user.fPassOp, user.fFailOp);) in reset()
185 SkASSERT(otherOp <= kLastUserOnlyStencilOp); in reset()
189 SkASSERT(GrUserStencilOp::kKeep == otherOp || in reset()
190 (otherOp > kLastUserOnlyStencilOp && otherOp <= kLastClipOnlyStencilOp)); in reset()
194 SkASSERT(GrUserStencilOp::kKeep == otherOp || otherOp > kLastClipOnlyStencilOp); in reset()
/external/llvm-project/mlir/lib/Dialect/Vector/
DVectorOps.cpp2633 if (auto otherOp = source().getDefiningOp<ShapeCastOp>()) in fold() local
2634 if (result().getType() == otherOp.source().getType()) in fold()
2635 return otherOp.source(); in fold()
2699 if (auto otherOp = source().getDefiningOp<BitCastOp>()) in fold() local
2700 if (result().getType() == otherOp.source().getType()) in fold()
2701 return otherOp.source(); in fold()
/external/llvm-project/mlir/include/mlir/Dialect/PDL/IR/
DPDLOps.td360 pdl.replace %root with %otherOp