HomeSort by relevance Sort by last modified time
    Searched refs:hash_code (Results 1 - 12 of 12) sorted by null

  /external/llvm/include/llvm/ADT/
Hashing.h 17 // -- 'hash_code' class is an opaque type representing the hash code for some
21 // to assume much about the internals of a hash_code. In particular, each
23 // hash_code for a given input. Thus their values are not stable to save or
34 // a single hash_code for their object. They should only logically be used
74 /// In order to obtain the hash_code for an object 'x':
77 /// llvm::hash_code code = hash_value(x);
83 class hash_code { class in namespace:llvm
87 /// \brief Default construct a hash_code.
89 hash_code() {} function in class:llvm::hash_code
92 hash_code(size_t value) : value(value) { function in class:llvm::hash_code
    [all...]
StringRef.h 25 class hash_code;
519 /// \brief Compute a hash_code for a StringRef.
520 hash_code hash_value(StringRef S);
APFloat.h 341 friend hash_code hash_value(const APFloat &Arg);
APInt.h 30 class hash_code;
506 /// \brief Overload to compute a hash_code for an APInt value.
507 friend hash_code hash_value(const APInt &Arg);
    [all...]
  /external/llvm/unittests/ADT/
HashingTest.cpp 25 void PrintTo(const hash_code &code, std::ostream *os) {
37 friend hash_code hash_value(const NonPOD &obj) {
129 hash_code hash_value(HashableDummy dummy) { return dummy.value; }
134 hash_code dummy_hash = hash_combine_range(&dummy, &dummy);
135 EXPECT_NE(hash_code(0), dummy_hash);
138 hash_code arr1_hash = hash_combine_range(begin(arr1), end(arr1));
152 hash_code arr2_hash = hash_combine_range(begin(arr2), end(arr2));
157 hash_code arr3_hash = hash_combine_range(begin(arr3), end(arr3));
162 hash_code arr4_hash = hash_combine_range(begin(arr4), end(arr4));
168 hash_code arr5_hash = hash_combine_range(begin(arr5), end(arr5))
    [all...]
StringRefTest.cpp 299 hash_code H = hash_value(S);
  /external/llvm/lib/VMCore/
LLVMContextImpl.h 55 friend hash_code hash_value(const KeyTy &Key) {
80 friend hash_code hash_value(const KeyTy &Key) {
  /external/llvm/lib/Support/
StringRef.cpp 432 hash_code llvm::hash_value(StringRef S) {
APFloat.cpp     [all...]
APInt.cpp 663 hash_code llvm::hash_value(const APInt &Arg) {
    [all...]
  /external/llvm/lib/TableGen/
Record.cpp 50 friend hash_code hash_value(const TableGenStringKey &Value) {
    [all...]
  /external/llvm/lib/Transforms/Scalar/
GVN.cpp 89 friend hash_code hash_value(const Expression &Value) {
    [all...]

Completed in 180 milliseconds