Searched refs:update (Results 51 - 75 of 742) sorted by relevance

1234567891011>>

/external/jmonkeyengine/engine/src/core/com/jme3/scene/control/
H A DControl.java43 * <code>Control</code>s are used to specify certain update and render logic
65 * @param enabled Enable or disable the control. If disabled, update()
80 public void update(float tpf); method in interface:Control
/external/replicaisland/src/com/replica/replicaisland/
H A DFixedAnimationComponent.java34 public void update(float timeDelta, BaseObject parent) { method in class:FixedAnimationComponent
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/bc/
H A DBcDigestCalculatorProvider.java58 dig.update(bytes, off, len);
64 dig.update(bytes, 0, bytes.length);
70 dig.update((byte)b);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/generators/
H A DOpenSSLPBEParametersGenerator.java58 digest.update(password, 0, password.length);
59 digest.update(salt, 0, salt.length);
76 digest.update(buf, 0, buf.length);
H A DPKCS5S1ParametersGenerator.java41 digest.update(password, 0, password.length);
42 digest.update(salt, 0, salt.length);
47 digest.update(digestBytes, 0, digestBytes.length);
/external/jmonkeyengine/engine/src/test/jme3test/app/state/
H A DTestAppStates.java81 public void update(){ method in class:TestAppStates
82 super.update();
87 stateManager.update(tpf);
/external/libdrm/
H A Dxf86drmSL.c169 static SLEntryPtr SLLocate(void *l, unsigned long key, SLEntryPtr *update) argument
180 update[i] = entry;
190 SLEntryPtr update[SL_MAX_LEVEL + 1]; local
196 entry = SLLocate(list, key, update);
204 update[level] = list->head;
211 entry->forward[i] = update[i]->forward[i];
212 update[i]->forward[i] = entry;
222 SLEntryPtr update[SL_MAX_LEVEL + 1]; local
228 entry = SLLocate(list, key, update);
234 if (update[
249 SLEntryPtr update[SL_MAX_LEVEL + 1]; local
267 SLEntryPtr update[SL_MAX_LEVEL + 1]; local
[all...]
/external/clang/test/OpenMP/
H A Datomic_messages.cpp154 T update() { function
156 // Test for atomic update
157 #pragma omp atomic update
158 // 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}}
161 // expected-error@+1 {{directive '#pragma omp atomic' cannot contain more than one 'update' clause}}
162 #pragma omp atomic update update
168 #pragma omp atomic update
169 // 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}}
172 #pragma omp atomic update
245 int update() { function
[all...]
H A Datomic_messages.c108 // Test for atomic update
109 #pragma omp atomic update
110 // 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}}
121 #pragma omp atomic update
122 // 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}}
125 #pragma omp atomic update
126 // 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}}
129 #pragma omp atomic update
130 // 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}}
141 #pragma omp atomic update
[all...]
H A Datomic_codegen.cpp70 #pragma omp atomic update
/external/lldb/examples/summaries/cocoa/
H A DCFArray.py33 self.update()
35 def update(self): member in class:NSArrayKVC_SynthProvider
62 self.update()
64 def update(self): member in class:NSArrayCF_SynthProvider
85 self.update()
87 def update(self): member in class:NSArrayI_SynthProvider
109 self.update()
111 def update(self): member in class:NSArrayM_SynthProvider
144 def update(self): member in class:NSArray_SynthProvider
148 self.wrapper.update()
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/
H A DCCMBlockCipher.java379 cMac.update(b0, 0, b0.length);
391 cMac.update((byte)(textLength >> 8));
392 cMac.update((byte)textLength);
398 cMac.update((byte)0xff);
399 cMac.update((byte)0xfe);
400 cMac.update((byte)(textLength >> 24));
401 cMac.update((byte)(textLength >> 16));
402 cMac.update((byte)(textLength >> 8));
403 cMac.update((byte)textLength);
410 cMac.update(initialAssociatedTex
[all...]
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
H A DSignature2Test.java173 sig.update(MESSAGE.getBytes());
186 * @tests java.security.Signature#update(byte[])
193 sig.update(bytes);
197 * @tests java.security.Signature#update(byte[], int, int)
204 sig.update(bytes, 0, bytes.length);
208 * @tests java.security.Signature#update(byte)
214 sig.update(MESSAGE.getBytes()[0]);
223 sig.update(MESSAGE.getBytes());
228 sig.update(MESSAGE.getBytes());
/external/guava/guava/src/com/google/common/hash/
H A DMessageDigestHashFunction.java129 protected void update(byte b) { method in class:MessageDigestHashFunction.MessageDigestHasher
131 digest.update(b);
135 protected void update(byte[] b) { method in class:MessageDigestHashFunction.MessageDigestHasher
137 digest.update(b);
141 protected void update(byte[] b, int off, int len) { method in class:MessageDigestHashFunction.MessageDigestHasher
143 digest.update(b, off, len);
/external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/
H A DDigitalSignatureTest.java62 ds_sign.update(pivateKeyEncoding);
68 sha.update(pivateKeyEncoding);
69 md5.update(pivateKeyEncoding);
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/operator/jcajce/
H A DJcaDigestCalculatorProviderBuilder.java94 dig.update(bytes, off, len);
100 dig.update(bytes);
106 dig.update((byte)b);
/external/chromium-trace/trace-viewer/third_party/webapp2/webapp2_extras/
H A Djinja2.py126 env.globals.update(config['globals'])
129 env.filters.update(config['filters'])
138 env.filters.update({
/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/boringssl/src/crypto/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
115 * called, the |update| member not to be copied from the |EVP_MD| in
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAtomicDoubleArray.java139 * @param update the new value
143 public final boolean compareAndSet(int i, double expect, double update) { argument
146 doubleToRawLongBits(update));
163 * @param update the new value
166 public final boolean weakCompareAndSet(int i, double expect, double update) { argument
169 doubleToRawLongBits(update));
/external/jmonkeyengine/engine/src/android/com/jme3/system/android/
H A DAndroidTimer.java85 public void update() { method in class:AndroidTimer
/external/jmonkeyengine/engine/src/core/com/jme3/app/state/
H A DAbstractAppState.java76 public void update(float tpf) { method in class:AbstractAppState
/external/jmonkeyengine/engine/src/core/com/jme3/audio/
H A DAudioRenderer.java77 public void update(float tpf); method in interface:AudioRenderer
/external/jmonkeyengine/engine/src/core/com/jme3/system/
H A DNanoTimer.java82 public void update() { method in class:NanoTimer
/external/linux-tools-perf/src/tools/perf/ui/tui/
H A Dprogress.c36 .update = tui_progress__update,

Completed in 682 milliseconds

1234567891011>>