Searched refs:update (Results 1 - 25 of 1146) sorted by relevance

1234567891011>>

/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 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
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
/external/libopus/
H A Dversion.mk1 # static version string; update manually every release.
/external/replicaisland/src/com/replica/replicaisland/
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 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
/external/guava/guava/src/com/google/common/hash/
H A DAbstractByteHasher.java43 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);
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);
84 private Hasher update(int bytes) { method in class:AbstractByteHasher
86 update(scratc
[all...]
/external/libdrm/tests/
H A Dupdatedraw.c35 struct drm_update_draw update; local
37 update.handle = drawable;
38 update.type = DRM_DRAWABLE_CLIPRECTS;
39 update.num = 0;
40 update.data = 0;
42 ret = ioctl(fd, DRM_IOCTL_UPDATE_DRAW, &update);
50 struct drm_update_draw update; local
52 update.handle = drawable;
53 update.type = DRM_DRAWABLE_CLIPRECTS;
54 update
65 struct drm_update_draw update; local
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/
H A Drakefile13 spec_extras.update(
/external/bison/build-aux/
H A DMakefile.am20 update-b4-copyright
/external/opencv3/samples/python2/
H A Dfloodfill.py39 def update(dummy=None): function
58 update()
60 update()
62 cv2.createTrackbar('lo', 'floodfill', 20, 255, update)
63 cv2.createTrackbar('hi', 'floodfill', 20, 255, update)
72 update()
76 update()
H A Dmorphology.py44 def update(dummy=None): function
68 cv2.createTrackbar('op/size', 'morphology', 12, 20, update)
69 cv2.createTrackbar('iters', 'morphology', 1, 10, update)
70 update()
79 update()
/external/lzma/Java/Tukaani/src/org/tukaani/xz/check/
H A DCheck.java19 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);
H A DNone.java18 public void update(byte[] buf, int off, int len) {} method in class:None
H A DCRC32.java20 public void update(byte[] buf, int off, int len) { method in class:CRC32
21 state.update(buf, off, len);
H A DSHA256.java21 public void update(byte[] buf, int off, int len) { method in class:SHA256
22 sha256.update(buf, off, len);
/external/chromium-trace/catapult/third_party/typ/typ/tests/
H A Dprinter_test.py31 pr.update('foo')
37 pr.update('hello world')
43 pr.update('hello world')
44 pr.update('goodbye world')
54 pr.update('foo\nbar')
55 pr.update('baz')
/external/clang/test/OpenMP/
H A Datomic_update_codegen.cpp88 #pragma omp atomic update
94 #pragma omp atomic update
127 #pragma omp atomic update
146 #pragma omp atomic update
176 #pragma omp atomic update
184 #pragma omp atomic update
205 #pragma omp atomic update
242 #pragma omp atomic update
286 #pragma omp atomic update
315 #pragma omp atomic update
[all...]
/external/google-benchmark/
H A D.travis-setup.sh13 sudo apt-get update -qq
19 sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-4.8 90
20 sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-4.8 90
23 sudo update-alternatives --install /usr/local/bin/clang clang /usr/bin/clang-3.6 90
24 sudo update-alternatives --install /usr/local/bin/clang++ clang++ /usr/bin/clang++-3.6 90
/external/libdrm/
H A Dxf86drmSL.c137 static SLEntryPtr SLLocate(void *l, unsigned long key, SLEntryPtr *update) argument
148 update[i] = entry;
158 SLEntryPtr update[SL_MAX_LEVEL + 1]; local
164 entry = SLLocate(list, key, update);
172 update[level] = list->head;
179 entry->forward[i] = update[i]->forward[i];
180 update[i]->forward[i] = entry;
190 SLEntryPtr update[SL_MAX_LEVEL + 1]; local
196 entry = SLLocate(list, key, update);
202 if (update[
217 SLEntryPtr update[SL_MAX_LEVEL + 1]; local
235 SLEntryPtr update[SL_MAX_LEVEL + 1] = {0}; local
[all...]
/external/chromium-trace/catapult/third_party/gsutil/third_party/oauth2client/oauth2client/
H A Dxsrfutil.py66 digester.update(_force_bytes(user_id))
67 digester.update(DELIMITER)
68 digester.update(_force_bytes(action_id))
69 digester.update(DELIMITER)
70 digester.update(when)
/external/jetty/src/java/org/eclipse/jetty/client/security/
H A DDigestAuthentication.java81 md.update(securityRealm.getPrincipal().getBytes(StringUtil.__ISO_8859_1));
82 md.update((byte)':');
83 md.update(String.valueOf(details.get("realm")).getBytes(StringUtil.__ISO_8859_1));
84 md.update((byte)':');
85 md.update(securityRealm.getCredentials().getBytes(StringUtil.__ISO_8859_1));
89 md.update(exchange.getMethod().getBytes(StringUtil.__ISO_8859_1));
90 md.update((byte)':');
91 md.update(exchange.getURI().getBytes(StringUtil.__ISO_8859_1));
94 md.update(TypeUtil.toString(ha1,16).getBytes(StringUtil.__ISO_8859_1));
95 md.update((byt
[all...]
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
H A Dorg.eclipse.update.configurator_3.3.100.v20100512.jar ... .html plugin.properties org/ org/eclipse/ org/eclipse/update/ org/eclipse/update/configurator/ org/eclipse/update/configurator/ConfiguratorUtils. ...
/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/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/io/
H A DDigestOutputStream.java22 digest.update((byte)b);
31 digest.update(b, off, len);

Completed in 815 milliseconds

1234567891011>>