Searched defs:update (Results 1 - 25 of 413) sorted by relevance

1234567891011>>

/external/llvm/lib/Support/
H A DJamCRC.cpp92 void JamCRC::update(ArrayRef<char> Data) { function in class:JamCRC
/external/eigen/scripts/
H A Drelicense.py46 def update(text): function
62 text, updated = update(text)
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_state.h39 void (*update)(struct i915_context *); member in struct:i915_tracked_state
/external/autotest/tko/
H A Dreason_qualifier.py9 def update(self, new_wording): member in class:reason_counter
55 reason_htable[reason_reduced].update(reason_reduced)
/external/llvm/utils/
H A DlldbDataFormatters.py26 self.update() # initialize this provider
50 def update(self): member in class:SmallVectorSynthProvider
67 self.update() # initialize this provider
85 def update(self): member in class:ArrayRefSynthProvider
/external/lzma/Java/Tukaani/src/org/tukaani/xz/check/
H A DNone.java18 public void update(byte[] buf, int off, int len) {} method in class:None
/external/mesa3d/src/gallium/drivers/svga/
H A Dsvga_state.h43 enum pipe_error (*update)( struct svga_context *svga, unsigned dirty ); member in struct:svga_tracked_state
/external/replicaisland/src/com/replica/replicaisland/
H A DBaseObject.java22 * an ObjectManager, and anything that requires an update per frame should be derived from
34 * @param timeDelta The duration since the last update (in seconds).
37 public void update(float timeDelta, BaseObject parent) { method in class:BaseObject
H A DCameraBiasComponent.java30 public void update(float timeDelta, BaseObject parent) { method in class:CameraBiasComponent
H A DMainLoop.java34 public void update(float timeDelta, BaseObject parent) { method in class:MainLoop
35 mTimeSystem.update(timeDelta, parent);
37 super.update(newTimeDelta, parent);
H A DMovementComponent.java39 public void update(float timeDelta, BaseObject parent) { method in class:MovementComponent
/external/tensorflow/tensorflow/core/kernels/
H A Ddense_update_functor_gpu.cu.cc33 typename TTypes<T>::ConstFlat update) {
34 params.device(d) = update;
41 typename TTypes<T>::ConstFlat update) {
42 params.device(d) += update;
49 typename TTypes<T>::ConstFlat update) {
50 params.device(d) -= update;
32 operator ()(const GPUDevice& d, typename TTypes<T>::Flat params, typename TTypes<T>::ConstFlat update) argument
40 operator ()(const GPUDevice& d, typename TTypes<T>::Flat params, typename TTypes<T>::ConstFlat update) argument
48 operator ()(const GPUDevice& d, typename TTypes<T>::Flat params, typename TTypes<T>::ConstFlat update) argument
/external/apache-http/src/org/apache/http/conn/
H A DOperatedClientConnection.java73 * because of an {@link #update update}.
84 * because of an {@link #update update}.
96 * because of an {@link #update update}.
173 void update(Socket sock, HttpHost target, method in interface:OperatedClientConnection
/external/autotest/client/cros/tendo/n_faced_peerd/
H A Dservice.py94 def update(self, service_info, ip_info): member in class:Service
/external/autotest/client/deps/webgl_mpd/src/
H A Dcros_fps.js16 crosFpsCounter.prototype.update = function(
/external/boringssl/src/crypto/fipsmodule/digest/
H A Dinternal.h81 // update hashes |len| bytes of |data| into the state in |ctx->md_data|.
82 void (*update)(EVP_MD_CTX *ctx, const void *data, size_t count); member in struct:env_md_st
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/
H A DDigest.java23 * update the message digest with a single byte.
27 public void update(byte in); method in interface:Digest
30 * update the message digest with a block of bytes.
36 public void update(byte[] in, int inOff, int len); method in interface:Digest
H A DMac.java39 public void update(byte in) method in interface:Mac
49 public void update(byte[] in, int inOff, int len) method in interface:Mac
H A DSigner.java17 * update the internal digest with the byte b
19 public void update(byte b); method in interface:Signer
22 * update the internal digest with the byte array in
24 public void update(byte[] in, int off, int len); method in interface:Signer
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
H A DNullDigest.java23 public void update(byte in) method in class:NullDigest
28 public void update(byte[] in, int inOff, int len) method in class:NullDigest
/external/clang/test/OpenMP/
H A Datomic_messages.cpp156 T update() { function
158 // Test for atomic update
159 #pragma omp atomic update
160 // expected-error@+2 {{the statement for 'atomic update' must be an expression statement of form '++x;', '--x;', 'x++;', 'x--;', 'x binop= expr;', 'x = x binop expr' or 'x = expr binop x', where x is an l-value expression with scalar type}}
163 // expected-error@+1 {{directive '#pragma omp atomic' cannot contain more than one 'update' clause}}
164 #pragma omp atomic update update
170 #pragma omp atomic update
171 // expected-error@+2 {{the statement for 'atomic update' must be an expression statement of form '++x;', '--x;', 'x++;', 'x--;', 'x binop= expr;', 'x = x binop expr' or 'x = expr binop x', where x is an l-value expression with scalar type}}
174 #pragma omp atomic update
247 int update() { function
[all...]
/external/deqp/external/openglcts/scripts/
H A Dverify_kc_cts_rev.py57 def update (self): member in class:GitRepo
88 pkg.update()
/external/guava/guava/src/com/google/common/hash/
H A DCrc32cHashFunction.java113 public void update(byte b) { method in class:Crc32cHashFunction.Crc32cHasher
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/data/
H A DCRC64.java52 * 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);
/external/javassist/sample/evolve/
H A DVersionManager.java17 * VersionManager.update("my.X");
19 public static void update(String qualifiedClassname) method in class:VersionManager
27 throw new CannotUpdateException("cannot update class: "

Completed in 1318 milliseconds

1234567891011>>