Home
last modified time | relevance | path

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

12345678910>>...22

/external/kotlinx.coroutines/kotlinx-coroutines-core/native/src/internal/
DCopyOnWriteList.kt15 val update = array.copyOf(newSize) in add() constant
23 val update = arrayOfNulls<Any?>(if (array.size == _size) array.size * 2 else array.size) in add() constant
54 val update = arrayOfNulls<Any>(n) in removeAt() constant
/external/guava/guava/src/com/google/common/hash/
DAbstractByteHasher.java39 protected abstract void update(byte b); in update() method in AbstractByteHasher
42 protected void update(byte[] b) { in update() method in AbstractByteHasher
47 protected void update(byte[] b, int off, int len) { in update() method in AbstractByteHasher
54 protected void update(ByteBuffer b) { in update() method in AbstractByteHasher
66 private Hasher update(int bytes) { in update() method in AbstractByteHasher
DMacHashFunction.java106 protected void update(byte b) { in update() method in MacHashFunction.MacHasher
112 protected void update(byte[] b) { in update() method in MacHashFunction.MacHasher
118 protected void update(byte[] b, int off, int len) { in update() method in MacHashFunction.MacHasher
124 protected void update(ByteBuffer bytes) { in update() method in MacHashFunction.MacHasher
/external/guava/android/guava/src/com/google/common/hash/
DAbstractByteHasher.java39 protected abstract void update(byte b); in update() method in AbstractByteHasher
42 protected void update(byte[] b) { in update() method in AbstractByteHasher
47 protected void update(byte[] b, int off, int len) { in update() method in AbstractByteHasher
54 protected void update(ByteBuffer b) { in update() method in AbstractByteHasher
66 private Hasher update(int bytes) { in update() method in AbstractByteHasher
DMacHashFunction.java106 protected void update(byte b) { in update() method in MacHashFunction.MacHasher
112 protected void update(byte[] b) { in update() method in MacHashFunction.MacHasher
118 protected void update(byte[] b, int off, int len) { in update() method in MacHashFunction.MacHasher
124 protected void update(ByteBuffer bytes) { in update() method in MacHashFunction.MacHasher
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/channels/
DConflatedBroadcastChannel.kt112 … val update = State(state.value, addSubscriber((state as State<E>).subscribers, subscriber)) in <lambda>() constant
127 … val update = State(state.value, removeSubscriber((state as State<E>).subscribers!!, subscriber)) in <lambda>() constant
147 val update = arrayOfNulls<Subscriber<E>>(n - 1) in <lambda>() constant
166 val update = if (cause == null) CLOSED else Closed(cause) in <lambda>() constant
251 val update = State(element, (state as State<E>).subscribers) in <lambda>() constant
/external/tensorflow/tensorflow/core/kernels/
Dscatter_nd_op_cpu_impl.h61 EIGEN_STRONG_INLINE static void Execute(Input /* input */, Update update, in Execute()
70 EIGEN_STRONG_INLINE static void Execute(Input /* input */, Update update, in Execute()
79 EIGEN_STRONG_INLINE static void Execute(Input /* input */, Update update, in Execute()
/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/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/
DJavaVersion.java21 private final int update; field in JavaVersion
51 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/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/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
DSigner.java21 public void update(byte b); in update() method
26 public void update(byte[] in, int off, int len); in update() method
DMac.java41 public void update(byte in) in update() method
51 public void update(byte[] in, int inOff, int len) in update() method
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
DDigest.java27 public void update(byte in); in update() method
36 public void update(byte[] in, int inOff, int len); in update() method
DSigner.java19 public void update(byte b); in update() method
24 public void update(byte[] in, int off, int len); in update() method
DMac.java39 public void update(byte in) in update() method
49 public void update(byte[] in, int inOff, int len) in update() method
/external/xz-java/src/org/tukaani/xz/check/
DCheck.java19 public abstract void update(byte[] buf, int off, int len); in update() method in Check
22 public void update(byte[] buf) { in update() method in Check
/external/kotlinx.coroutines/kotlinx-coroutines-core/common/src/sync/
DMutex.kt168 val update = if (owner == null) EMPTY_LOCKED else Empty( in toString() constant
199 val update = if (owner == null) EMPTY_LOCKED else Empty(owner) in toString() constant
269 … val update: Any = if (op.isDecided) EMPTY_UNLOCKED else op // restore if was already decided in toString() constant
282 val update = if (failure != null) EMPTY_UNLOCKED else { in toString() constant
390 val update: Any = if (success) EMPTY_UNLOCKED else queue in toString() constant
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/data/
DCRC64.java55 private static long update(final long sum, final byte b) { in update() method in CRC64
73 private static long update(long sum, final byte[] bytes, in update() method in CRC64
/external/python/cryptography/src/cryptography/hazmat/primitives/
Dpadding.py19 def update(self, data): member in PaddingContext
114 def update(self, data): member in _PKCS7PaddingContext
136 def update(self, data): member in _PKCS7UnpaddingContext
168 def update(self, data): member in _ANSIX923PaddingContext
190 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/guava/guava/src/com/google/common/util/concurrent/
DAggregateFutureState.java128 AggregateFutureState state, Set<Throwable> expect, Set<Throwable> update); in compareAndSetSeenExceptions()
148 AggregateFutureState state, Set<Throwable> expect, Set<Throwable> update) { in compareAndSetSeenExceptions()
161 AggregateFutureState state, Set<Throwable> expect, Set<Throwable> update) { in compareAndSetSeenExceptions()
/external/guava/android/guava/src/com/google/common/util/concurrent/
DAggregateFutureState.java128 AggregateFutureState state, Set<Throwable> expect, Set<Throwable> update); in compareAndSetSeenExceptions()
148 AggregateFutureState state, Set<Throwable> expect, Set<Throwable> update) { in compareAndSetSeenExceptions()
161 AggregateFutureState state, Set<Throwable> expect, Set<Throwable> update) { in compareAndSetSeenExceptions()

12345678910>>...22