Home | History | Annotate | Download | only in ADT

Lines Matching refs:getHashValue

29   //static unsigned getHashValue(const T &Val);
46 static unsigned getHashValue(const T *PtrVal) {
57 static unsigned getHashValue(const char& Val) { return Val * 37U; }
67 static unsigned getHashValue(const unsigned& Val) { return Val * 37U; }
77 static unsigned getHashValue(const unsigned long& Val) {
89 static unsigned getHashValue(const unsigned long long& Val) {
102 static unsigned getHashValue(const int& Val) { return (unsigned)(Val * 37U); }
114 static unsigned getHashValue(const long& Val) {
126 static unsigned getHashValue(const long long& Val) {
150 static unsigned getHashValue(const Pair& PairVal) {
151 uint64_t key = (uint64_t)FirstInfo::getHashValue(PairVal.first) << 32
152 | (uint64_t)SecondInfo::getHashValue(PairVal.second);
179 static unsigned getHashValue(StringRef Val) {
204 static unsigned getHashValue(ArrayRef<T> Val) {