Lines Matching refs:sci
733 SizeClassInfo *sci = GetSizeClassInfo(class_id); in AllocateBatch() local
734 SpinMutexLock l(&sci->mutex); in AllocateBatch()
735 if (sci->free_list.empty()) in AllocateBatch()
736 PopulateFreeList(stat, c, sci, class_id); in AllocateBatch()
737 CHECK(!sci->free_list.empty()); in AllocateBatch()
738 Batch *b = sci->free_list.front(); in AllocateBatch()
739 sci->free_list.pop_front(); in AllocateBatch()
745 SizeClassInfo *sci = GetSizeClassInfo(class_id); in DeallocateBatch() local
746 SpinMutexLock l(&sci->mutex); in DeallocateBatch()
748 sci->free_list.push_front(b); in DeallocateBatch()
871 SizeClassInfo *sci, uptr class_id) { in PopulateFreeList() argument
888 sci->free_list.push_back(b); in PopulateFreeList()
894 sci->free_list.push_back(b); in PopulateFreeList()