OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:asBytes
(Results
1 - 25
of
32
) sorted by null
1
2
/external/guava/guava/src/com/google/common/hash/
HashCode.java
34
* Returns the first four bytes of {@linkplain #
asBytes
() this hashcode's bytes}, converted to
40
* Returns the first eight bytes of {@linkplain #
asBytes
() this hashcode's bytes}, converted to
53
public abstract byte[]
asBytes
();
65
byte[] hash =
asBytes
();
82
return MessageDigest.isEqual(this.
asBytes
(), that.
asBytes
());
101
* Returns a string containing each byte of {@link #
asBytes
}, in order, as a two-digit unsigned
110
byte[] bytes =
asBytes
();
HashCodes.java
44
@Override public byte[]
asBytes
() {
80
@Override public byte[]
asBytes
() {
121
@Override public byte[]
asBytes
() {
Hashing.java
226
byte[] nextBytes = hashCode.
asBytes
();
251
byte[] nextBytes = hashCode.
asBytes
();
287
buffer.put(hasher.hash().
asBytes
());
/external/yaffs2/yaffs2/utils/
mkyaffsimage.c
145
unsigned char *b = ((yaffs_TagsUnion *)tags)->
asBytes
;
193
sparePtr->tagByte0 = tu->
asBytes
[0];
194
sparePtr->tagByte1 = tu->
asBytes
[1];
195
sparePtr->tagByte2 = tu->
asBytes
[2];
196
sparePtr->tagByte3 = tu->
asBytes
[3];
197
sparePtr->tagByte4 = tu->
asBytes
[4];
198
sparePtr->tagByte5 = tu->
asBytes
[5];
199
sparePtr->tagByte6 = tu->
asBytes
[6];
200
sparePtr->tagByte7 = tu->
asBytes
[7];
214
temp.
asBytes
[0] = ((tags->asBytes[2] & 0x0F) << 4) | ((tags->asBytes[1] & 0xF0) >> 4)
[
all
...]
/external/yaffs2/yaffs2/
yaffs_tagscompat.c
69
unsigned char *b = ((yaffs_TagsUnion *) tags)->
asBytes
;
99
unsigned char *b = ((yaffs_TagsUnion *) tags)->
asBytes
;
127
sparePtr->tagByte0 = tu->
asBytes
[0];
128
sparePtr->tagByte1 = tu->
asBytes
[1];
129
sparePtr->tagByte2 = tu->
asBytes
[2];
130
sparePtr->tagByte3 = tu->
asBytes
[3];
131
sparePtr->tagByte4 = tu->
asBytes
[4];
132
sparePtr->tagByte5 = tu->
asBytes
[5];
133
sparePtr->tagByte6 = tu->
asBytes
[6];
134
sparePtr->tagByte7 = tu->
asBytes
[7]
[
all
...]
yaffs_guts.h
146
__u8
asBytes
[8];
/external/guava/guava-tests/test/com/google/common/hash/
MessageDigestHashFunctionTest.java
32
new MessageDigestHashFunction(algorithmName).hashBytes(input).
asBytes
());
Murmur3Hash32Test.java
35
return hasher.hash().
asBytes
();
HashCodesTest.java
74
assertTrue(Arrays.equals(expected.bytes, hash.
asBytes
()));
93
byte[] original = hash.
asBytes
();
94
byte[] mutated = hash.
asBytes
();
96
assertTrue(Arrays.equals(original, hash.
asBytes
()));
101
byte[] hashBytes = hashCode.
asBytes
();
Murmur3Hash128Test.java
55
byte[] hash = murmur3_128(seed).newHasher().putBytes(input).hash().
asBytes
();
64
return hasher.hash().
asBytes
();
HashFunctionsTest.java
50
assertEquals(hashFunction.bits(), hashcode1.
asBytes
().length * 8);
AbstractStreamingHasherTest.java
142
byte[] expected = controlSink.hash().
asBytes
();
/external/chromium_org/third_party/angle/src/libGLESv2/
BinaryStream.h
195
const char *
asBytes
= reinterpret_cast<const char*>(v);
196
mData.insert(mData.end(),
asBytes
,
asBytes
+ num * sizeof(T));
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/crypto/modes/gcm/
Tables1kGCMExponentiator.java
40
GCMUtil.
asBytes
(y, output);
GCMUtil.java
55
static byte[]
asBytes
(int[] x)
62
static void
asBytes
(int[] x, byte[] z)
67
static byte[]
asBytes
(long[] x)
74
static void
asBytes
(long[] x, byte[] z)
/external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.team.core_3.5.100.R36x_v20100825-0800.jar
/prebuilts/sdk/tools/lib/
signapk.jar
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/closure/
compiler.jar
/external/owasp/sanitizer/distrib/lib/
guava.jar
/external/owasp/sanitizer/lib/guava-libraries/
guava.jar
/packages/services/Telecomm/libs/
guava.jar
/prebuilts/devtools/tools/lib/
guava-13.0.1.jar
/prebuilts/eclipse/maven/apache-maven-3.2.1/lib/
guava-14.0.1.jar
/prebuilts/misc/common/android-support-test/
espresso-core.jar
/prebuilts/misc/common/tradefed/
tradefed-prebuilt.jar
Completed in 2093 milliseconds
1
2