HomeSort by: relevance | last modified time | path
    Searched refs:hash_code (Results 1 - 25 of 59) sorted by relevancy

1 2 3

  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ModuleFileExtension.cpp 16 llvm::hash_code ModuleFileExtension::hashExtension(llvm::hash_code Code) const {
  /src/external/apache2/llvm/dist/clang/include/clang/Serialization/
ModuleFileExtension.h 20 class hash_code;
89 virtual llvm::hash_code hashExtension(llvm::hash_code c) const;
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
Hashing.h 16 // -- 'hash_code' class is an opaque type representing the hash code for some
20 // to assume much about the internals of a hash_code. In particular, each
22 // hash_code for a given input. Thus their values are not stable to save or
33 // a single hash_code for their object. They should only logically be used
67 /// In order to obtain the hash_code for an object 'x':
70 /// llvm::hash_code code = hash_value(x);
72 class hash_code { class in namespace:llvm
76 /// Default construct a hash_code.
78 hash_code() = default;
81 hash_code(size_t value) : value(value) { function in class:llvm::hash_code
    [all...]
DenseMapInfo.h 345 template <> struct DenseMapInfo<hash_code> {
346 static inline hash_code getEmptyKey() { return hash_code(-1); }
347 static inline hash_code getTombstoneKey() { return hash_code(-2); }
348 static unsigned getHashValue(hash_code val) { return val; }
349 static bool isEqual(hash_code LHS, hash_code RHS) { return LHS == RHS; }
APFloat.h 407 friend hash_code hash_value(const IEEEFloat &Arg);
593 hash_code hash_value(const IEEEFloat &Arg);
692 friend hash_code hash_value(const DoubleAPFloat &Arg);
695 hash_code hash_value(const DoubleAPFloat &Arg);
1251 friend hash_code hash_value(const APFloat &Arg);
1263 hash_code hash_value(const APFloat &Arg);
  /src/external/gpl3/binutils/dist/gprofng/src/
HashMap.h 297 int hash_code = hashCode (key); local
298 for (Hash_t *p = hashTable[hash_code]; p; p = p->next)
309 int hash_code = hashCode (key); local
310 for (Hash_t *p = hashTable[hash_code]; p; p = p->next)
322 int hash_code = hashCode (key); local
324 for (p = hashTable[hash_code]; p; p = p->next)
346 p->next = hashTable[hash_code];
347 hashTable[hash_code] = p;
356 int hash_code = hashCode (key); local
358 for (Hash_t *prev = NULL, *p = hashTable[hash_code]; p != NULL;
384 int hash_code = hashCode (key); local
    [all...]
  /src/external/gpl3/binutils.old/dist/gprofng/src/
HashMap.h 297 int hash_code = hashCode (key); local
298 for (Hash_t *p = hashTable[hash_code]; p; p = p->next)
309 int hash_code = hashCode (key); local
310 for (Hash_t *p = hashTable[hash_code]; p; p = p->next)
322 int hash_code = hashCode (key); local
324 for (p = hashTable[hash_code]; p; p = p->next)
346 p->next = hashTable[hash_code];
347 hashTable[hash_code] = p;
356 int hash_code = hashCode (key); local
358 for (Hash_t *prev = NULL, *p = hashTable[hash_code]; p != NULL;
384 int hash_code = hashCode (key); local
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
TestModuleFileExtension.h 58 llvm::hash_code hashExtension(llvm::hash_code Code) const override;
TestModuleFileExtension.cpp 96 llvm::hash_code TestModuleFileExtension::hashExtension(
97 llvm::hash_code Code) const {
  /src/external/apache2/llvm/dist/libcxx/src/
typeinfo.cpp 25 size_t std::type_info::hash_code() const noexcept {
  /src/external/apache2/llvm/dist/clang/lib/Basic/
Sanitizers.cpp 55 llvm::hash_code SanitizerMask::hash_value() const {
60 llvm::hash_code hash_value(const clang::SanitizerMask &Arg) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCRegister.h 23 friend hash_code hash_value(const MCRegister &);
109 inline hash_code hash_value(const MCRegister &Reg) {
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
Sanitizers.h 25 class hash_code;
79 llvm::hash_code hash_value() const;
126 llvm::hash_code hash_value(const clang::SanitizerMask &Arg);
DirectoryEntry.h 53 friend llvm::hash_code hash_value(DirectoryEntryRef Ref) {
ObjCRuntime.h 480 friend llvm::hash_code hash_value(const ObjCRuntime &OCR) {
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/PBQP/
Math.h 26 friend hash_code hash_value(const Vector &);
100 inline hash_code hash_value(const Vector &V) {
123 friend hash_code hash_value(const Matrix &);
236 /// Return a hash_code for the given matrix.
237 inline hash_code hash_value(const Matrix &M) {
267 inline hash_code hash_value(const MDVector<Metadata> &V) {
284 inline hash_code hash_value(const MDMatrix<Metadata> &M) {
  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
HeaderSearchOptions.h 255 inline llvm::hash_code hash_value(const HeaderSearchOptions::Entry &E) {
259 inline llvm::hash_code
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
MergingTypeTableBuilder.h 65 TypeIndex insertRecordAs(hash_code Hash, ArrayRef<uint8_t> &Record);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Scalar/
GVNExpression.h 64 mutable hash_code HashVal = 0;
91 hash_code getComputedHash() const {
113 virtual hash_code getHashValue() const { return getOpcode(); }
222 hash_code getHashValue() const override {
285 hash_code getHashValue() const override {
462 hash_code getHashValue() const override {
528 hash_code getHashValue() const override {
574 hash_code getHashValue() const override {
611 hash_code getHashValue() const override {
647 hash_code getHashValue() const override
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
VersionTuple.h 148 friend llvm::hash_code hash_value(const VersionTuple &VT) {
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
TypeHashing.cpp 18 LocallyHashedType DenseMapInfo<LocallyHashedType>::Tombstone{hash_code(-1), {}};
MergingTypeTableBuilder.cpp 90 TypeIndex MergingTypeTableBuilder::insertRecordAs(hash_code Hash,
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
RegisterBankInfo.cpp 267 static hash_code hashPartialMapping(unsigned StartIdx, unsigned Length,
273 hash_code
284 hash_code Hash = hashPartialMapping(StartIdx, Length, &RegBank);
302 static hash_code
318 hash_code Hash = hashValueMapping(BreakDown, NumBreakDowns);
338 hash_code Hash = hash_combine_range(Begin, End);
373 static hash_code
391 hash_code Hash =
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
MachineOperand.h 38 class hash_code;
728 friend hash_code hash_value(const MachineOperand &MO);
995 hash_code hash_value(const MachineOperand &MO);
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/
RegisterBankInfo.h 771 hash_code hash_value(const RegisterBankInfo::PartialMapping &PartMapping);

Completed in 29 milliseconds

1 2 3