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

  /external/llvm/lib/Support/
StringMap.cpp 56 /// case, the FullHashValue field of the bucket will be set to the hash value
64 unsigned FullHashValue = HashString(Name);
65 unsigned BucketNo = FullHashValue & (HTSize-1);
77 HashTable[FirstTombstone] = FullHashValue;
81 HashTable[BucketNo] = FullHashValue;
88 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) {
119 unsigned FullHashValue = HashString(Key);
120 unsigned BucketNo = FullHashValue & (HTSize-1);
132 } else if (LLVM_LIKELY(HashTable[BucketNo] == FullHashValue)) {
  /frameworks/compile/mclinker/include/mcld/ADT/
HashBase.h 36 unsigned int FullHashValue;
HashIterator.h 47 else if (m_HashValue == bucket.FullHashValue) {
130 else if (m_HashValue == bucket.FullHashValue) {

Completed in 45 milliseconds