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

  /external/chromium_org/third_party/tcmalloc/chromium/src/
packed-cache-inl.h 161 array_[Hash(key)] = KeyToUpper(key) | value;
182 ASSERT(kUseWholeKeys || KeyToUpper(i) == 0);
183 array_[i] = kUseWholeKeys ? (value | KeyToUpper(i)) : value;
200 static UPPER KeyToUpper(K k) {
218 ((KeyToUpper(key) ^ entry) & kUpperMask) == 0;
  /external/chromium_org/third_party/tcmalloc/vendor/src/
packed-cache-inl.h 159 array_[Hash(key)] = KeyToUpper(key) | value;
180 ASSERT(kUseWholeKeys || KeyToUpper(i) == 0);
181 array_[i] = kUseWholeKeys ? (value | KeyToUpper(i)) : value;
198 static UPPER KeyToUpper(K k) {
216 ((KeyToUpper(key) ^ entry) & kUpperMask) == 0;
  /external/chromium_org/third_party/WebKit/Source/wtf/
TCPackedCache.h 149 array_[Hash(key)] = static_cast<T>(KeyToUpper(key) | value);
188 static UPPER KeyToUpper(K k) {
194 // This is roughly the inverse of KeyToUpper(). Some of the key has been
195 // thrown away, since KeyToUpper() masks off the low bits of the key.
209 return ((KeyToUpper(key) ^ entry) & kUpperMask) == 0;

Completed in 98 milliseconds