Home
last modified time | relevance | path

Searched defs:update (Results 1 – 25 of 783) sorted by relevance

12345678910>>...32

/external/tensorflow/tensorflow/core/kernels/
Dscatter_nd_op_cpu_impl.h60 Update update, Output output) { in Execute()
69 Update update, Output output) { in Execute()
78 Update update, Output output) { in Execute()
87 Update update, Output output) { in Execute()
96 Update update, Output output) { in Execute()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/channels/
DConflatedBroadcastChannel.kt110 … val update = State(state.value, addSubscriber((state as State<E>).subscribers, subscriber)) in <lambda>() constant
125 … val update = State(state.value, removeSubscriber((state as State<E>).subscribers!!, subscriber)) in <lambda>() constant
145 val update = arrayOfNulls<Subscriber<E>>(n - 1) in <lambda>() constant
164 val update = if (cause == null) CLOSED else Closed(cause) in <lambda>() constant
249 val update = State(element, (state as State<E>).subscribers) in <lambda>() constant
/external/kotlinx.coroutines/kotlinx-coroutines-core/native/src/internal/
DCopyOnWriteList.kt22 val update = array.copyOf(n + 1) in add() constant
31 val update = arrayOfNulls<Any?>(n + 1) in add() constant
49 val update = arrayOfNulls<Any>(n - 1) in removeAt() constant
/external/guava/android/guava/src/com/google/common/hash/
DAbstractByteHasher.java40 protected abstract void update(byte b); in update() method in AbstractByteHasher
43 protected void update(byte[] b) { in update() method in AbstractByteHasher
48 protected void update(byte[] b, int off, int len) { in update() method in AbstractByteHasher
55 protected void update(ByteBuffer b) { in update() method in AbstractByteHasher
67 private Hasher update(int bytes) { in update() method in AbstractByteHasher
DMacHashFunction.java107 protected void update(byte b) { in update() method in MacHashFunction.MacHasher
113 protected void update(byte[] b) { in update() method in MacHashFunction.MacHasher
119 protected void update(byte[] b, int off, int len) { in update() method in MacHashFunction.MacHasher
125 protected void update(ByteBuffer bytes) { in update() method in MacHashFunction.MacHasher
/external/guava/guava/src/com/google/common/hash/
DAbstractByteHasher.java40 protected abstract void update(byte b); in update() method in AbstractByteHasher
43 protected void update(byte[] b) { in update() method in AbstractByteHasher
48 protected void update(byte[] b, int off, int len) { in update() method in AbstractByteHasher
55 protected void update(ByteBuffer b) { in update() method in AbstractByteHasher
67 private Hasher update(int bytes) { in update() method in AbstractByteHasher
DMacHashFunction.java107 protected void update(byte b) { in update() method in MacHashFunction.MacHasher
113 protected void update(byte[] b) { in update() method in MacHashFunction.MacHasher
119 protected void update(byte[] b, int off, int len) { in update() method in MacHashFunction.MacHasher
125 protected void update(ByteBuffer bytes) { in update() method in MacHashFunction.MacHasher
/external/webrtc/modules/congestion_controller/goog_cc/
Dgoog_cc_network_control.cc135 NetworkControlUpdate update; in OnNetworkAvailability() local
170 NetworkControlUpdate update; in OnNetworkRouteChange() local
178 NetworkControlUpdate update; in OnProcessInterval() local
270 NetworkControlUpdate update; in OnSentPacket() local
286 NetworkControlUpdate update; in OnStreamsConfig() local
329 NetworkControlUpdate update; in OnTargetRateConstraints() local
535 NetworkControlUpdate update; in OnTransportPacketsFeedback() local
595 NetworkControlUpdate update; in GetNetworkState() local
615 NetworkControlUpdate* update, in MaybeTriggerOnNetworkChanged()
/external/tensorflow/tensorflow/core/data/service/
Djournal_test.cc44 Update update; in MakeCreateJobUpdate() local
54 Update update; in MakeFinishTaskUpdate() local
61 Update update; in MakeRegisterDatasetUpdate() local
71 for (const auto& update : expected) { in CheckJournalContent() local
95 for (const auto& update : updates) { in TEST() local
108 for (const auto& update : updates) { in TEST() local
Ddispatcher_impl.cc176 Update update; in Start() local
289 Update update; in WorkerHeartbeat() local
314 for (auto& update : request->updates()) { in WorkerUpdate() local
324 Update update; in WorkerUpdate() local
457 Update update; in RegisterDataset() local
469 Update update; in SetElementSpec() local
570 Update update; in MaybeRemoveTask() local
587 Update update; in ReleaseJobClient() local
635 Update update; in CreateJob() local
677 Update update; in AcquireJobClientId() local
[all …]
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/
DCancellableContinuationImpl.kt147 val update = state.copy(cancelCause = cause) in <lambda>() constant
177 val update = CancelledContinuation(this, cause, handled = state is CancelHandler) in <lambda>() constant
370 val update = state.copy(cancelHandler = cancelHandler) in <lambda>() constant
380 val update = CompletedContinuation(state, cancelHandler = cancelHandler) in <lambda>() constant
428 … val update = resumedState(state, proposedUpdate, resumeMode, onCancellation, idempotent = null) in <lambda>() constant
463 … val update = resumedState(state, proposedUpdate, resumeMode, onCancellation, idempotent) in <lambda>() constant
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/stmt/
DForStmt.java43 private List<Expression> update; field in ForStmt
51 final List<Expression> update, final Statement body) { in ForStmt()
60 final List<Expression> update, final Statement body) { in ForStmt()
116 public ForStmt setUpdate(final List<Expression> update) { in setUpdate()
/external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/stmt/
DForStmt.java39 private List<Expression> update; field in ForStmt
47 final List<Expression> update, final Statement body) { in ForStmt()
57 final List<Expression> update, final Statement body) { in ForStmt()
106 public void setUpdate(final List<Expression> update) { in setUpdate()
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/sync/
DMutex.kt167 val update = if (owner == null) EMPTY_LOCKED else Empty( in toString() constant
198 val update = if (owner == null) EMPTY_LOCKED else Empty(owner) in toString() constant
292 …val update: Any = if (atomicOp.isDecided) EMPTY_UNLOCKED else atomicOp // restore if was already d… in toString() constant
305 val update = if (failure != null) EMPTY_UNLOCKED else { in toString() constant
419 val update: Any = if (failure == null) EMPTY_UNLOCKED else queue in toString() constant
/external/javaparser/javaparser-core/src/main/java/com/github/javaparser/ast/stmt/
DForStmt.java76 private NodeList<Expression> update; field in ForStmt
85 …eList<Expression> initialization, final Expression compare, final NodeList<Expression> update, fin… in ForStmt()
93 …ange, NodeList<Expression> initialization, Expression compare, NodeList<Expression> update, Statem… in ForStmt()
182 public ForStmt setUpdate(final NodeList<Expression> update) { in setUpdate()
/external/okio/okio/src/hashFunctions/kotlin/okio/internal/
DHashFunction.kt20 fun update( method
/external/kotlinx.atomicfu/atomicfu/src/commonTest/kotlin/bytecode_test/
DPublicTopLevelReflectionTest.kt11 fun update() { in update() method
DPrivateTopLevelReflectionTest.kt11 fun update() { in update() method in bytecode_test.PrivateTopLevelReflectionTest
/external/python/cryptography/src/cryptography/hazmat/primitives/
Dpadding.py19 def update(self, data): member in PaddingContext
120 def update(self, data): member in _PKCS7PaddingContext
144 def update(self, data): member in _PKCS7UnpaddingContext
177 def update(self, data): member in _ANSIX923PaddingContext
201 def update(self, data): member in _ANSIX923UnpaddingContext
/external/tensorflow/tensorflow/python/kernel_tests/
Dscatter_ops_test.py42 def _NumpyAddScalar(ref, indices, update): argument
52 def _NumpySubScalar(ref, indices, update): argument
62 def _NumpyMulScalar(ref, indices, update): argument
72 def _NumpyDivScalar(ref, indices, update): argument
82 def _NumpyMinScalar(ref, indices, update): argument
92 def _NumpyMaxScalar(ref, indices, update): argument
102 def _NumpyUpdateScalar(ref, indices, update): argument
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/
DJavaVersion.java22 private final int update; field in JavaVersion
52 int update() { in update() method in JavaVersion
/external/python/cryptography/src/cryptography/hazmat/primitives/asymmetric/
D__init__.py15 def update(self, data): member in AsymmetricSignatureContext
30 def update(self, data): member in AsymmetricVerificationContext
/external/rust/crates/grpcio-sys/grpc/src/core/ext/xds/
Dxds_client.h275 absl::optional<XdsApi::LdsUpdate> update; member
284 absl::optional<XdsApi::RdsUpdate> update; member
292 absl::optional<XdsApi::CdsUpdate> update; member
301 absl::optional<XdsApi::EdsUpdate> update; member
/external/bouncycastle/repackaged/bcprov/src/main/java/com/android/org/bouncycastle/crypto/
DDigest.java29 public void update(byte in); in update() method
38 public void update(byte[] in, int inOff, int len); in update() method
/external/bouncycastle/repackaged_platform/bcprov/src/main/java/com/android/internal/org/bouncycastle/crypto/
DDigest.java29 public void update(byte in); in update() method
38 public void update(byte[] in, int inOff, int len); in update() method

12345678910>>...32