OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kUpperMask
(Results
1 - 3
of
3
) sorted by null
/external/chromium_org/third_party/WebKit/Source/wtf/
TCPackedCache.h
182
static UPPER EntryToUpper(T t) { return t &
kUpperMask
; }
191
return static_cast<T>(k >> shift) &
kUpperMask
;
197
DCHECK_EQ(u, u &
kUpperMask
);
209
return ((KeyToUpper(key) ^ entry) &
kUpperMask
) == 0;
219
static const T
kUpperMask
= N_ONES_(T, kUpperbits) << kValuebits;
/external/chromium_org/third_party/tcmalloc/chromium/src/
packed-cache-inl.h
206
return static_cast<T>(k >> shift) &
kUpperMask
;
218
((KeyToUpper(key) ^ entry) &
kUpperMask
) == 0;
228
static const T
kUpperMask
= N_ONES_(T, kUpperbits) << kValuebits;
/external/chromium_org/third_party/tcmalloc/vendor/src/
packed-cache-inl.h
204
return static_cast<T>(k >> shift) &
kUpperMask
;
216
((KeyToUpper(key) ^ entry) &
kUpperMask
) == 0;
226
static const T
kUpperMask
= N_ONES_(T, kUpperbits) << kValuebits;
Completed in 145 milliseconds