Lines Matching refs:gc
37 gc::AllocatorType allocator_type>
46 allocator_type == gc::kAllocatorTypeTLAB) { in artAllocObjectFromCode()
52 static_assert(kObjectAlignment == gc::space::BumpPointerSpace::kAlignment, "Alignment check"); in artAllocObjectFromCode()
53 DCHECK_ALIGNED(byte_count, gc::space::BumpPointerSpace::kAlignment); in artAllocObjectFromCode()
134 GENERATE_ENTRYPOINTS_FOR_ALLOCATOR(DlMalloc, gc::kAllocatorTypeDlMalloc)
135 GENERATE_ENTRYPOINTS_FOR_ALLOCATOR(RosAlloc, gc::kAllocatorTypeRosAlloc)
136 GENERATE_ENTRYPOINTS_FOR_ALLOCATOR(BumpPointer, gc::kAllocatorTypeBumpPointer)
137 GENERATE_ENTRYPOINTS_FOR_ALLOCATOR(TLAB, gc::kAllocatorTypeTLAB)
138 GENERATE_ENTRYPOINTS_FOR_ALLOCATOR(Region, gc::kAllocatorTypeRegion)
139 GENERATE_ENTRYPOINTS_FOR_ALLOCATOR(RegionTLAB, gc::kAllocatorTypeRegionTLAB)
207 static gc::AllocatorType entry_points_allocator = gc::kAllocatorTypeDlMalloc;
209 void SetQuickAllocEntryPointsAllocator(gc::AllocatorType allocator) { in SetQuickAllocEntryPointsAllocator()
220 case gc::kAllocatorTypeDlMalloc: { in ResetQuickAllocEntryPoints()
224 case gc::kAllocatorTypeRosAlloc: { in ResetQuickAllocEntryPoints()
228 case gc::kAllocatorTypeBumpPointer: { in ResetQuickAllocEntryPoints()
233 case gc::kAllocatorTypeTLAB: { in ResetQuickAllocEntryPoints()
238 case gc::kAllocatorTypeRegion: { in ResetQuickAllocEntryPoints()
243 case gc::kAllocatorTypeRegionTLAB: { in ResetQuickAllocEntryPoints()