HomeSort by relevance Sort by last modified time
    Searched refs:update (Results 26 - 50 of 5504) sorted by null

12 3 4 5 6 7 8 91011>>

  /external/tensorflow/tensorflow/core/kernels/
dense_update_functor.cc 35 typename TTypes<string>::ConstFlat update) {
37 params.data()->resize(update.data()->size());
38 auto work = [&params, &update](int64 start, int64 end) {
40 update.data()->data() + start, end - start);
42 d.parallelFor(update.data()->size(),
47 auto work = [&params, &update](int64 start, int64 end) {
49 params.data()[i].resize(update.data()[i].size());
51 update.data()[i].data(), update.data()[i].size());
55 if (update.size() > 0)
    [all...]
dense_update_functor.h 38 typename TTypes<T>::ConstFlat update);
44 typename TTypes<T>::ConstFlat update) {
45 params.device(d) += update;
52 typename TTypes<T>::ConstFlat update) {
53 params.device(d) -= update;
60 typename TTypes<T>::ConstFlat update) {
61 params.device(d) = update;
69 typename TTypes<T>::ConstFlat update) {
70 params.device(d) += update;
77 typename TTypes<T>::ConstFlat update) {
    [all...]
  /external/guava/guava/src/com/google/common/hash/
AbstractByteHasher.java 43 protected abstract void update(byte b); method in class:AbstractByteHasher
48 protected void update(byte[] b) { method in class:AbstractByteHasher
49 update(b, 0, b.length); method
55 protected void update(byte[] b, int off, int len) { method in class:AbstractByteHasher
57 update(b[i]);
63 update(b);
70 update(bytes);
77 update(bytes, off, len); method
84 private Hasher update(int bytes) { method in class:AbstractByteHasher
86 update(scratch.array(), 0, bytes)
    [all...]
  /tools/loganalysis/tests/src/com/android/loganalysis/util/config/
OptionUpdateRuleTest.java 27 private static final Object UPDATE = "5 update value";
28 private static final Object SMALL_UPDATE = "0 update value";
29 private static final Object BIG_UPDATE = "9 update value";
32 assertEquals(UPDATE, OptionUpdateRule.FIRST.update(OPTION_NAME, null, UPDATE));
33 assertEquals(CURRENT, OptionUpdateRule.FIRST.update(OPTION_NAME, CURRENT, UPDATE));
37 assertEquals(UPDATE, OptionUpdateRule.LAST.update(OPTION_NAME, null, UPDATE))
    [all...]
  /tools/tradefederation/core/src/com/android/tradefed/config/
OptionUpdateRule.java 28 /** once an option is set, subsequent attempts to update it should be ignored. */
31 boolean shouldUpdate(String optionName, Object current, Object update)
40 boolean shouldUpdate(String optionName, Object current, Object update)
49 boolean shouldUpdate(String optionName, Object current, Object update)
51 return current == null || compare(optionName, current, update) < 0;
58 boolean shouldUpdate(String optionName, Object current, Object update)
60 return current == null || compare(optionName, current, update) > 0;
67 boolean shouldUpdate(String optionName, Object current, Object update)
72 "Attempted to update immutable value (%s) for option \"%s\"", optionName,
79 abstract boolean shouldUpdate(String optionName, Object current, Object update)
    [all...]
  /external/scapy/scapy/layers/tls/crypto/
ciphers.py 25 _tls_cipher_algs.update(_tls_block_cipher_algs)
26 _tls_cipher_algs.update(_tls_stream_cipher_algs)
27 _tls_cipher_algs.update(_tls_aead_cipher_algs)
  /art/test/438-volatile/src/
Main.java 31 public static long $opt$update(long a) {
36 public static double $opt$update(double a) {
42 if (value != $opt$update(value)) {
43 throw new RuntimeException("Volatile update failed for long:" + value);
48 if (value != $opt$update(value)) {
49 throw new RuntimeException("Volatile update failed for double:" + value);
  /cts/tools/dasm/src/java_cup/
version.java 10 * update, and are written as v<major>.<minor><update> (e.g. v0.9a).
13 * change big enough to cause incompatibilities. Finally update
37 /** The update letter. */
38 public static final char update = 'd'; field in class:version
  /external/replicaisland/src/com/replica/replicaisland/
BaseObject.java 22 * an ObjectManager, and anything that requires an update per frame should be derived from
33 * Update this object.
34 * @param timeDelta The duration since the last update (in seconds).
37 public void update(float timeDelta, BaseObject parent) { method in class:BaseObject
  /frameworks/base/media/java/android/media/update/
ProviderCreator.java 17 package android.media.update;
  /frameworks/base/libs/input/
SpriteController.cpp 114 // Each sprite update record includes a reference to its associated sprite so we can
136 SpriteUpdate& update = updates.editItemAt(i); local
138 if (update.state.surfaceControl == NULL && update.state.wantSurfaceVisible()) {
139 update.state.surfaceWidth = update.state.icon.bitmap.width();
140 update.state.surfaceHeight = update.state.icon.bitmap.height();
141 update.state.surfaceDrawn = false;
142 update.state.surfaceVisible = false
155 SpriteUpdate& update = updates.editItemAt(i); local
184 SpriteUpdate& update = updates.editItemAt(i); local
234 SpriteUpdate& update = updates.editItemAt(i); local
304 const SpriteUpdate& update = updates.itemAt(i); local
    [all...]
  /external/antlr/antlr-3.4/runtime/Ruby/
rakefile 13 spec_extras.update(
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
Mac.java 39 public void update(byte in) method in interface:Mac
49 public void update(byte[] in, int inOff, int len) method in interface:Mac
  /external/clang/test/OpenMP/
target_update_codegen.cpp 52 #pragma omp target update if(1+3-5) device(arg) from(gc)
57 #pragma omp target update to(la) if(1+3-4)
79 #pragma omp target update to(arg) if(arg) device(4)
102 #pragma omp target update from(lb)
129 #pragma omp target update to(gb.b[:3])
150 #pragma omp target update from(b[1:3]) if(a>123) device(arg)
213 #pragma omp target update to(arg) if(arg) device(4)
241 #pragma omp target update from(arg) if(arg) device(4)
target_update_ast_print.cpp 16 #pragma omp target update to(a) if(l>5) device(l) nowait depend(inout:l)
18 #pragma omp target update from(b) if(l<5) device(l-1) nowait depend(inout:l)
24 // CHECK-NEXT: #pragma omp target update to(a) if(l > 5) device(l) nowait depend(inout : l)
25 // CHECK-NEXT: #pragma omp target update from(b) if(l < 5) device(l - 1) nowait depend(inout : l)
29 // CHECK-NEXT: #pragma omp target update to(a) if(l > 5) device(l) nowait depend(inout : l)
30 // CHECK-NEXT: #pragma omp target update from(b) if(l < 5) device(l - 1) nowait depend(inout : l)
34 // CHECK-NEXT: #pragma omp target update to(a) if(l > 5) device(l) nowait depend(inout : l)
35 // CHECK-NEXT: #pragma omp target update from(b) if(l < 5) device(l - 1) nowait depend(inout : l)
45 #pragma omp target update to(a) if(f>0.0) device(n) nowait depend(in:n)
46 // CHECK-NEXT: #pragma omp target update to(a) if(f > 0.) device(n) nowait depend(in : n
    [all...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/zip/
CRC32Test.java 43 crc.update(Integer.MAX_VALUE);
47 assertEquals("update(max) failed to update the checksum to the correct value ",
52 crc.update(byteEmpty);
56 assertEquals("update(byte[]) failed to update the checksum to the correct value ",
60 crc.update(1);
64 // assertEquals("update(int) failed to update the checksum to the correct
77 crc.update(1)
    [all...]
Adler32Test.java 43 adl.update(1);
46 assertEquals("update(int) failed to update the checksum to the correct value ",
53 adl.update(Integer.MIN_VALUE);
56 assertEquals("update(min) failed to update the checksum to the correct value ",
66 adl.update(1);
69 assertEquals("update(int) failed to update the checksum to the correct value ",
77 * java.util.zip.Adler32#update(int
    [all...]
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_src/proper_source/com/github/javaparser/ast/stmt/
ForStmt.java 39 private List<Expression> update; field in class:ForStmt
47 final List<Expression> update, final Statement body) {
50 setUpdate(update);
57 final List<Expression> update, final Statement body) {
61 setUpdate(update);
88 return update;
106 public void setUpdate(final List<Expression> update) {
107 this.update = update;
108 setAsParentNodeOf(this.update);
    [all...]
  /external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/data/
CRC64.java 52 * byte to update the checksum with
55 private static long update(final long sum, final byte b) { method in class:CRC64
66 * byte array to update the checksum with
73 private static long update(long sum, final byte[] bytes, method in class:CRC64
76 sum = update(sum, bytes[i]);
93 long sum = update(0, bytes, 0, 7);
94 sum = update(sum, (byte) Opcodes.V1_8);
95 return update(sum, bytes, 8, bytes.length);
97 return update(0, bytes, 0, bytes.length);
  /frameworks/base/core/java/android/appwidget/
PendingHostUpdate.java 39 PendingHostUpdate update = new PendingHostUpdate(appWidgetId, TYPE_VIEWS_UPDATE); local
40 update.views = views;
41 return update;
45 PendingHostUpdate update = new PendingHostUpdate(appWidgetId, TYPE_PROVIDER_CHANGED); local
46 update.widgetInfo = info;
47 return update;
51 PendingHostUpdate update = new PendingHostUpdate(appWidgetId, TYPE_VIEW_DATA_CHANGED); local
52 update.viewId = viewId;
53 return update;
  /cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/sixdof/Renderer/RenderUtils/
DrawParameters.java 28 public void update(float[] viewMatrix, float[] projectionMatrix) { method in class:DrawParameters
33 public void update(float[] viewMatrix, float[] projectionMatrix, Light light) { method in class:DrawParameters
34 update(viewMatrix, projectionMatrix); method
  /external/javaparser/javaparser-symbol-solver-testing/src/test/test_sourcecode/javaparser_new_src/javaparser-core/com/github/javaparser/ast/stmt/
ForStmt.java 43 private List<Expression> update; field in class:ForStmt
51 final List<Expression> update, final Statement body) {
54 setUpdate(update);
60 final List<Expression> update, final Statement body) {
64 setUpdate(update);
93 update = ensureNotNull(update);
94 return update;
116 public ForStmt setUpdate(final List<Expression> update) {
117 this.update = update
    [all...]
  /external/llvm/include/llvm/Support/
SHA1.h 36 void update(ArrayRef<uint8_t> Data);
39 void update(StringRef Str) { function in class:llvm::SHA1
40 update(ArrayRef<uint8_t>((uint8_t *)const_cast<char *>(Str.data()),
53 /// made into update.
  /external/lzma/Java/Tukaani/src/org/tukaani/xz/check/
Check.java 19 public abstract void update(byte[] buf, int off, int len); method in class:Check
22 public void update(byte[] buf) { method in class:Check
23 update(buf, 0, buf.length); method
  /packages/experimental/KBars/app/src/main/java/js/kbars/
LightsOutModeToggleButton.java 16 LightsOutModeToggleButton.this.update();
19 update(); method
22 private void update() { method in class:LightsOutModeToggleButton

Completed in 418 milliseconds

12 3 4 5 6 7 8 91011>>