Searched refs:update (Results 1 - 25 of 674) 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/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/digest/
H A DDigest.java17 public void update(byte b); method in interface:Digest
19 public void update(byte[] b); method in interface:Digest
21 public void update(byte b[], int off, int len); method in interface:Digest
H A DHMAC.java38 md.update(key);
51 md.update(k_xor_ipad);
59 public void update(byte b) method in class:HMAC
61 md.update(b);
64 public void update(byte[] b) method in class:HMAC
66 md.update(b);
69 public void update(byte[] b, int off, int len) method in class:HMAC
71 md.update(b, off, len);
77 md.update(k_xor_ipad);
89 md.update(k_xor_opa
[all...]
H A DHashForSSH2Types.java43 md.update(tmp);
48 md.update(b);
53 md.update((byte) (v >> 24));
54 md.update((byte) (v >> 16));
55 md.update((byte) (v >> 8));
56 md.update((byte) (v));
H A DMAC.java71 mac.update((byte) (seq >> 24));
72 mac.update((byte) (seq >> 16));
73 mac.update((byte) (seq >> 8));
74 mac.update((byte) (seq));
77 public void update(byte[] packetdata, int off, int len) method in class:MAC
79 mac.update(packetdata, off, len);
/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/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/apache-harmony/archive/src/test/java/org/apache/harmony/archive/tests/java/util/zip/
H A DAdler32Test.java42 adl.update(1);
45 assertEquals("update(int) failed to update the checksum to the correct value ",
52 adl.update(Integer.MIN_VALUE);
55 assertEquals("update(min) failed to update the checksum to the correct value ",
65 adl.update(1);
68 assertEquals("update(int) failed to update the checksum to the correct value ",
76 * @tests java.util.zip.Adler32#update(in
[all...]
H A DCRC32Test.java42 crc.update(Integer.MAX_VALUE);
46 assertEquals("update(max) failed to update the checksum to the correct value ",
51 crc.update(byteEmpty);
55 assertEquals("update(byte[]) failed to update the checksum to the correct value ",
59 crc.update(1);
63 // assertEquals("update(int) failed to update the checksum to the correct
76 crc.update(
[all...]
/external/antlr/antlr-3.4/runtime/Ruby/
H A Drakefile13 spec_extras.update(
/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/okhttp/src/main/java/libcore/util/
H A DExtendedResponseCache.java53 void update(CacheResponse conditionalCacheHit, OkHttpConnection httpConnection); method in interface:ExtendedResponseCache
/external/webkit/Source/WebCore/svg/properties/
H A DSVGStaticPropertyTearOff.h41 static PassRefPtr<Self> create(ContextElement* contextElement, PropertyType& value, UpdateMethod update) argument
44 return adoptRef(new Self(contextElement, value, update));
50 SVGStaticPropertyTearOff(ContextElement* contextElement, PropertyType& value, UpdateMethod update) argument
52 , m_update(update)
H A DSVGStaticPropertyWithParentTearOff.h42 static PassRefPtr<Self> create(SVGProperty* parent, PropertyType& value, UpdateMethod update) argument
45 return adoptRef(new Self(parent, value, update));
55 SVGStaticPropertyWithParentTearOff(SVGProperty* parent, PropertyType& value, UpdateMethod update) argument
57 , m_update(update)
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/io/
H A DMacOutputStream.java22 mac.update((byte)b);
31 mac.update(b, off, len);
/external/openssl/crypto/evp/
H A Dm_null.c68 static int update(EVP_MD_CTX *ctx,const void *data,size_t count) function
81 update,
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/digests/
H A DGeneralDigest.java41 public void update( method in class:GeneralDigest
55 public void update( method in class:GeneralDigest
65 update(in[inOff]);
88 update(in[inOff]);
102 update((byte)128);
106 update((byte)0);
/external/webkit/Source/WebKit2/UIProcess/
H A DWebPreferences.cpp58 void WebPreferences::update() function in class:WebKit::WebPreferences
67 update(); // FIXME: Only send over the changed key and value.
73 update(); // FIXME: Only send over the changed key and value.
79 update(); // FIXME: Only send over the changed key and value.
85 update(); // FIXME: Only send over the changed key and value.
93 update##TypeName##ValueForKey(WebPreferencesKey::KeyLower##Key(), value); \
/external/chromium/chrome/browser/sync/engine/
H A Dprocess_updates_command.cc52 const sync_pb::SyncEntity& update = it->second; local
56 switch (ProcessUpdate(dir, update)) {
91 // Process a single update. Will avoid touching global state.
96 const SyncEntity& update = *static_cast<const SyncEntity*>(&proto_update); local
98 syncable::Id server_id = update.id();
99 const std::string name = SyncerProtoUtil::NameFromSyncEntity(update);
103 // Look to see if there's a local item that should recieve this update,
105 syncable::Id local_id = SyncerUtil::FindLocalIdToUpdate(&trans, update);
120 if (!ReverifyEntry(&trans, update, &target_entry)) {
125 // change the ID now, after we're sure that the update ca
[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. ...

Completed in 730 milliseconds

1234567891011>>