Searched refs:update (Results 26 - 50 of 742) sorted by relevance

1234567891011>>

/external/skia/src/utils/
H A DSkSHA1.h28 update(reinterpret_cast<const uint8_t*>(buffer), size);
35 void update(const uint8_t* input, size_t length);
H A DSkMD5.h28 this->update(reinterpret_cast<const uint8_t*>(buffer), size);
35 void update(const uint8_t* input, size_t length);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/macs/
H A DHMac.java125 digest.update(key, 0, keyLength);
149 ((Digest)opadState).update(outputBuf, 0, blockLength);
152 digest.update(inputPad, 0, inputPad.length);
165 public void update( method in class:HMac
168 digest.update(in);
171 public void update( method in class:HMac
176 digest.update(in, inOff, len);
188 digest.update(outputBuf, blockLength, digest.getDigestSize());
192 digest.update(outputBuf, 0, outputBuf.length);
208 digest.update(inputPa
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
H A DOpenSSLDigest.java58 public void update(byte in) { method in class:OpenSSLDigest
59 delegate.update(in);
62 public void update(byte[] in, int inOff, int len) { method in class:OpenSSLDigest
63 delegate.update(in, inOff, len);
/external/guava/guava/src/com/google/common/hash/
H A DChecksumHashFunction.java70 protected void update(byte b) { method in class:ChecksumHashFunction.ChecksumHasher
71 checksum.update(b);
75 protected void update(byte[] bytes, int off, int len) { method in class:ChecksumHashFunction.ChecksumHasher
76 checksum.update(bytes, off, len);
/external/lldb/examples/summaries/
H A Dsp_cp.py12 self.update()
13 def update(self): member in class:SharedPtr_SyntheticChildrenProvider
36 self.update()
37 def update(self): member in class:ValueObjectSP_SyntheticChildrenProvider
/external/mesa3d/src/gallium/drivers/i915/
H A Di915_state.h39 void (*update)(struct i915_context *); member in struct:i915_tracked_state
/external/replicaisland/src/com/replica/replicaisland/
H A DCameraBiasComponent.java30 public void update(float timeDelta, BaseObject parent) { method in class:CameraBiasComponent
/external/apache-harmony/crypto/src/test/api/java/org/apache/harmony/crypto/tests/javax/crypto/
H A DNullCipherTest.java96 * Class under test for byte[] update(byte[])
100 byte[] r = c.update(b);
106 * Class under test for byte[] update(byte[], int, int)
110 byte[] r = c.update(b, 0, 5);
114 r = c.update(b, 1, 3);
122 * Class under test for int update(byte[], int, int, byte[])
127 c.update(b, 0, 5, r);
132 * Class under test for int update(byte[], int, int, byte[], int)
137 c.update(b, 0, 5, r, 0);
185 * Class under test for byte[] update(byt
[all...]
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/
H A DMessageDigest1Test.java43 * @tests java.security.MessageDigest#update(byte)
47 md.update((byte) 1);
52 * @tests java.security.MessageDigest#update(byte[], int, int)
57 md.update(bytes, 1, 2);
63 md.update(null, 0, 1);
69 md.update(bytes, 0, bytes.length + 1);
75 md.update(bytes, Integer.MAX_VALUE, 1);
91 md.update(bytes, offset, len);
96 * @tests java.security.MessageDigest#update(byte[])
101 md.update(
[all...]
/external/v8/test/webkit/
H A Ddictionary-no-cache.js69 function update(test) { function
73 update(test1);
76 update(test2);
79 update(test3);
83 update(test4);
/external/jetty/src/java/org/eclipse/jetty/security/authentication/
H A DDigestAuthenticator.java361 md.update(username.getBytes(StringUtil.__ISO_8859_1));
362 md.update((byte) ':');
363 md.update(realm.getBytes(StringUtil.__ISO_8859_1));
364 md.update((byte) ':');
365 md.update(password.getBytes(StringUtil.__ISO_8859_1));
370 md.update(method.getBytes(StringUtil.__ISO_8859_1));
371 md.update((byte) ':');
372 md.update(uri.getBytes(StringUtil.__ISO_8859_1));
382 md.update(TypeUtil.toString(ha1, 16).getBytes(StringUtil.__ISO_8859_1));
383 md.update((byt
[all...]
/external/chromium-trace/trace-viewer/third_party/Paste/tests/
H A Dtest_httpheaders.py6 REFERER.update(collection,'internal:/some/path')
8 CACHE_CONTROL.update(collection,max_age=1234)
9 CONTENT_DISPOSITION.update(collection,filename="bingles.txt")
10 PRAGMA.update(collection,"test","multi",'valued="items"')
34 CONTENT_TYPE.update(environ,'new/type')
109 VIA.update(response_headers,environ)
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/io/
H A DDigestInputStream.java29 digest.update((byte)b);
43 digest.update(b, off, n);
H A DMacInputStream.java29 mac.update((byte)b);
43 mac.update(b, off, n);
/external/eigen/scripts/
H A Drelicense.py46 def update(text): function
62 text, updated = update(text)
/external/guava/guava-gwt/src-super/java/util/super/java/util/concurrent/atomic/
H A DAtomicInteger.java54 public final boolean compareAndSet(int expect, int update) { argument
56 value = update;
H A DAtomicLong.java54 public final boolean compareAndSet(long expect, long update) { argument
56 value = update;
/external/jmonkeyengine/engine/src/test/jme3test/app/
H A DTestBareBonesApp.java69 public void update(){ method in class:TestBareBonesApp
70 super.update();
76 // dont forget to update the scenes
/external/lldb/test/expression_command/formatters/
H A Dfoosynth.py6 self.update();
8 def update(self): member in class:FooSyntheticProvider
/external/llvm/unittests/Support/
H A DMD5Test.cpp25 Hash.update(Input);
35 Hash.update(Input);
/external/clang/test/OpenMP/
H A Datomic_ast_print.cpp19 #pragma omp atomic update
34 #pragma omp atomic update seq_cst
53 // CHECK-NEXT: #pragma omp atomic update
68 // CHECK-NEXT: #pragma omp atomic update seq_cst
84 // CHECK-NEXT: #pragma omp atomic update
99 // CHECK-NEXT: #pragma omp atomic update seq_cst
119 #pragma omp atomic update
134 #pragma omp atomic update seq_cst
149 // CHECK-NEXT: #pragma omp atomic update
164 // CHECK-NEXT: #pragma omp atomic update seq_cs
[all...]
/external/guava/guava/src/com/google/common/util/concurrent/
H A DAtomicDouble.java127 * @param update the new value
131 public final boolean compareAndSet(double expect, double update) { argument
134 doubleToRawLongBits(update));
149 * @param update the new value
152 public final boolean weakCompareAndSet(double expect, double update) { argument
155 doubleToRawLongBits(update));
/external/jmonkeyengine/engine/src/core/com/jme3/app/state/
H A DAppState.java96 * Called to update the state.
100 public void update(float tpf); method in interface:AppState
/external/jmonkeyengine/engine/src/core/com/jme3/input/dummy/
H A DDummyInput.java55 public void update() { method in class:DummyInput

Completed in 739 milliseconds

1234567891011>>