Home
last modified time | relevance | path

Searched refs:add_amount (Results 1 – 3 of 3) sorted by relevance

/external/chromium_org/third_party/tcmalloc/vendor/src/
Dcommon.h176 const int add_amount = big ? (127 + (120<<7)) : 7; in ClassIndex() local
178 return (s + add_amount) >> shift_amount; in ClassIndex()
/external/chromium_org/third_party/tcmalloc/chromium/src/
Dcommon.h193 const int add_amount = big ? (127 + (120<<7)) : 7; in ClassIndex() local
195 return (s + add_amount) >> shift_amount; in ClassIndex()
/external/chromium_org/third_party/WebKit/Source/wtf/
DFastMalloc.cpp560 static const int add_amount[2] = { 7, 127 + (120 << 7) }; variable
566 return static_cast<int>((s + add_amount[i]) >> shift_amount[i]); in ClassIndex()