Searched defs:testBytes (Results 1 - 10 of 10) sorted by relevance

/external/guava/guava-tests/benchmark/com/google/common/hash/
H A DChecksumBenchmark.java43 private byte[] testBytes; field in class:ChecksumBenchmark
47 testBytes = new byte[size];
48 new Random(RANDOM_SEED).nextBytes(testBytes);
61 checksum.update(testBytes);
77 checksum.update(testBytes);
91 result ^= hashFunction.hashBytes(testBytes).asBytes()[0];
H A DHashFunctionBenchmark.java47 private byte[] testBytes; field in class:HashFunctionBenchmark
50 testBytes = new byte[size];
51 random.nextBytes(testBytes);
58 result ^= hashFunction.hashBytes(testBytes).asBytes()[0];
H A DMessageDigestAlgorithmBenchmark.java90 private byte[] testBytes; field in class:MessageDigestAlgorithmBenchmark
93 testBytes = new byte[size];
94 new Random(RANDOM_SEED).nextBytes(testBytes);
102 result ^= hashMethod.hash(algorithm, testBytes)[0];
/external/guava/guava-tests/test/com/google/common/hash/
H A DHashingInputStreamTest.java36 private static final byte[] testBytes = new byte[] {'y', 'a', 'm', 's'}; field in class:HashingInputStreamTest
43 buffer = new ByteArrayInputStream(testBytes);
62 EasyMock.expect(hasher.putBytes(aryEq(testBytes), eq(0), eq(testBytes.length)))
70 for (int i = 0; i < testBytes.length; i++) {
71 assertEquals(testBytes[i], buf[i]);
88 assertEquals(testBytes[i], buf[i]);
98 System.arraycopy(testBytes, 0, expectedBytes, 0, testBytes.length);
108 assertEquals(testBytes[
[all...]
H A DAbstractByteHasherTest.java33 public void testBytes() { method in class:AbstractByteHasherTest
H A DAbstractStreamingHasherTest.java44 public void testBytes() { method in class:AbstractStreamingHasherTest
/external/guava/guava-tests/test/com/google/common/base/
H A DUtf8Test.java167 testBytes(1, EXPECTED_ONE_BYTE_ROUNDTRIPPABLE_COUNT);
173 testBytes(2, EXPECTED_TWO_BYTE_ROUNDTRIPPABLE_COUNT);
179 testBytes(3, EXPECTED_THREE_BYTE_ROUNDTRIPPABLE_COUNT);
282 private static void testBytes(int numBytes, long expectedCount) { method in class:Utf8Test
283 testBytes(numBytes, expectedCount, 0, -1);
298 private static void testBytes(int numBytes, long expectedCount, long start, method in class:Utf8Test
/external/protobuf/java/src/test/java/com/google/protobuf/
H A DIsValidUtf8TestUtil.java189 static void testBytes(int numBytes, long expectedCount) method in class:IsValidUtf8TestUtil
191 testBytes(numBytes, expectedCount, 0, -1);
205 static void testBytes(int numBytes, long expectedCount, long start, long lim) method in class:IsValidUtf8TestUtil
301 * Variation of {@link #testBytes} that does less allocation using the
/external/lzma/C/
H A D7zIn.c301 static int TestSignatureCandidate(Byte *testBytes) argument
305 if (testBytes[i] != k7zSignature[i])
/external/icu/icu4c/source/test/cintltst/
H A Dnucnvtst.c5318 static const uint8_t testBytes[] = { 0x95, 0xcf, 0x8a, 0xb7, 0x0d, 0x0a, 0x00 }; local
5319 const char *testBuffer = (const char *)testBytes;
5320 const char *testEnd = (const char *)testBytes + sizeof(testBytes);

Completed in 230 milliseconds