Searched refs:update (Results 1 - 25 of 742) 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.c34 struct drm_update_draw update; local
36 update.handle = drawable;
37 update.type = DRM_DRAWABLE_CLIPRECTS;
38 update.num = 0;
39 update.data = 0;
41 ret = ioctl(fd, DRM_IOCTL_UPDATE_DRAW, &update);
49 struct drm_update_draw update; local
51 update.handle = drawable;
52 update.type = DRM_DRAWABLE_CLIPRECTS;
53 update
64 struct drm_update_draw update; local
[all...]
/external/jmonkeyengine/engine/src/core/com/jme3/input/
H A DInput.java55 public void update(); method in interface:Input
/external/jmonkeyengine/engine/src/core/com/jme3/system/
H A DTimer.java85 * <code>update</code> recalculates the frame rate based on the previous
86 * call to update. It is assumed that update is called each frame.
88 public abstract void update(); method in class:Timer
H A DSystemListener.java56 * Callback to update the application state, and render the scene
59 public void update(); method in interface:SystemListener
/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/jmonkeyengine/engine/src/test/jme3test/app/state/
H A DRootNodeState.java47 public void update(float tpf) { method in class:RootNodeState
48 super.update(tpf);
/external/linux-tools-perf/src/tools/perf/ui/
H A Dprogress.c12 .update = nop_progress_update,
19 return progress_fns->update(curr, total, title);
H A Dprogress.h7 void (*update)(u64, u64, const char *); member in struct:ui_progress
/external/clang/test/OpenMP/
H A Datomic_update_codegen.cpp82 #pragma omp atomic update
88 #pragma omp atomic update
117 #pragma omp atomic update
134 #pragma omp atomic update
160 #pragma omp atomic update
168 #pragma omp atomic update
189 #pragma omp atomic update
235 #pragma omp atomic update
333 #pragma omp atomic update
389 #pragma omp atomic update
[all...]
/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/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
H A DGeneralDigest.java54 public void update( method in class:GeneralDigest
68 public void update( method in class:GeneralDigest
78 update(in[inOff]);
101 update(in[inOff]);
115 update((byte)128);
119 update((byte)0);
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/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/io/
H A DDigestOutputStream.java22 digest.update((byte)b);
31 digest.update(b, off, len);
H A DMacOutputStream.java22 mac.update((byte)b);
31 mac.update(b, off, len);
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/digest/
H A DBCMessageDigest.java28 digest.update(input);
36 digest.update(input, offset, len);
/external/llvm/include/llvm/Support/
H A DMD5.h52 void update(ArrayRef<uint8_t> Data);
55 void update(StringRef Str);

Completed in 737 milliseconds

1234567891011>>