HomeSort by relevance Sort by last modified time
    Searched defs:Hasher (Results 1 - 25 of 114) sorted by null

1 2 3 4 5

  /external/annotation-tools/scene-lib/src/annotations/util/
Hasher.java 10 * not very good; the advantage of a {@link Hasher} class is that an
13 public final class Hasher {
  /external/tensorflow/tensorflow/core/graph/
tensor_id.h 42 struct Hasher {
  /external/tensorflow/tensorflow/compiler/xla/service/
logical_buffer_analysis.h 70 struct Hasher {
84 LogicalBuffer*, Hasher>
buffer_assignment.h 158 struct Hasher {
556 LogicalBuffer::Color::Hasher>
  /external/guava/guava/src/com/google/common/hash/
Hasher.java 22 * A {@link PrimitiveSink} that can compute a hash code after reading the input. Each hasher should
34 * <p><b>Warning:</b> Chunks of data that are put into the {@link Hasher} are not delimited.
53 public interface Hasher extends PrimitiveSink {
54 @Override Hasher putByte(byte b);
55 @Override Hasher putBytes(byte[] bytes);
56 @Override Hasher putBytes(byte[] bytes, int off, int len);
57 @Override Hasher putShort(short s);
58 @Override Hasher putInt(int i);
59 @Override Hasher putLong(long l);
64 @Override Hasher putFloat(float f)
    [all...]
  /external/tensorflow/tensorflow/core/kernels/
gpu_utils.h 119 struct Hasher {
138 std::unordered_map<Parameters, ValueType, Hasher> params_config_map_
  /external/tensorflow/tensorflow/core/lib/gtl/
int_type.h 194 struct Hasher {
  /external/libchrome/base/trace_event/
memory_usage_estimator_unittest.cc 44 struct Hasher {
196 std::unordered_set<Data, Data::Hasher> set;
204 std::unordered_multiset<Data, Data::Hasher> set;
213 std::unordered_map<Data, short, Data::Hasher> map;
221 std::unordered_multimap<Data, short, Data::Hasher> map;
  /external/lzma/CPP/7zip/UI/Common/
HashCalc.h 28 CMyComPtr<IHasher> Hasher;
  /prebuilts/clang/host/darwin-x86/clang-4393122/include/llvm/DebugInfo/CodeView/
TypeSerializer.h 64 std::unique_ptr<TypeHasher> Hasher;
  /prebuilts/clang/host/darwin-x86/clang-4479392/include/llvm/DebugInfo/CodeView/
TypeSerializer.h 64 std::unique_ptr<TypeHasher> Hasher;
  /prebuilts/clang/host/darwin-x86/clang-4579689/include/llvm/DebugInfo/CodeView/
TypeSerializer.h 70 std::unique_ptr<TypeHasher> Hasher;
  /prebuilts/clang/host/darwin-x86/clang-4630689/include/llvm/DebugInfo/CodeView/
TypeSerializer.h 70 std::unique_ptr<TypeHasher> Hasher;
  /prebuilts/clang/host/darwin-x86/clang-4639204/include/llvm/DebugInfo/CodeView/
TypeSerializer.h 70 std::unique_ptr<TypeHasher> Hasher;
  /prebuilts/clang/host/darwin-x86/clang-4691093/include/llvm/DebugInfo/CodeView/
TypeSerializer.h 70 std::unique_ptr<TypeHasher> Hasher;
  /prebuilts/clang/host/linux-x86/clang-4393122/include/llvm/DebugInfo/CodeView/
TypeSerializer.h 64 std::unique_ptr<TypeHasher> Hasher;
  /prebuilts/clang/host/linux-x86/clang-4479392/include/llvm/DebugInfo/CodeView/
TypeSerializer.h 64 std::unique_ptr<TypeHasher> Hasher;
  /prebuilts/clang/host/linux-x86/clang-4579689/include/llvm/DebugInfo/CodeView/
TypeSerializer.h 70 std::unique_ptr<TypeHasher> Hasher;
  /prebuilts/clang/host/linux-x86/clang-4630689/include/llvm/DebugInfo/CodeView/
TypeSerializer.h 70 std::unique_ptr<TypeHasher> Hasher;
  /prebuilts/clang/host/linux-x86/clang-4639204/include/llvm/DebugInfo/CodeView/
TypeSerializer.h 70 std::unique_ptr<TypeHasher> Hasher;
  /prebuilts/clang/host/linux-x86/clang-4691093/include/llvm/DebugInfo/CodeView/
TypeSerializer.h 70 std::unique_ptr<TypeHasher> Hasher;
  /external/llvm/tools/llvm-bcanalyzer/
llvm-bcanalyzer.cpp 613 SHA1 Hasher;
618 Hasher.update(ArrayRef<uint8_t>(Ptr, BlockSize));
619 Hash = Hasher.result();
    [all...]
  /external/clang/lib/AST/
MicrosoftMangle.cpp 55 llvm::MD5 Hasher;
57 Hasher.update(MangledName);
58 Hasher.final(Hash);
    [all...]
  /external/llvm/tools/sancov/
sancov.cc 524 llvm::MD5 Hasher;
526 Hasher.update(Anchor);
527 Hasher.final(Hash);
    [all...]
  /external/tensorflow/tensorflow/compiler/jit/
encapsulate_subgraphs_pass.cc 128 struct Hasher {
137 return Hash64Combine(Hasher()(s.first), Hasher()(s.second));
345 std::unordered_map<NodeSlot, int, NodeSlot::Hasher> inputs;
361 std::unordered_map<NodeSlot, int, NodeSlot::Hasher> outputs_by_src;
362 std::unordered_map<NodeSlot, int, NodeSlot::Hasher> outputs_by_dst;
428 std::unordered_map<NodeSlot, int, NodeSlot::Hasher> args_by_src_;
429 std::unordered_map<NodeSlot, int, NodeSlot::Hasher> args_by_dst_;
435 std::unordered_map<NodeSlot, int, NodeSlot::Hasher> results_;
657 std::unordered_map<NodeSlot, int, NodeSlot::Hasher>::iterator iter
    [all...]

Completed in 3686 milliseconds

1 2 3 4 5