OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:HashFunction
(Results
26 - 50
of
87
) sorted by null
1
2
3
4
/external/guava/guava/src/com/google/common/hash/
HashingInputStream.java
36
* Creates an input stream that hashes using the given {@link
HashFunction
} and delegates all data
41
public HashingInputStream(
HashFunction
hashFunction
, InputStream in) {
43
this.hasher = checkNotNull(
hashFunction
.newHasher());
AbstractNonStreamingHashFunction.java
26
* Skeleton implementation of {@link
HashFunction
}, appropriate for non-streaming algorithms.
32
abstract class AbstractNonStreamingHashFunction implements
HashFunction
{
AbstractStreamingHashFunction.java
26
* Skeleton implementation of {@link
HashFunction
}. Provides default implementations which
35
abstract class AbstractStreamingHashFunction implements
HashFunction
{
/external/guava/guava-tests/benchmark/com/google/common/hash/
ChecksumBenchmark.java
29
* Benchmarks for comparing {@link Checksum}s and {@link
HashFunction
}s that wrap {@link Checksum}s.
85
private byte runHashFunction(int reps,
HashFunction
hashFunction
) {
91
result ^=
hashFunction
.hashBytes(testBytes).asBytes()[0];
/packages/apps/Settings/src/com/android/settings/fuelgauge/batterytip/
StatsManagerConfig.java
21
import com.google.common.hash.
HashFunction
;
/external/guava/guava-tests/test/com/google/common/hash/
SipHashFunctionTest.java
34
private static final
HashFunction
SIP_WITH_KEY = Hashing.sipHash24(K0, K1);
35
private static final
HashFunction
SIP_WITHOUT_KEY = Hashing.sipHash24();
HashingInputStreamTest.java
36
private
HashFunction
hashFunction
;
43
hashFunction
= EasyMock.createMock(
HashFunction
.class);
46
EasyMock.expect(
hashFunction
.newHasher()).andReturn(hasher).once();
47
EasyMock.replay(
hashFunction
);
53
HashingInputStream in = new HashingInputStream(
hashFunction
, buffer);
58
EasyMock.verify(
hashFunction
);
66
HashingInputStream in = new HashingInputStream(
hashFunction
, buffer);
75
EasyMock.verify(
hashFunction
);
[
all
...]
/external/llvm/lib/DebugInfo/DWARF/
DWARFAcceleratorTable.cpp
26
Hdr.
HashFunction
= AccelSection.getU16(&Offset);
53
<< "Hash function = " << format("0x%08x", Hdr.
HashFunction
) << '\n'
/frameworks/layoutlib/bridge/tests/src/com/android/layoutlib/bridge/intensive/util/perf/
TimedStatement.java
36
import com.google.common.hash.
HashFunction
;
71
HashFunction
hashFunction
= Hashing.sha512();
91
HashCode code1 =
hashFunction
.hashBytes(buffer);
93
HashCode code2 =
hashFunction
.hashBytes(buffer);
/prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/DebugInfo/DWARF/
DWARFAcceleratorTable.h
31
uint16_t
HashFunction
;
/prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/DebugInfo/DWARF/
DWARFAcceleratorTable.h
31
uint16_t
HashFunction
;
/prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/DebugInfo/DWARF/
DWARFAcceleratorTable.h
31
uint16_t
HashFunction
;
/prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/DebugInfo/DWARF/
DWARFAcceleratorTable.h
31
uint16_t
HashFunction
;
/prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/DebugInfo/DWARF/
DWARFAcceleratorTable.h
31
uint16_t
HashFunction
;
/prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/DebugInfo/DWARF/
DWARFAcceleratorTable.h
31
uint16_t
HashFunction
;
/prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/DebugInfo/DWARF/
DWARFAcceleratorTable.h
31
uint16_t
HashFunction
;
/prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/DebugInfo/DWARF/
DWARFAcceleratorTable.h
31
uint16_t
HashFunction
;
/external/tensorflow/tensorflow/core/kernels/
xsmm_conv2d.cc
129
struct
HashFunction
{
139
HashFunction
>::iterator i = libxsmm_handles.find(w);
153
HashFunction
>::iterator i;
161
HashFunction
>
/external/guava/guava/src/com/google/common/io/
ByteSource.java
27
import com.google.common.hash.
HashFunction
;
295
public HashCode hash(
HashFunction
hashFunction
) throws IOException {
296
Hasher hasher =
hashFunction
.newHasher();
536
public HashCode hash(
HashFunction
hashFunction
) throws IOException {
537
return
hashFunction
.hashBytes(bytes);
Files.java
32
import com.google.common.hash.
HashFunction
;
584
* Computes the hash code of the {@code file} using {@code
hashFunction
}.
587
* @param
hashFunction
the hash function to use to hash the data
592
public static HashCode hash(File file,
HashFunction
hashFunction
)
594
return asByteSource(file).hash(
hashFunction
);
/sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/build/
BuildHelper.java
48
import com.google.common.hash.
HashFunction
;
[
all
...]
/cts/tests/libcore/javautilcollections/libs/
guava-20.0.jar
/external/annotation-tools/annotation-file-utilities/lib/
guava-20.0.jar
/external/conscrypt/benchmark-android/
vogar.jar
/external/dagger2/lib/
google-java-format-0.1-20151017.042846-2.jar
Completed in 1429 milliseconds
1
2
3
4