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

  /external/chromium_org/third_party/tcmalloc/chromium/src/base/
low_level_alloc.cc 80 // all kMaxLevel entries. See max_fit in
124 // max_fit is the maximum number of levels that will fit in a node for the
125 // given size. We can't return more than max_fit, no matter what the
127 int max_fit = (size-OFFSETOF_MEMBER(AllocList, next)) / sizeof (AllocList *); local
129 if (level > max_fit) level = max_fit;
  /external/chromium_org/third_party/tcmalloc/vendor/src/base/
low_level_alloc.cc 80 // all kMaxLevel entries. See max_fit in
124 // max_fit is the maximum number of levels that will fit in a node for the
125 // given size. We can't return more than max_fit, no matter what the
127 int max_fit = (size-OFFSETOF_MEMBER(AllocList, next)) / sizeof (AllocList *); local
129 if (level > max_fit) level = max_fit;

Completed in 248 milliseconds