Home
last modified time | relevance | path

Searched refs:categories_ (Results 1 – 9 of 9) sorted by relevance

/external/v8/src/heap/
Dspaces.cc49 DCHECK_NULL(categories_); in AllocateFreeListCategories()
50 categories_ = in AllocateFreeListCategories()
54 DCHECK_NULL(categories_[i]); in AllocateFreeListCategories()
55 categories_[i] = new FreeListCategory(); in AllocateFreeListCategories()
62 categories_[i]->Initialize(static_cast<FreeListCategoryType>(i)); in InitializeFreeListCategories()
67 if (categories_ != nullptr) { in ReleaseFreeListCategories()
70 if (categories_[i] != nullptr) { in ReleaseFreeListCategories()
71 delete categories_[i]; in ReleaseFreeListCategories()
72 categories_[i] = nullptr; in ReleaseFreeListCategories()
75 delete[] categories_; in ReleaseFreeListCategories()
[all …]
Dfree-list.cc115 FreeListCategory* category = categories_[type]; in TryFindNodeIn()
178 categories_ = new FreeListCategory*[number_of_categories_](); in FreeListMany()
183 FreeListMany::~FreeListMany() { delete[] categories_; } in ~FreeListMany()
264 if (categories_[type] == nullptr) { in RemoveCategory()
324 if (!node.is_null() && categories_[type] == nullptr) { in Allocate()
390 if (!node.is_null() && categories_[type] == nullptr) { in Allocate()
427 categories_[i] = nullptr; in Reset()
451 FreeListCategory* top = categories_[type]; in AddCategory()
461 categories_[type] = category; in AddCategory()
470 FreeListCategory* top = categories_[type]; in RemoveCategory()
[all …]
Dfree-list.h184 FreeListCategory* current = categories_[type]; in ForAllFreeListCategories()
207 : current_(free_list->categories_[type]) {} in FreeListCategoryIterator()
243 return categories_[type]; in top()
253 FreeListCategory** categories_ = nullptr; variable
393 categories_[next_nonempty_category[i]] != nullptr); in CheckCacheIntegrity()
395 DCHECK(categories_[j] == nullptr); in CheckCacheIntegrity()
Dfree-list-inl.h16 owner->categories_[type_] == this; in is_linked()
Dspaces.h267 callback(categories_[i]); in ForAllFreeListCategories()
279 return categories_[type]; in free_list_category()
Dmemory-chunk.cc131 chunk->categories_ = nullptr; in Initialize()
425 DCHECK_EQ(reinterpret_cast<Address>(&chunk->categories_) - chunk->address(), in ValidateOffsets()
Dmemory-chunk.h298 FreeListCategory** categories_; variable
/external/perfetto/include/perfetto/tracing/
Dtrack_event_category_registry.h198 : categories_(categories), in TrackEventCategoryRegistry()
248 : IsValidCategoryName(categories_[index].name)
261 : StringEq(categories_[index].name, name)
295 const Category* const categories_; variable
/external/perfetto/src/tracing/
Dtrack_event_category_registry.cc46 return &categories_[index]; in GetCategory()