/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/src/internal/ |
D | LockFreeLinkedList.kt | 75 override fun complete(affected: Node, failure: Any?) { in <lambda>() 78 if (update != null && affected._next.compareAndSet( this, update)) { in <lambda>() 88 override fun prepare(affected: Node): Any? = if (condition()) null else CONDITION_FALSE in <lambda>() 327 override fun retry(affected: Node, next: Any): Boolean = next !== queue in <lambda>() 333 _affectedNode.compareAndSet(null, prepareOp.affected) in <lambda>() 336 override fun updatedNext(affected: Node, next: Node): Any { in <lambda>() 339 node._prev.compareAndSet(node, affected) in <lambda>() 344 override fun finishOnSuccess(affected: Node, next: Node) { in <lambda>() 374 protected override fun failure(affected: Node): Any? = in <lambda>() 375 if (affected === queue) LIST_EMPTY else null in <lambda>() [all …]
|
/external/kotlinx.atomicfu/atomicfu/src/commonTest/kotlin/kotlinx/atomicfu/test/ |
D | JSScopesTest.kt | 14 fun updateToB(affected: Any): Boolean { in updateToB() 15 (affected as AtomicState).state.compareAndSet(this, b) in updateToB() 16 return (affected.state.value is B && (affected.state.value as B).value == value + 1) in updateToB() 19 fun manyProperties(affected: Any): Boolean { in manyProperties() 20 (affected as AtomicState).state.compareAndSet(this, c.d.e) in manyProperties() 21 return (affected.state.value is E && (affected.state.value as E).x == value + 1) in manyProperties() 40 val affected: Any = AtomicState(a) in scopeTest() constant 41 check(a.updateToB(affected)) in scopeTest()
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/js/src/internal/ |
D | LinkedList.kt | 101 …actual override fun finishOnSuccess(affected: LockFreeLinkedListNode, next: LockFreeLinkedListNode… in onComplete() 113 …actual override fun finishOnSuccess(affected: LockFreeLinkedListNode, next: LockFreeLinkedListNode… in onComplete() 127 actual open fun onRemoved(affected: Node) {} in onRemoved() 130 val affected = affectedNode in prepare() constant 131 val failure = failure(affected) in prepare() 134 return onPrepare(PrepareOp(affected, this, op)) in prepare() 138 …protected actual open fun failure(affected: LockFreeLinkedListNode): Any? = null // Never fails by… in complete() 139 …protected actual open fun retry(affected: LockFreeLinkedListNode, next: Any): Boolean = false // A… in complete() 140 …protected actual abstract fun finishOnSuccess(affected: LockFreeLinkedListNode, next: LockFreeLink… in complete() 145 actual val affected: LockFreeLinkedListNode, in complete() constant in kotlinx.coroutines.internal.PrepareOp [all …]
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/native/src/internal/ |
D | LinkedList.kt | 101 …actual override fun finishOnSuccess(affected: LockFreeLinkedListNode, next: LockFreeLinkedListNode… in onComplete() 113 …actual override fun finishOnSuccess(affected: LockFreeLinkedListNode, next: LockFreeLinkedListNode… in onComplete() 127 actual open fun onRemoved(affected: Node) {} in onRemoved() 130 val affected = affectedNode in prepare() constant 131 val failure = failure(affected) in prepare() 134 return onPrepare(PrepareOp(affected, this, op)) in prepare() 138 …protected actual open fun failure(affected: LockFreeLinkedListNode): Any? = null // Never fails by… in complete() 139 …protected actual open fun retry(affected: LockFreeLinkedListNode, next: Any): Boolean = false // A… in complete() 140 …protected actual abstract fun finishOnSuccess(affected: LockFreeLinkedListNode, next: LockFreeLink… in complete() 145 actual val affected: LockFreeLinkedListNode, in complete() constant in kotlinx.coroutines.internal.PrepareOp [all …]
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/internal/ |
D | LockFreeLinkedList.common.kt | 57 override fun finishOnSuccess(affected: LockFreeLinkedListNode, next: LockFreeLinkedListNode) in finishPrepare() 65 … final override fun finishOnSuccess(affected: LockFreeLinkedListNode, next: LockFreeLinkedListNode) in finishPrepare() 72 protected open fun failure(affected: LockFreeLinkedListNode): Any? in prepare() 73 protected open fun retry(affected: LockFreeLinkedListNode, next: Any): Boolean in prepare() 76 public open fun onRemoved(affected: LockFreeLinkedListNode) // non-null on failure in prepare() 77 …protected abstract fun finishOnSuccess(affected: LockFreeLinkedListNode, next: LockFreeLinkedListN… in prepare() 82 val affected: LockFreeLinkedListNode in prepare() constant in PrepareOp
|
D | Atomic.kt | 24 abstract fun perform(affected: Any?): Any? in perform() 86 abstract fun prepare(affected: T): Any? // `null` if Ok, or failure reason in prepare() 88 abstract fun complete(affected: T, failure: Any?) // failure != null if failed to prepare op in prepare() 92 final override fun perform(affected: Any?): Any? { in prepare() 96 decision = decide(prepare(affected as T)) in prepare() 99 complete(affected as T, decision) in prepare()
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/channels/ |
D | AbstractChannel.kt | 120 override fun failure(affected: LockFreeLinkedListNode): Any? = when (affected) { in <lambda>() 121 is Closed<*> -> affected in <lambda>() 354 override fun failure(affected: LockFreeLinkedListNode): Any? = when (affected) { in <lambda>() 355 is Closed<*> -> affected in <lambda>() 362 val affected = prepareOp.affected as ReceiveOrClosed<E> // see "failure" impl in <lambda>() constant 363 val token = affected.tryResumeReceive(element, prepareOp) ?: return REMOVE_PREPARED in <lambda>() 687 override fun failure(affected: LockFreeLinkedListNode): Any? = when (affected) { in iterator() 688 is Closed<*> -> affected in iterator() 695 val affected = prepareOp.affected as Send // see "failure" impl in iterator() constant 696 val token = affected.tryResumeSend(prepareOp) ?: return REMOVE_PREPARED in iterator() [all …]
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/jvm/test/internal/ |
D | LockFreeLinkedListAtomicLFStressTest.kt | 130 override fun prepare(affected: Any?): Any? = in <lambda>() 134 override fun complete(affected: Any?, failure: Any?) { in <lambda>() 157 override fun prepare(affected: Any?): Any? = in <lambda>() 161 override fun complete(affected: Any?, failure: Any?) { in <lambda>()
|
D | LockFreeLinkedListTest.kt | 69 override fun prepare(affected: Any?): Any? = part.prepare(this) in single() 70 override fun complete(affected: Any?, failure: Any?) = part.complete(this, failure) in single()
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/selects/ |
D | Select.kt | 545 override fun perform(affected: Any?): Any? { in next() 546 val impl = affected as SelectBuilderImpl<*> in next() 576 override fun prepare(affected: Any?): Any? { in next() 579 if (affected == null) { in next() 587 if (affected == null) undoPrepare() in next() 592 override fun complete(affected: Any?, failure: Any?) { in next()
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/sync/ |
D | Mutex.kt | 272 override fun perform(affected: Any?): Any? { in toString() 274 (affected as MutexImpl)._state.compareAndSet(this, update) in toString() 391 override fun prepare(affected: MutexImpl): Any? = in toString() 394 override fun complete(affected: MutexImpl, failure: Any?) { in toString() 396 affected._state.compareAndSet(this, update) in toString()
|
/external/arm-trusted-firmware/docs/security_advisories/ |
D | security-advisory-tfv-7.rst | 43 For each affected CPU type, TF-A implements one of the two following mitigation 54 For affected CPUs, this approach enables the mitigation during EL3 61 TF-A implements this approach for the following affected CPUs: 75 For affected CPUs, this approach also enables the mitigation during EL3 96 TF-A implements this approach for the following affected CPU:
|
/external/google-breakpad/src/client/mac/sender/English.lproj/ |
D | Localizable.strings | 3 "crashDialogMsg" = "The system and other applications have not been affected. A report has been cre… 6 "noCrashDialogMsg" = "The system and other applications have not been affected. A report has been c…
|
/external/icu/tools/srcgen/javadoc_patches/patches/src/main/java/android/icu/text/ |
D | CompactDecimalFormat.java.patch | 23 * Creates a CompactDecimalFormat appropriate for a locale. The result may be affected by the 33 * Creates a CompactDecimalFormat appropriate for a locale. The result may be affected by the
|
/external/webrtc/tools_webrtc/mb/docs/ |
D | design_spec.md | 20 and a list of targets to build and returns which targets are affected by 78 by only building and running the tests affected by the files in a patch, rather 84 everything that a patch affected on every patch. This does not 97 date due to a combination of files affected by a given patch, and files 98 affected for unrelated reasons. We want to rebuild and test only the 99 targets affected by the patch, so that we don't blame or punish the 105 we don't (the affected files of a patch). 120 3. We might also want to know when test targets are affected by data files 131 are affected by the patch. For example, if you have a meta target like 138 things are fast enough that we can afford to build everything affected by a [all …]
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_condattr_init/ |
D | coverage.txt | 6 variables are affected.
|
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_mutexattr_init/ |
D | coverage.txt | 6 are affected. The prioceiling or protocol attributes may
|
/external/llvm-project/clang/test/Driver/ |
D | verify_pch.m | 6 // Also ensure that the language setting is not affected by the .pch extension
|
/external/clang/test/Driver/ |
D | verify_pch.m | 6 // Also ensure that the language setting is not affected by the .pch extension
|
/external/deqp/doc/testspecs/GLES3/ |
D | functional.primitive_bounding_box.txt | 35 - Blit should not be affected by the bounding box 37 - Clears should not be affected by the bounding box 95 not affected by the bounding box, verification is done by simply comparing
|
/external/flatbuffers/.github/ |
D | ISSUE_TEMPLATE.md | 3 Please make sure you include the names of the affected language(s), compiler version(s), operating …
|
/external/deqp/android/cts/master/src/ |
D | vk-waivers.txt | 7 # The affected GPU's are unable to correctly filter CEM corners with F32 textures, this 56 # This occurs on some versions of Broadcom's Videocore GPUs. On affected devices depth clipping 65 # This occurs on NVIDIA Kepler GPUs. The affected GPUs are unable to reliably synchronize memory
|
/external/ltp/testcases/kernel/hotplug/cpu_hotplug/doc/ |
D | hotplug05.txt | 5 # "mm_struct slab leak (affected only some architectures)"
|
/external/llvm-project/llvm/test/Transforms/InstCombine/ |
D | 2007-02-07-PointerCast.ll | 4 ; uint cast which was causing a sign extend. This only affected code with
|
/external/llvm/test/Transforms/InstCombine/ |
D | 2007-02-07-PointerCast.ll | 4 ; uint cast which was causing a sign extend. This only affected code with
|