/external/skia/modules/skottie/src/ |
D | Skottie.cpp | 135 const auto dispatched = this->dispatchOpacityProperty(adapter->node()); in attachOpacity() local 139 if (!dispatched && adapter->node()->getOpacity() >= 1) { in attachOpacity() 237 bool dispatched = false; in dispatchColorProperty() local 242 dispatched = true; in dispatchColorProperty() 247 return dispatched; in dispatchColorProperty() 251 bool dispatched = false; in dispatchOpacityProperty() local 256 dispatched = true; in dispatchOpacityProperty() 261 return dispatched; in dispatchOpacityProperty() 265 bool dispatched = false; in dispatchTextProperty() local 270 dispatched = true; in dispatchTextProperty() [all …]
|
/external/skqp/modules/skottie/src/ |
D | Skottie.cpp | 105 const auto dispatched = this->dispatchTransformProperty(adapter); in attachMatrix2D() local 107 return (bound || dispatched) in attachMatrix2D() 179 const auto dispatched = this->dispatchOpacityProperty(opacityNode); in attachOpacity() local 182 return (bound || dispatched) ? std::move(opacityNode) : childNode; in attachOpacity() 283 bool dispatched = false; in dispatchColorProperty() local 288 dispatched = true; in dispatchColorProperty() 293 return dispatched; in dispatchColorProperty() 297 bool dispatched = false; in dispatchOpacityProperty() local 302 dispatched = true; in dispatchOpacityProperty() 307 return dispatched; in dispatchOpacityProperty() [all …]
|
/external/tensorflow/tensorflow/core/common_runtime/ |
D | ring_gatherer.cc | 177 bool dispatched = false; // true if async action was initiated in RunAsyncParts() local 196 dispatched = true; in RunAsyncParts() 225 dispatched = true; in RunAsyncParts() 244 } while (!dispatched); in RunAsyncParts()
|
D | ring_reducer.cc | 227 bool dispatched = false; // true if async action was initiated in RunAsyncParts() local 246 dispatched = true; in RunAsyncParts() 298 dispatched = true; in RunAsyncParts() 320 } while (!dispatched); in RunAsyncParts()
|
/external/llvm-project/llvm/test/tools/llvm-mca/X86/ |
D | option-all-stats-1.s | 38 # FULLREPORT: Dispatch Logic - number of cycles where we saw N micro opcodes dispatched: 39 # FULLREPORT-NEXT: [# dispatched], [# cycles]
|
D | option-all-stats-2.s | 39 # FULL: Dispatch Logic - number of cycles where we saw N micro opcodes dispatched: 40 # FULL-NEXT: [# dispatched], [# cycles]
|
D | option-all-views-1.s | 60 # FULLREPORT: Dispatch Logic - number of cycles where we saw N micro opcodes dispatched: 61 # FULLREPORT-NEXT: [# dispatched], [# cycles]
|
D | option-all-views-2.s | 59 # ALL: Dispatch Logic - number of cycles where we saw N micro opcodes dispatched: 60 # ALL-NEXT: [# dispatched], [# cycles]
|
/external/llvm-project/llvm/test/tools/llvm-mca/X86/BdVer2/ |
D | load-throughput.s | 87 # CHECK: Dispatch Logic - number of cycles where we saw N micro opcodes dispatched: 88 # CHECK-NEXT: [# dispatched], [# cycles] 315 # CHECK: Dispatch Logic - number of cycles where we saw N micro opcodes dispatched: 316 # CHECK-NEXT: [# dispatched], [# cycles] 543 # CHECK: Dispatch Logic - number of cycles where we saw N micro opcodes dispatched: 544 # CHECK-NEXT: [# dispatched], [# cycles] 773 # CHECK: Dispatch Logic - number of cycles where we saw N micro opcodes dispatched: 774 # CHECK-NEXT: [# dispatched], [# cycles]
|
D | store-throughput.s | 87 # CHECK: Dispatch Logic - number of cycles where we saw N micro opcodes dispatched: 88 # CHECK-NEXT: [# dispatched], [# cycles] 315 # CHECK: Dispatch Logic - number of cycles where we saw N micro opcodes dispatched: 316 # CHECK-NEXT: [# dispatched], [# cycles] 543 # CHECK: Dispatch Logic - number of cycles where we saw N micro opcodes dispatched: 544 # CHECK-NEXT: [# dispatched], [# cycles] 774 # CHECK: Dispatch Logic - number of cycles where we saw N micro opcodes dispatched: 775 # CHECK-NEXT: [# dispatched], [# cycles]
|
D | register-files-4.s | 35 # CHECK: Dispatch Logic - number of cycles where we saw N micro opcodes dispatched: 36 # CHECK-NEXT: [# dispatched], [# cycles]
|
D | load-store-throughput.s | 80 # CHECK: Dispatch Logic - number of cycles where we saw N micro opcodes dispatched: 81 # CHECK-NEXT: [# dispatched], [# cycles] 314 # CHECK: Dispatch Logic - number of cycles where we saw N micro opcodes dispatched: 315 # CHECK-NEXT: [# dispatched], [# cycles] 548 # CHECK: Dispatch Logic - number of cycles where we saw N micro opcodes dispatched: 549 # CHECK-NEXT: [# dispatched], [# cycles]
|
D | register-files-3.s | 35 # CHECK: Dispatch Logic - number of cycles where we saw N micro opcodes dispatched: 36 # CHECK-NEXT: [# dispatched], [# cycles]
|
/external/llvm-project/llvm/test/tools/llvm-mca/X86/Barcelona/ |
D | load-store-throughput.s | 80 # CHECK: Dispatch Logic - number of cycles where we saw N micro opcodes dispatched: 81 # CHECK-NEXT: [# dispatched], [# cycles] 272 # CHECK: Dispatch Logic - number of cycles where we saw N micro opcodes dispatched: 273 # CHECK-NEXT: [# dispatched], [# cycles] 464 # CHECK: Dispatch Logic - number of cycles where we saw N micro opcodes dispatched: 465 # CHECK-NEXT: [# dispatched], [# cycles]
|
D | load-throughput.s | 80 # CHECK: Dispatch Logic - number of cycles where we saw N micro opcodes dispatched: 81 # CHECK-NEXT: [# dispatched], [# cycles] 272 # CHECK: Dispatch Logic - number of cycles where we saw N micro opcodes dispatched: 273 # CHECK-NEXT: [# dispatched], [# cycles] 464 # CHECK: Dispatch Logic - number of cycles where we saw N micro opcodes dispatched: 465 # CHECK-NEXT: [# dispatched], [# cycles]
|
D | store-throughput.s | 80 # CHECK: Dispatch Logic - number of cycles where we saw N micro opcodes dispatched: 81 # CHECK-NEXT: [# dispatched], [# cycles] 274 # CHECK: Dispatch Logic - number of cycles where we saw N micro opcodes dispatched: 275 # CHECK-NEXT: [# dispatched], [# cycles] 468 # CHECK: Dispatch Logic - number of cycles where we saw N micro opcodes dispatched: 469 # CHECK-NEXT: [# dispatched], [# cycles]
|
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/ |
D | CancellableContinuationImpl.kt | 139 val dispatched = delegate as? DispatchedContinuation<*> ?: return completed in <lambda>() constant 140 val cause = dispatched.checkPostponedCancellation(this) ?: return completed in <lambda>() 184 val dispatched = (delegate as? DispatchedContinuation<*>) ?: return false in <lambda>() constant 185 return dispatched.postponeCancellation(cause) in <lambda>()
|
/external/llvm-project/llvm/test/tools/llvm-mca/X86/Haswell/ |
D | cmpxchg16b.s | 35 # CHECK: Dispatch Logic - number of cycles where we saw N micro opcodes dispatched: 36 # CHECK-NEXT: [# dispatched], [# cycles]
|
/external/llvm-project/llvm/test/tools/llvm-mca/X86/BtVer2/ |
D | register-files-4.s | 35 # CHECK: Dispatch Logic - number of cycles where we saw N micro opcodes dispatched: 36 # CHECK-NEXT: [# dispatched], [# cycles]
|
D | register-files-3.s | 35 # CHECK: Dispatch Logic - number of cycles where we saw N micro opcodes dispatched: 36 # CHECK-NEXT: [# dispatched], [# cycles]
|
D | register-files-2.s | 25 # CHECK: Dispatch Logic - number of cycles where we saw N micro opcodes dispatched: 26 # CHECK-NEXT: [# dispatched], [# cycles]
|
/external/llvm-project/openmp/libomptarget/deviceRTLs/amdgcn/src/ |
D | amdgcn_smid.hip | 16 // PIPE_ID 7:6 Pipeline from which the wave was dispatched. 22 // QUEUE_ID 26:24 Queue from which this wave was dispatched.
|
/external/llvm-project/llvm/test/Transforms/GlobalDCE/ |
D | virtual-functions-derived-pointer-call.ll | 29 ; pointer of type "int (B::*q)(int)", so the call could only be dispatched to 30 ; B::foo. It can't be dispatched to A::bar or B::bar as the function pointer 31 ; does not match, and it can't be dispatched to A::foo as the object type
|
/external/deqp/doc/testspecs/GLES31/ |
D | functional.synchronization.txt | 59 Multiple computes are dispatched without calling MemoryBarrier(). Result and 66 Multiple instances of programs are dispatched without calling MemoryBarrrier(). Buffer
|
/external/arm-trusted-firmware/docs/components/ |
D | sdei.rst | 45 events can be explicitly dispatched in response to other exceptions, for 78 To define an event that's meant to be explicitly dispatched (i.e., not as a 236 bound or dynamic events can't be explicitly dispatched (see the section below). 244 requested event is dispatched to the client (assuming all the conditions are 251 event to be dispatched: 256 - Event 0 can't be dispatched. 266 been dispatched and is yet to be completed.
|